Merge branch 'testing' of gitorious.org:statusnet/mainline into testing
* 'testing' of gitorious.org:statusnet/mainline: (63 commits) Add a scary 'experimental feture' warning & are-you-sure prompt on moveuser.php fix wrong datatypes (saving string instead of array) in AtomPub notice processing Account moving is a background activity return a 409 Conflict when subscription already exists OStatusPlugin does discovery in Profile::fromURI() considerably more logging and error checking in AccountMover add a log method to AccountMover normalize accounts and check for return in HTTP for moving move account-moving classes to their own libraries execution protection on discovery.php PHPCS discovery.php Move discovery library from OStatus plugin to core Revert "Revert "0.9.7alpha1"" first example of moving a user Parse properties of links in XRD files Add the Atom username to the XRD output preserve activities in object let callers pass in an XMLOutputter to output to execution protection on discovery.php PHPCS linkheader.php ...
This commit is contained in:
commit
1543af748c
@ -427,11 +427,11 @@ class ApiTimelineUserAction extends ApiBareAuthAction
|
|||||||
$profile = Profile::fromURI($uri);
|
$profile = Profile::fromURI($uri);
|
||||||
|
|
||||||
if (!empty($profile)) {
|
if (!empty($profile)) {
|
||||||
$options['replies'] = $uri;
|
$options['replies'][] = $uri;
|
||||||
} else {
|
} else {
|
||||||
$group = User_group::staticGet('uri', $uri);
|
$group = User_group::staticGet('uri', $uri);
|
||||||
if (!empty($group)) {
|
if (!empty($group)) {
|
||||||
$options['groups'] = $uri;
|
$options['groups'][] = $uri;
|
||||||
} else {
|
} else {
|
||||||
// @fixme: hook for discovery here
|
// @fixme: hook for discovery here
|
||||||
common_log(LOG_WARNING, sprintf(_('AtomPub post with unknown attention URI %s'), $uri));
|
common_log(LOG_WARNING, sprintf(_('AtomPub post with unknown attention URI %s'), $uri));
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
*
|
*
|
||||||
* Single subscription
|
* Single subscription
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -46,21 +46,19 @@ require_once INSTALLDIR . '/lib/apiauth.php';
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class AtompubshowsubscriptionAction extends ApiAuthAction
|
class AtompubshowsubscriptionAction extends ApiAuthAction
|
||||||
{
|
{
|
||||||
private $_subscriber = null;
|
private $_subscriber = null;
|
||||||
private $_subscribed = null;
|
private $_subscribed = null;
|
||||||
private $_subscription = null;
|
private $_subscription = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For initializing members of the class.
|
* For initializing members of the class.
|
||||||
*
|
*
|
||||||
* @param array $argarray misc. arguments
|
* @param array $argarray misc. arguments
|
||||||
*
|
*
|
||||||
* @return boolean true
|
* @return boolean true
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function prepare($argarray)
|
function prepare($argarray)
|
||||||
{
|
{
|
||||||
parent::prepare($argarray);
|
parent::prepare($argarray);
|
||||||
@ -69,6 +67,8 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
$this->_subscriber = Profile::staticGet('id', $subscriberId);
|
$this->_subscriber = Profile::staticGet('id', $subscriberId);
|
||||||
|
|
||||||
if (empty($this->_subscriber)) {
|
if (empty($this->_subscriber)) {
|
||||||
|
// TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
// TRANS: %d is the non-existing profile ID number.
|
||||||
throw new ClientException(sprintf(_('No such profile id: %d'),
|
throw new ClientException(sprintf(_('No such profile id: %d'),
|
||||||
$subscriberId), 404);
|
$subscriberId), 404);
|
||||||
}
|
}
|
||||||
@ -78,16 +78,20 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
$this->_subscribed = Profile::staticGet('id', $subscribedId);
|
$this->_subscribed = Profile::staticGet('id', $subscribedId);
|
||||||
|
|
||||||
if (empty($this->_subscribed)) {
|
if (empty($this->_subscribed)) {
|
||||||
|
// TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
// TRANS: %d is the non-existing profile ID number.
|
||||||
throw new ClientException(sprintf(_('No such profile id: %d'),
|
throw new ClientException(sprintf(_('No such profile id: %d'),
|
||||||
$subscribedId), 404);
|
$subscribedId), 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->_subscription =
|
$this->_subscription =
|
||||||
Subscription::pkeyGet(array('subscriber' => $subscriberId,
|
Subscription::pkeyGet(array('subscriber' => $subscriberId,
|
||||||
'subscribed' => $subscribedId));
|
'subscribed' => $subscribedId));
|
||||||
|
|
||||||
if (empty($this->_subscription)) {
|
if (empty($this->_subscription)) {
|
||||||
$msg = sprintf(_('Profile %d not subscribed to profile %d'),
|
// TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
// TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
$msg = sprintf(_('Profile %1$d not subscribed to profile %2$d'),
|
||||||
$subscriberId, $subscribedId);
|
$subscriberId, $subscribedId);
|
||||||
throw new ClientException($msg, 404);
|
throw new ClientException($msg, 404);
|
||||||
}
|
}
|
||||||
@ -102,7 +106,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function handle($argarray=null)
|
function handle($argarray=null)
|
||||||
{
|
{
|
||||||
parent::handle($argarray);
|
parent::handle($argarray);
|
||||||
@ -115,6 +118,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
$this->deleteSubscription();
|
$this->deleteSubscription();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
// TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
$this->clientError(_('HTTP method not supported.'), 405);
|
$this->clientError(_('HTTP method not supported.'), 405);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -127,7 +131,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function showSubscription()
|
function showSubscription()
|
||||||
{
|
{
|
||||||
$activity = $this->_subscription->asActivity();
|
$activity = $this->_subscription->asActivity();
|
||||||
@ -146,13 +149,13 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function deleteSubscription()
|
function deleteSubscription()
|
||||||
{
|
{
|
||||||
if (empty($this->auth_user) ||
|
if (empty($this->auth_user) ||
|
||||||
$this->auth_user->id != $this->_subscriber->id) {
|
$this->auth_user->id != $this->_subscriber->id) {
|
||||||
throw new ClientException(_("Can't delete someone else's".
|
// TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
" subscription"), 403);
|
throw new ClientException(_("Cannot delete someone else's ".
|
||||||
|
"subscription"), 403);
|
||||||
}
|
}
|
||||||
|
|
||||||
Subscription::cancel($this->_subscriber,
|
Subscription::cancel($this->_subscriber,
|
||||||
@ -168,7 +171,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return boolean true
|
* @return boolean true
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function isReadOnly($args)
|
function isReadOnly($args)
|
||||||
{
|
{
|
||||||
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
|
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
|
||||||
@ -183,7 +185,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return string last modified http header
|
* @return string last modified http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function lastModified()
|
function lastModified()
|
||||||
{
|
{
|
||||||
return max(strtotime($this->_subscriber->modified),
|
return max(strtotime($this->_subscriber->modified),
|
||||||
@ -196,7 +197,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return string etag http header
|
* @return string etag http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function etag()
|
function etag()
|
||||||
{
|
{
|
||||||
$mtime = strtotime($this->_subscription->modified);
|
$mtime = strtotime($this->_subscription->modified);
|
||||||
@ -212,7 +212,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
|
|||||||
*
|
*
|
||||||
* @return boolean true if delete, else false
|
* @return boolean true if delete, else false
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function requiresAuth()
|
function requiresAuth()
|
||||||
{
|
{
|
||||||
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
|
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
|
||||||
|
@ -263,6 +263,14 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Subscription::exists($this->_profile, $profile)) {
|
||||||
|
// 409 Conflict
|
||||||
|
$this->clientError(sprintf(_('Already subscribed to %s'),
|
||||||
|
$person->id),
|
||||||
|
409);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (Subscription::start($this->_profile, $profile)) {
|
if (Subscription::start($this->_profile, $profile)) {
|
||||||
$sub = Subscription::pkeyGet(array('subscriber' => $this->_profile->id,
|
$sub = Subscription::pkeyGet(array('subscriber' => $this->_profile->id,
|
||||||
'subscribed' => $profile->id));
|
'subscribed' => $profile->id));
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
*
|
*
|
||||||
* Delete your own account
|
* Delete your own account
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -36,7 +36,7 @@ if (!defined('STATUSNET')) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Action to delete your own account
|
* Action to delete your own account
|
||||||
*
|
*
|
||||||
* Note that this is distinct from DeleteuserAction, which see. I thought
|
* Note that this is distinct from DeleteuserAction, which see. I thought
|
||||||
* that making that action do both things (delete another user and delete the
|
* that making that action do both things (delete another user and delete the
|
||||||
* current user) would open a lot of holes. I'm open to refactoring, however.
|
* current user) would open a lot of holes. I'm open to refactoring, however.
|
||||||
@ -48,7 +48,6 @@ if (!defined('STATUSNET')) {
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class DeleteaccountAction extends Action
|
class DeleteaccountAction extends Action
|
||||||
{
|
{
|
||||||
private $_complete = false;
|
private $_complete = false;
|
||||||
@ -61,19 +60,20 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return boolean true
|
* @return boolean true
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function prepare($argarray)
|
function prepare($argarray)
|
||||||
{
|
{
|
||||||
parent::prepare($argarray);
|
parent::prepare($argarray);
|
||||||
|
|
||||||
$cur = common_current_user();
|
$cur = common_current_user();
|
||||||
|
|
||||||
if (empty($cur)) {
|
if (empty($cur)) {
|
||||||
|
// TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
throw new ClientException(_("Only logged-in users ".
|
throw new ClientException(_("Only logged-in users ".
|
||||||
"can delete their account."), 403);
|
"can delete their account."), 403);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$cur->hasRight(Right::DELETEACCOUNT)) {
|
if (!$cur->hasRight(Right::DELETEACCOUNT)) {
|
||||||
|
// TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
throw new ClientException(_("You cannot delete your account."), 403);
|
throw new ClientException(_("You cannot delete your account."), 403);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -87,7 +87,6 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function handle($argarray=null)
|
function handle($argarray=null)
|
||||||
{
|
{
|
||||||
parent::handle($argarray);
|
parent::handle($argarray);
|
||||||
@ -109,7 +108,6 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return boolean is read only action?
|
* @return boolean is read only action?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function isReadOnly($args)
|
function isReadOnly($args)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@ -122,7 +120,6 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return string last modified http header
|
* @return string last modified http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function lastModified()
|
function lastModified()
|
||||||
{
|
{
|
||||||
// For comparison with If-Last-Modified
|
// For comparison with If-Last-Modified
|
||||||
@ -137,7 +134,6 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return string etag http header
|
* @return string etag http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function etag()
|
function etag()
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
@ -145,7 +141,7 @@ class DeleteaccountAction extends Action
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete the current user's account
|
* Delete the current user's account
|
||||||
*
|
*
|
||||||
* Checks for the "I am sure." string to make sure the user really
|
* Checks for the "I am sure." string to make sure the user really
|
||||||
* wants to delete their account.
|
* wants to delete their account.
|
||||||
*
|
*
|
||||||
@ -156,13 +152,16 @@ class DeleteaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function deleteAccount()
|
function deleteAccount()
|
||||||
{
|
{
|
||||||
$this->checkSessionToken();
|
$this->checkSessionToken();
|
||||||
|
// !!! If this string is changed, it also needs to be changed in DeleteAccountForm::formData()
|
||||||
if ($this->trimmed('iamsure') != _('I am sure.')) {
|
// TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
$this->_error = _('You must write "I am sure." exactly in the box.');
|
$iamsure = _('I am sure.');
|
||||||
|
if ($this->trimmed('iamsure') != $iamsure ) {
|
||||||
|
// TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
// TRANS: %s is the text that needs to be input.
|
||||||
|
$this->_error = sprintf(_('You must write "%s" exactly in the box.'), $iamsure);
|
||||||
$this->showPage();
|
$this->showPage();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -191,7 +190,7 @@ class DeleteaccountAction extends Action
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows the page content.
|
* Shows the page content.
|
||||||
*
|
*
|
||||||
* If the deletion is complete, just shows a completion message.
|
* If the deletion is complete, just shows a completion message.
|
||||||
*
|
*
|
||||||
* Otherwise, shows the deletion form.
|
* Otherwise, shows the deletion form.
|
||||||
@ -199,11 +198,11 @@ class DeleteaccountAction extends Action
|
|||||||
* @return void
|
* @return void
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
if ($this->_complete) {
|
if ($this->_complete) {
|
||||||
$this->element('p', 'confirmation',
|
$this->element('p', 'confirmation',
|
||||||
|
// TRANS: Confirmation that a user account has been deleted.
|
||||||
_('Account deleted.'));
|
_('Account deleted.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -216,7 +215,7 @@ class DeleteaccountAction extends Action
|
|||||||
$form = new DeleteAccountForm($this);
|
$form = new DeleteAccountForm($this);
|
||||||
$form->show();
|
$form->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show the title of the page
|
* Show the title of the page
|
||||||
*
|
*
|
||||||
@ -225,13 +224,14 @@ class DeleteaccountAction extends Action
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Page title for page on which a user account can be deleted.
|
||||||
return _('Delete account');
|
return _('Delete account');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Form for deleting your account
|
* Form for deleting your account
|
||||||
*
|
*
|
||||||
* Note that this mostly is here to keep you from accidentally deleting your
|
* Note that this mostly is here to keep you from accidentally deleting your
|
||||||
* account.
|
* account.
|
||||||
*
|
*
|
||||||
@ -242,7 +242,6 @@ class DeleteaccountAction extends Action
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class DeleteAccountForm extends Form
|
class DeleteAccountForm extends Form
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
@ -250,7 +249,6 @@ class DeleteAccountForm extends Form
|
|||||||
*
|
*
|
||||||
* @return string the form's class
|
* @return string the form's class
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formClass()
|
function formClass()
|
||||||
{
|
{
|
||||||
return 'form_profile_delete';
|
return 'form_profile_delete';
|
||||||
@ -261,7 +259,6 @@ class DeleteAccountForm extends Form
|
|||||||
*
|
*
|
||||||
* @return string the form's action URL
|
* @return string the form's action URL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function action()
|
function action()
|
||||||
{
|
{
|
||||||
return common_local_url('deleteaccount');
|
return common_local_url('deleteaccount');
|
||||||
@ -269,51 +266,60 @@ class DeleteAccountForm extends Form
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Output form data
|
* Output form data
|
||||||
*
|
*
|
||||||
* Instructions plus an 'i am sure' entry box.
|
* Instructions plus an 'i am sure' entry box.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formData()
|
function formData()
|
||||||
{
|
{
|
||||||
$cur = common_current_user();
|
$cur = common_current_user();
|
||||||
|
|
||||||
$msg = _('<p>This will <strong>permanently delete</strong> '.
|
// TRANS: Form text for user deletion form.
|
||||||
'your account data from this server. </p>');
|
$msg = '<p>' . _('This will <strong>permanently delete</strong> '.
|
||||||
|
'your account data from this server.') . '</p>';
|
||||||
|
|
||||||
if ($cur->hasRight(Right::BACKUPACCOUNT)) {
|
if ($cur->hasRight(Right::BACKUPACCOUNT)) {
|
||||||
$msg .= sprintf(_('<p>You are strongly advised to '.
|
// TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
// TRANS: %s is a URL to the backup page.
|
||||||
|
$msg .= '<p>' . sprintf(_('You are strongly advised to '.
|
||||||
'<a href="%s">back up your data</a>'.
|
'<a href="%s">back up your data</a>'.
|
||||||
' before deletion.</p>'),
|
' before deletion.'),
|
||||||
common_local_url('backupaccount'));
|
common_local_url('backupaccount')) . '</p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out->elementStart('p');
|
$this->out->elementStart('p');
|
||||||
$this->out->raw($msg);
|
$this->out->raw($msg);
|
||||||
$this->out->elementEnd('p');
|
$this->out->elementEnd('p');
|
||||||
|
|
||||||
|
// !!! If this string is changed, it also needs to be changed in class DeleteaccountAction.
|
||||||
|
// TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
$iamsure = _("I am sure.");
|
||||||
$this->out->input('iamsure',
|
$this->out->input('iamsure',
|
||||||
|
// TRANS: Field label for delete account confirmation entry.
|
||||||
_('Confirm'),
|
_('Confirm'),
|
||||||
null,
|
null,
|
||||||
_('Enter "I am sure." to confirm that '.
|
// TRANS: Input title for the delete account field.
|
||||||
'you want to delete your account.'));
|
// TRANS: %s is the text that needs to be input.
|
||||||
|
sprintf(_('Enter "%s" to confirm that '.
|
||||||
|
'you want to delete your account.'),$iamsure ));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Buttons for the form
|
* Buttons for the form
|
||||||
*
|
*
|
||||||
* In this case, a single submit button
|
* In this case, a single submit button
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formActions()
|
function formActions()
|
||||||
{
|
{
|
||||||
$this->out->submit('submit',
|
$this->out->submit('submit',
|
||||||
|
// TRANS: Button text for user account deletion.
|
||||||
_m('BUTTON', 'Delete'),
|
_m('BUTTON', 'Delete'),
|
||||||
'submit',
|
'submit',
|
||||||
null,
|
null,
|
||||||
_('Permanently your account'));
|
// TRANS: Button title for user account deletion.
|
||||||
|
_('Permanently delete your account'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
*
|
*
|
||||||
* Restore a backup of your own account from the browser
|
* Restore a backup of your own account from the browser
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class RestoreaccountAction extends Action
|
class RestoreaccountAction extends Action
|
||||||
{
|
{
|
||||||
private $success = false;
|
private $success = false;
|
||||||
@ -52,12 +51,12 @@ class RestoreaccountAction extends Action
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the title of the page
|
* Returns the title of the page
|
||||||
*
|
*
|
||||||
* @return string page title
|
* @return string page title
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Page title for page where a user account can be restored from backup.
|
||||||
return _("Restore account");
|
return _("Restore account");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -68,7 +67,6 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return boolean true
|
* @return boolean true
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function prepare($argarray)
|
function prepare($argarray)
|
||||||
{
|
{
|
||||||
parent::prepare($argarray);
|
parent::prepare($argarray);
|
||||||
@ -76,10 +74,12 @@ class RestoreaccountAction extends Action
|
|||||||
$cur = common_current_user();
|
$cur = common_current_user();
|
||||||
|
|
||||||
if (empty($cur)) {
|
if (empty($cur)) {
|
||||||
|
// TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
throw new ClientException(_('Only logged-in users can restore their account.'), 403);
|
throw new ClientException(_('Only logged-in users can restore their account.'), 403);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$cur->hasRight(Right::RESTOREACCOUNT)) {
|
if (!$cur->hasRight(Right::RESTOREACCOUNT)) {
|
||||||
|
// TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
throw new ClientException(_('You may not restore your account.'), 403);
|
throw new ClientException(_('You may not restore your account.'), 403);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,7 +93,6 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function handle($argarray=null)
|
function handle($argarray=null)
|
||||||
{
|
{
|
||||||
parent::handle($argarray);
|
parent::handle($argarray);
|
||||||
@ -108,17 +107,17 @@ class RestoreaccountAction extends Action
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Queue a file for restoration
|
* Queue a file for restoration
|
||||||
*
|
*
|
||||||
* Uses the UserActivityStream class; may take a long time!
|
* Uses the UserActivityStream class; may take a long time!
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function restoreAccount()
|
function restoreAccount()
|
||||||
{
|
{
|
||||||
$this->checkSessionToken();
|
$this->checkSessionToken();
|
||||||
|
|
||||||
if (!isset($_FILES['restorefile']['error'])) {
|
if (!isset($_FILES['restorefile']['error'])) {
|
||||||
|
// TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
throw new ClientException(_('No uploaded file.'));
|
throw new ClientException(_('No uploaded file.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,7 +142,7 @@ class RestoreaccountAction extends Action
|
|||||||
' partially uploaded.'));
|
' partially uploaded.'));
|
||||||
return;
|
return;
|
||||||
case UPLOAD_ERR_NO_FILE:
|
case UPLOAD_ERR_NO_FILE:
|
||||||
// No file; probably just a non-AJAX submission.
|
// TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
throw new ClientException(_('No uploaded file.'));
|
throw new ClientException(_('No uploaded file.'));
|
||||||
return;
|
return;
|
||||||
case UPLOAD_ERR_NO_TMP_DIR:
|
case UPLOAD_ERR_NO_TMP_DIR:
|
||||||
@ -170,18 +169,21 @@ class RestoreaccountAction extends Action
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (!file_exists($filename)) {
|
if (!file_exists($filename)) {
|
||||||
throw new ServerException("No such file '$filename'.");
|
// TRANS: Server exception thrown when an expected file upload could not be found.
|
||||||
|
throw new ServerException(_("No such file '$filename'."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_file($filename)) {
|
if (!is_file($filename)) {
|
||||||
throw new ServerException("Not a regular file: '$filename'.");
|
// TRANS: Server exception thrown when an expected file upload is not an actual file.
|
||||||
|
throw new ServerException(_("Not a regular file: '$filename'."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_readable($filename)) {
|
if (!is_readable($filename)) {
|
||||||
throw new ServerException("File '$filename' not readable.");
|
// TRANS: Server exception thrown when an expected file upload could not be read.
|
||||||
|
throw new ServerException(_("File '$filename' not readable."));
|
||||||
}
|
}
|
||||||
|
|
||||||
common_debug(sprintf(_("Getting backup from file '%s'."), $filename));
|
common_debug(sprintf("Getting backup from file '%s'.", $filename));
|
||||||
|
|
||||||
$xml = file_get_contents($filename);
|
$xml = file_get_contents($filename);
|
||||||
|
|
||||||
@ -201,7 +203,8 @@ class RestoreaccountAction extends Action
|
|||||||
if (!$feed ||
|
if (!$feed ||
|
||||||
$feed->namespaceURI != Activity::ATOM ||
|
$feed->namespaceURI != Activity::ATOM ||
|
||||||
$feed->localName != 'feed') {
|
$feed->localName != 'feed') {
|
||||||
throw new ClientException(_("Not an atom feed."));
|
// TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
throw new ClientException(_("Not an Atom feed."));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enqueue for processing.
|
// Enqueue for processing.
|
||||||
@ -230,21 +233,22 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
if ($this->success) {
|
if ($this->success) {
|
||||||
$this->element('p', null,
|
$this->element('p', null,
|
||||||
|
// TRANS: Success message when a feed has been restored.
|
||||||
_('Feed has been restored. Your old posts should now appear in search and your profile page.'));
|
_('Feed has been restored. Your old posts should now appear in search and your profile page.'));
|
||||||
} else if ($this->inprogress) {
|
} else if ($this->inprogress) {
|
||||||
$this->element('p', null,
|
$this->element('p', null,
|
||||||
|
// TRANS: Message when a feed restore is in progress.
|
||||||
_('Feed will be restored. Please wait a few minutes for results.'));
|
_('Feed will be restored. Please wait a few minutes for results.'));
|
||||||
} else {
|
} else {
|
||||||
$form = new RestoreAccountForm($this);
|
$form = new RestoreAccountForm($this);
|
||||||
$form->show();
|
$form->show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return true if read only.
|
* Return true if read only.
|
||||||
*
|
*
|
||||||
@ -254,7 +258,6 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return boolean is read only action?
|
* @return boolean is read only action?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function isReadOnly($args)
|
function isReadOnly($args)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
@ -267,7 +270,6 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return string last modified http header
|
* @return string last modified http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function lastModified()
|
function lastModified()
|
||||||
{
|
{
|
||||||
// For comparison with If-Last-Modified
|
// For comparison with If-Last-Modified
|
||||||
@ -282,7 +284,6 @@ class RestoreaccountAction extends Action
|
|||||||
*
|
*
|
||||||
* @return string etag http header
|
* @return string etag http header
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function etag()
|
function etag()
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
@ -299,7 +300,6 @@ class RestoreaccountAction extends Action
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class RestoreAccountForm extends Form
|
class RestoreAccountForm extends Form
|
||||||
{
|
{
|
||||||
function __construct($out=null) {
|
function __construct($out=null) {
|
||||||
@ -312,7 +312,6 @@ class RestoreAccountForm extends Form
|
|||||||
*
|
*
|
||||||
* @return string the form's class
|
* @return string the form's class
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formClass()
|
function formClass()
|
||||||
{
|
{
|
||||||
return 'form_profile_restore';
|
return 'form_profile_restore';
|
||||||
@ -323,7 +322,6 @@ class RestoreAccountForm extends Form
|
|||||||
*
|
*
|
||||||
* @return string the form's action URL
|
* @return string the form's action URL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function action()
|
function action()
|
||||||
{
|
{
|
||||||
return common_local_url('restoreaccount');
|
return common_local_url('restoreaccount');
|
||||||
@ -331,19 +329,19 @@ class RestoreAccountForm extends Form
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Output form data
|
* Output form data
|
||||||
*
|
*
|
||||||
* Really, just instructions for doing a backup.
|
* Really, just instructions for doing a backup.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formData()
|
function formData()
|
||||||
{
|
{
|
||||||
$this->out->elementStart('p', 'instructions');
|
$this->out->elementStart('p', 'instructions');
|
||||||
|
|
||||||
|
// TRANS: Form instructions for feed restore.
|
||||||
$this->out->raw(_('You can upload a backed-up stream in '.
|
$this->out->raw(_('You can upload a backed-up stream in '.
|
||||||
'<a href="http://activitystrea.ms/">Activity Streams</a> format.'));
|
'<a href="http://activitystrea.ms/">Activity Streams</a> format.'));
|
||||||
|
|
||||||
$this->out->elementEnd('p');
|
$this->out->elementEnd('p');
|
||||||
|
|
||||||
$this->out->elementStart('ul', 'form_data');
|
$this->out->elementStart('ul', 'form_data');
|
||||||
@ -359,18 +357,19 @@ class RestoreAccountForm extends Form
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Buttons for the form
|
* Buttons for the form
|
||||||
*
|
*
|
||||||
* In this case, a single submit button
|
* In this case, a single submit button
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function formActions()
|
function formActions()
|
||||||
{
|
{
|
||||||
$this->out->submit('submit',
|
$this->out->submit('submit',
|
||||||
|
// TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
_m('BUTTON', 'Upload'),
|
_m('BUTTON', 'Upload'),
|
||||||
'submit',
|
'submit',
|
||||||
null,
|
null,
|
||||||
|
// TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
_('Upload the file'));
|
_('Upload the file'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,4 +62,5 @@ VALUES
|
|||||||
(100114, 'Vodafone Germany', '%s@vodafone-sms.de', now()),
|
(100114, 'Vodafone Germany', '%s@vodafone-sms.de', now()),
|
||||||
(100115, 'E-Plus', '%s@smsmail.eplus.de', now()),
|
(100115, 'E-Plus', '%s@smsmail.eplus.de', now()),
|
||||||
(100116, 'Cellular South', '%s@csouth1.com', now()),
|
(100116, 'Cellular South', '%s@csouth1.com', now()),
|
||||||
(100117, 'ChinaMobile (139)', '%s@139.com', now());
|
(100117, 'ChinaMobile (139)', '%s@139.com', now()),
|
||||||
|
(100118, 'Dialog Axiata', '%s@dialog.lk', now());
|
||||||
|
147
lib/accountmover.php
Normal file
147
lib/accountmover.php
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* A class for moving an account to a new server
|
||||||
|
*
|
||||||
|
* 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 Account
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
// This check helps protect against security problems;
|
||||||
|
// your code file can't be executed directly from the web.
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Moves an account from this server to another
|
||||||
|
*
|
||||||
|
* @category Account
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
class AccountMover extends QueueHandler
|
||||||
|
{
|
||||||
|
function transport()
|
||||||
|
{
|
||||||
|
return 'acctmove';
|
||||||
|
}
|
||||||
|
|
||||||
|
function handle($object)
|
||||||
|
{
|
||||||
|
list($user, $remote, $password) = $object;
|
||||||
|
|
||||||
|
$remote = Discovery::normalize($remote);
|
||||||
|
|
||||||
|
$oprofile = Ostatus_profile::ensureProfileURI($remote);
|
||||||
|
|
||||||
|
if (empty($oprofile)) {
|
||||||
|
throw new Exception("Can't locate account {$remote}");
|
||||||
|
}
|
||||||
|
|
||||||
|
list($svcDocUrl, $username) = self::getServiceDocument($remote);
|
||||||
|
|
||||||
|
$sink = new ActivitySink($svcDocUrl, $username, $password);
|
||||||
|
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Moving user {$user->nickname} ".
|
||||||
|
"to {$remote}.");
|
||||||
|
|
||||||
|
$stream = new UserActivityStream($user);
|
||||||
|
|
||||||
|
// Reverse activities to run in correct chron order
|
||||||
|
|
||||||
|
$acts = array_reverse($stream->activities);
|
||||||
|
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Got ".count($acts)." activities ".
|
||||||
|
"for {$user->nickname}.");
|
||||||
|
|
||||||
|
$qm = QueueManager::get();
|
||||||
|
|
||||||
|
foreach ($acts as $act) {
|
||||||
|
$qm->enqueue(array($act, $sink, $user->uri, $remote), 'actmove');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Finished moving user {$user->nickname} ".
|
||||||
|
"to {$remote}.");
|
||||||
|
}
|
||||||
|
|
||||||
|
static function getServiceDocument($remote)
|
||||||
|
{
|
||||||
|
$discovery = new Discovery();
|
||||||
|
|
||||||
|
$xrd = $discovery->lookup($remote);
|
||||||
|
|
||||||
|
if (empty($xrd)) {
|
||||||
|
throw new Exception("Can't find XRD for $remote");
|
||||||
|
}
|
||||||
|
|
||||||
|
$svcDocUrl = null;
|
||||||
|
$username = null;
|
||||||
|
|
||||||
|
foreach ($xrd->links as $link) {
|
||||||
|
if ($link['rel'] == 'http://apinamespace.org/atom' &&
|
||||||
|
$link['type'] == 'application/atomsvc+xml') {
|
||||||
|
$svcDocUrl = $link['href'];
|
||||||
|
if (!empty($link['property'])) {
|
||||||
|
foreach ($link['property'] as $property) {
|
||||||
|
if ($property['type'] == 'http://apinamespace.org/atom/username') {
|
||||||
|
$username = $property['value'];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($svcDocUrl)) {
|
||||||
|
throw new Exception("No AtomPub API service for $remote.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return array($svcDocUrl, $username);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log some data
|
||||||
|
*
|
||||||
|
* Add a header for our class so we know who did it.
|
||||||
|
*
|
||||||
|
* @param int $level Log level, like LOG_ERR or LOG_INFO
|
||||||
|
* @param string $message Message to log
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
|
||||||
|
protected function log($level, $message)
|
||||||
|
{
|
||||||
|
common_log($level, "AccountMover: " . $message);
|
||||||
|
}
|
||||||
|
}
|
@ -330,6 +330,7 @@ class Activity
|
|||||||
*
|
*
|
||||||
* @return DOMElement Atom entry
|
* @return DOMElement Atom entry
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function toAtomEntry()
|
function toAtomEntry()
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
@ -338,7 +339,12 @@ class Activity
|
|||||||
function asString($namespace=false, $author=true, $source=false)
|
function asString($namespace=false, $author=true, $source=false)
|
||||||
{
|
{
|
||||||
$xs = new XMLStringer(true);
|
$xs = new XMLStringer(true);
|
||||||
|
$this->outputTo($xs, $namespace, $author, $source);
|
||||||
|
return $xs->getString();
|
||||||
|
}
|
||||||
|
|
||||||
|
function outputTo($xs, $namespace=false, $author=true, $source=false)
|
||||||
|
{
|
||||||
if ($namespace) {
|
if ($namespace) {
|
||||||
$attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
|
$attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
|
||||||
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
|
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
|
||||||
@ -526,9 +532,7 @@ class Activity
|
|||||||
|
|
||||||
$xs->elementEnd('entry');
|
$xs->elementEnd('entry');
|
||||||
|
|
||||||
$str = $xs->getString();
|
return;
|
||||||
|
|
||||||
return $str;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _child($element, $tag, $namespace=self::SPEC)
|
private function _child($element, $tag, $namespace=self::SPEC)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
*
|
*
|
||||||
* class to import activities as part of a user's timeline
|
* class to import activities as part of a user's timeline
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class ActivityImporter extends QueueHandler
|
class ActivityImporter extends QueueHandler
|
||||||
{
|
{
|
||||||
private $trusted = false;
|
private $trusted = false;
|
||||||
@ -56,7 +55,6 @@ class ActivityImporter extends QueueHandler
|
|||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function handle($data)
|
function handle($data)
|
||||||
{
|
{
|
||||||
list($user, $author, $activity, $trusted) = $data;
|
list($user, $author, $activity, $trusted) = $data;
|
||||||
@ -65,9 +63,8 @@ class ActivityImporter extends QueueHandler
|
|||||||
|
|
||||||
$done = null;
|
$done = null;
|
||||||
|
|
||||||
if (Event::handle('StartImportActivity',
|
if (Event::handle('StartImportActivity',
|
||||||
array($user, $author, $activity, $trusted, &$done))) {
|
array($user, $author, $activity, $trusted, &$done))) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
switch ($activity->verb) {
|
switch ($activity->verb) {
|
||||||
case ActivityVerb::FOLLOW:
|
case ActivityVerb::FOLLOW:
|
||||||
@ -80,9 +77,10 @@ class ActivityImporter extends QueueHandler
|
|||||||
$this->postNote($user, $author, $activity);
|
$this->postNote($user, $author, $activity);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new ClientException("Unknown verb: {$activity->verb}");
|
// TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
throw new ClientException(sprintf(_("Unknown verb: \"%s\"."),$activity->verb));
|
||||||
}
|
}
|
||||||
Event::handle('EndImportActivity',
|
Event::handle('EndImportActivity',
|
||||||
array($user, $author, $activity, $trusted));
|
array($user, $author, $activity, $trusted));
|
||||||
$done = true;
|
$done = true;
|
||||||
} catch (ClientException $ce) {
|
} catch (ClientException $ce) {
|
||||||
@ -98,31 +96,31 @@ class ActivityImporter extends QueueHandler
|
|||||||
}
|
}
|
||||||
return $done;
|
return $done;
|
||||||
}
|
}
|
||||||
|
|
||||||
function subscribeProfile($user, $author, $activity)
|
function subscribeProfile($user, $author, $activity)
|
||||||
{
|
{
|
||||||
$profile = $user->getProfile();
|
$profile = $user->getProfile();
|
||||||
|
|
||||||
if ($activity->objects[0]->id == $author->id) {
|
if ($activity->objects[0]->id == $author->id) {
|
||||||
|
|
||||||
if (!$this->trusted) {
|
if (!$this->trusted) {
|
||||||
throw new ClientException(_("Can't force subscription for untrusted user."));
|
// TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
throw new ClientException(_("Cannot force subscription for untrusted user."));
|
||||||
}
|
}
|
||||||
|
|
||||||
$other = $activity->actor;
|
$other = $activity->actor;
|
||||||
$otherUser = User::staticGet('uri', $other->id);
|
$otherUser = User::staticGet('uri', $other->id);
|
||||||
|
|
||||||
if (!empty($otherUser)) {
|
if (!empty($otherUser)) {
|
||||||
$otherProfile = $otherUser->getProfile();
|
$otherProfile = $otherUser->getProfile();
|
||||||
} else {
|
} else {
|
||||||
throw new Exception("Can't force remote user to subscribe.");
|
// TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
throw new Exception(_("Cannot force remote user to subscribe."));
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: don't do this for untrusted input!
|
// XXX: don't do this for untrusted input!
|
||||||
|
|
||||||
Subscription::start($otherProfile, $profile);
|
Subscription::start($otherProfile, $profile);
|
||||||
|
} else if (empty($activity->actor)
|
||||||
} else if (empty($activity->actor)
|
|
||||||
|| $activity->actor->id == $author->id) {
|
|| $activity->actor->id == $author->id) {
|
||||||
|
|
||||||
$other = $activity->objects[0];
|
$other = $activity->objects[0];
|
||||||
@ -130,12 +128,14 @@ class ActivityImporter extends QueueHandler
|
|||||||
$otherProfile = Profile::fromUri($other->id);
|
$otherProfile = Profile::fromUri($other->id);
|
||||||
|
|
||||||
if (empty($otherProfile)) {
|
if (empty($otherProfile)) {
|
||||||
|
// TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
throw new ClientException(_("Unknown profile."));
|
throw new ClientException(_("Unknown profile."));
|
||||||
}
|
}
|
||||||
|
|
||||||
Subscription::start($profile, $otherProfile);
|
Subscription::start($profile, $otherProfile);
|
||||||
} else {
|
} else {
|
||||||
throw new Exception("This activity seems unrelated to our user.");
|
// TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
throw new Exception(_("This activity seems unrelated to our user."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,7 +150,8 @@ class ActivityImporter extends QueueHandler
|
|||||||
if (empty($group)) {
|
if (empty($group)) {
|
||||||
$oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]);
|
$oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]);
|
||||||
if (!$oprofile->isGroup()) {
|
if (!$oprofile->isGroup()) {
|
||||||
throw new ClientException("Remote profile is not a group!");
|
// TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
throw new ClientException(_("Remote profile is not a group!"));
|
||||||
}
|
}
|
||||||
$group = $oprofile->localGroup();
|
$group = $oprofile->localGroup();
|
||||||
}
|
}
|
||||||
@ -158,7 +159,8 @@ class ActivityImporter extends QueueHandler
|
|||||||
assert(!empty($group));
|
assert(!empty($group));
|
||||||
|
|
||||||
if ($user->isMember($group)) {
|
if ($user->isMember($group)) {
|
||||||
throw new ClientException("User is already a member of this group.");
|
// TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
throw new ClientException(_("User is already a member of this group."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Event::handle('StartJoinGroup', array($group, $user))) {
|
if (Event::handle('StartJoinGroup', array($group, $user))) {
|
||||||
@ -178,7 +180,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
$notice = Notice::staticGet('uri', $sourceUri);
|
$notice = Notice::staticGet('uri', $sourceUri);
|
||||||
|
|
||||||
if (!empty($notice)) {
|
if (!empty($notice)) {
|
||||||
|
|
||||||
common_log(LOG_INFO, "Notice {$sourceUri} already exists.");
|
common_log(LOG_INFO, "Notice {$sourceUri} already exists.");
|
||||||
|
|
||||||
if ($this->trusted) {
|
if ($this->trusted) {
|
||||||
@ -194,12 +196,15 @@ class ActivityImporter extends QueueHandler
|
|||||||
$notice->update($orig);
|
$notice->update($orig);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
throw new ClientException(sprintf(_("Already know about notice %s and ".
|
// TRANS: Client exception thrown when trying to import a notice by another user.
|
||||||
" it's got a different author %s."),
|
// TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
|
||||||
|
throw new ClientException(sprintf(_("Already know about notice %1$s and ".
|
||||||
|
" it has a different author %2$s."),
|
||||||
$sourceUri, $uri));
|
$sourceUri, $uri));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new ClientException("Not overwriting author info for non-trusted user.");
|
// TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
throw new ClientException(_("Not overwriting author info for non-trusted user."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -213,8 +218,9 @@ class ActivityImporter extends QueueHandler
|
|||||||
$sourceContent = $note->title;
|
$sourceContent = $note->title;
|
||||||
} else {
|
} else {
|
||||||
// @fixme fetch from $sourceUrl?
|
// @fixme fetch from $sourceUrl?
|
||||||
// @todo i18n FIXME: use sprintf and add i18n.
|
// TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
throw new ClientException("No content for notice {$sourceUri}.");
|
// TRANS: %s is the notice URI.
|
||||||
|
throw new ClientException(sprintf(_("No content for notice %s."),$sourceUri));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get (safe!) HTML and text versions of the content
|
// Get (safe!) HTML and text versions of the content
|
||||||
@ -345,7 +351,7 @@ class ActivityImporter extends QueueHandler
|
|||||||
|
|
||||||
return array($groups, $replies);
|
return array($groups, $replies);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function purify($content)
|
function purify($content)
|
||||||
{
|
{
|
||||||
|
168
lib/activitymover.php
Normal file
168
lib/activitymover.php
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* Title of module
|
||||||
|
*
|
||||||
|
* 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 Cache
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
// This check helps protect against security problems;
|
||||||
|
// your code file can't be executed directly from the web.
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class comment
|
||||||
|
*
|
||||||
|
* @category General
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
class ActivityMover extends QueueHandler
|
||||||
|
{
|
||||||
|
function transport()
|
||||||
|
{
|
||||||
|
return 'actmove';
|
||||||
|
}
|
||||||
|
|
||||||
|
function handle($data)
|
||||||
|
{
|
||||||
|
list ($act, $sink, $userURI, $remoteURI) = $data;
|
||||||
|
|
||||||
|
$user = User::staticGet('uri', $userURI);
|
||||||
|
$remote = Profile::fromURI($remoteURI);
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->moveActivity($act, $sink, $user, $remote);
|
||||||
|
} catch (ClientException $cex) {
|
||||||
|
$this->log(LOG_WARNING,
|
||||||
|
$cex->getMessage());
|
||||||
|
// "don't retry me"
|
||||||
|
return true;
|
||||||
|
} catch (ServerException $sex) {
|
||||||
|
$this->log(LOG_WARNING,
|
||||||
|
$sex->getMessage());
|
||||||
|
// "retry me" (because we think the server might handle it next time)
|
||||||
|
return false;
|
||||||
|
} catch (Exception $ex) {
|
||||||
|
$this->log(LOG_WARNING,
|
||||||
|
$ex->getMessage());
|
||||||
|
// "don't retry me"
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function moveActivity($act, $sink, $user, $remote)
|
||||||
|
{
|
||||||
|
if (empty($user)) {
|
||||||
|
throw new Exception("No such user {$act->actor->id}");
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($act->verb) {
|
||||||
|
case ActivityVerb::FAVORITE:
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Moving favorite of {$act->objects[0]->id} by ".
|
||||||
|
"{$act->actor->id} to {$remote->nickname}.");
|
||||||
|
// push it, then delete local
|
||||||
|
$sink->postActivity($act);
|
||||||
|
$notice = Notice::staticGet('uri', $act->objects[0]->id);
|
||||||
|
if (!empty($notice)) {
|
||||||
|
$fave = Fave::pkeyGet(array('user_id' => $user->id,
|
||||||
|
'notice_id' => $notice->id));
|
||||||
|
$fave->delete();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case ActivityVerb::POST:
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Moving notice {$act->objects[0]->id} by ".
|
||||||
|
"{$act->actor->id} to {$remote->nickname}.");
|
||||||
|
// XXX: send a reshare, not a post
|
||||||
|
$sink->postActivity($act);
|
||||||
|
$notice = Notice::staticGet('uri', $act->objects[0]->id);
|
||||||
|
if (!empty($notice)) {
|
||||||
|
$notice->delete();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case ActivityVerb::JOIN:
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Moving group join of {$act->objects[0]->id} by ".
|
||||||
|
"{$act->actor->id} to {$remote->nickname}.");
|
||||||
|
$sink->postActivity($act);
|
||||||
|
$group = User_group::staticGet('uri', $act->objects[0]->id);
|
||||||
|
if (!empty($group)) {
|
||||||
|
Group_member::leave($group->id, $user->id);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case ActivityVerb::FOLLOW:
|
||||||
|
if ($act->actor->id == $user->uri) {
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Moving subscription to {$act->objects[0]->id} by ".
|
||||||
|
"{$act->actor->id} to {$remote->nickname}.");
|
||||||
|
$sink->postActivity($act);
|
||||||
|
$other = Profile::fromURI($act->objects[0]->id);
|
||||||
|
if (!empty($other)) {
|
||||||
|
Subscription::cancel($user->getProfile(), $other);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$otherUser = User::staticGet('uri', $act->actor->id);
|
||||||
|
if (!empty($otherUser)) {
|
||||||
|
$this->log(LOG_INFO,
|
||||||
|
"Changing sub to {$act->objects[0]->id}".
|
||||||
|
"by {$act->actor->id} to {$remote->nickname}.");
|
||||||
|
$otherProfile = $otherUser->getProfile();
|
||||||
|
Subscription::start($otherProfile, $remote);
|
||||||
|
Subscription::cancel($otherProfile, $user->getProfile());
|
||||||
|
} else {
|
||||||
|
$this->log(LOG_NOTICE,
|
||||||
|
"Not changing sub to {$act->objects[0]->id}".
|
||||||
|
"by remote {$act->actor->id} ".
|
||||||
|
"to {$remote->nickname}.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log some data
|
||||||
|
*
|
||||||
|
* Add a header for our class so we know who did it.
|
||||||
|
*
|
||||||
|
* @param int $level Log level, like LOG_ERR or LOG_INFO
|
||||||
|
* @param string $message Message to log
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
|
||||||
|
protected function log($level, $message)
|
||||||
|
{
|
||||||
|
common_log($level, "ActivityMover: " . $message);
|
||||||
|
}
|
||||||
|
}
|
169
lib/activitysink.php
Normal file
169
lib/activitysink.php
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* A remote, atompub-receiving service
|
||||||
|
*
|
||||||
|
* 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 AtomPub
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
// This check helps protect against security problems;
|
||||||
|
// your code file can't be executed directly from the web.
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A remote service that supports AtomPub
|
||||||
|
*
|
||||||
|
* @category AtomPub
|
||||||
|
* @package StatusNet
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
class ActivitySink
|
||||||
|
{
|
||||||
|
protected $svcDocUrl = null;
|
||||||
|
protected $username = null;
|
||||||
|
protected $password = null;
|
||||||
|
protected $collections = array();
|
||||||
|
|
||||||
|
function __construct($svcDocUrl, $username, $password)
|
||||||
|
{
|
||||||
|
$this->svcDocUrl = $svcDocUrl;
|
||||||
|
$this->username = $username;
|
||||||
|
$this->password = $password;
|
||||||
|
|
||||||
|
$this->_parseSvcDoc();
|
||||||
|
}
|
||||||
|
|
||||||
|
private function _parseSvcDoc()
|
||||||
|
{
|
||||||
|
$client = new HTTPClient();
|
||||||
|
$response = $client->get($this->svcDocUrl);
|
||||||
|
|
||||||
|
if ($response->getStatus() != 200) {
|
||||||
|
throw new Exception("Can't get {$this->svcDocUrl}; response status " . $response->getStatus());
|
||||||
|
}
|
||||||
|
|
||||||
|
$xml = $response->getBody();
|
||||||
|
|
||||||
|
$dom = new DOMDocument();
|
||||||
|
|
||||||
|
// We don't want to bother with white spaces
|
||||||
|
$dom->preserveWhiteSpace = false;
|
||||||
|
|
||||||
|
// Don't spew XML warnings to output
|
||||||
|
$old = error_reporting();
|
||||||
|
error_reporting($old & ~E_WARNING);
|
||||||
|
$ok = $dom->loadXML($xml);
|
||||||
|
error_reporting($old);
|
||||||
|
|
||||||
|
$path = new DOMXPath($dom);
|
||||||
|
|
||||||
|
$path->registerNamespace('atom', 'http://www.w3.org/2005/Atom');
|
||||||
|
$path->registerNamespace('app', 'http://www.w3.org/2007/app');
|
||||||
|
$path->registerNamespace('activity', 'http://activitystrea.ms/spec/1.0/');
|
||||||
|
|
||||||
|
$collections = $path->query('//app:collection');
|
||||||
|
|
||||||
|
for ($i = 0; $i < $collections->length; $i++) {
|
||||||
|
$collection = $collections->item($i);
|
||||||
|
$url = $collection->getAttribute('href');
|
||||||
|
$takesEntries = false;
|
||||||
|
$accepts = $path->query('app:accept', $collection);
|
||||||
|
for ($j = 0; $j < $accepts->length; $j++) {
|
||||||
|
$accept = $accepts->item($j);
|
||||||
|
$acceptValue = $accept->nodeValue;
|
||||||
|
if (preg_match('#application/atom\+xml(;\s*type=entry)?#', $acceptValue)) {
|
||||||
|
$takesEntries = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!$takesEntries) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$verbs = $path->query('activity:verb', $collection);
|
||||||
|
if ($verbs->length == 0) {
|
||||||
|
$this->_addCollection(ActivityVerb::POST, $url);
|
||||||
|
} else {
|
||||||
|
for ($k = 0; $k < $verbs->length; $k++) {
|
||||||
|
$verb = $verbs->item($k);
|
||||||
|
$this->_addCollection($verb->nodeValue, $url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function _addCollection($verb, $url)
|
||||||
|
{
|
||||||
|
if (array_key_exists($verb, $this->collections)) {
|
||||||
|
$this->collections[$verb][] = $url;
|
||||||
|
} else {
|
||||||
|
$this->collections[$verb] = array($url);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
function postActivity($activity)
|
||||||
|
{
|
||||||
|
if (!array_key_exists($activity->verb, $this->collections)) {
|
||||||
|
throw new Exception("No collection for verb {$activity->verb}");
|
||||||
|
} else {
|
||||||
|
if (count($this->collections[$activity->verb]) > 1) {
|
||||||
|
common_log(LOG_NOTICE, "More than one collection for verb {$activity->verb}");
|
||||||
|
}
|
||||||
|
$this->postToCollection($this->collections[$activity->verb][0], $activity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function postToCollection($url, $activity)
|
||||||
|
{
|
||||||
|
$client = new HTTPClient($url);
|
||||||
|
|
||||||
|
$client->setMethod('POST');
|
||||||
|
$client->setAuth($this->username, $this->password);
|
||||||
|
$client->setHeader('Content-Type', 'application/atom+xml;type=entry');
|
||||||
|
$client->setBody($activity->asString(true, true, true));
|
||||||
|
|
||||||
|
$response = $client->send();
|
||||||
|
|
||||||
|
$status = $response->getStatus();
|
||||||
|
$reason = $response->getReasonPhrase();
|
||||||
|
|
||||||
|
if ($status >= 200 && $status < 300) {
|
||||||
|
return true;
|
||||||
|
} else if ($status >= 400 && $status < 500) {
|
||||||
|
throw new ClientException("{$url} {$status} {$reason}");
|
||||||
|
} else if ($status >= 500 && $status < 600) {
|
||||||
|
throw new ServerException("{$url} {$status} {$reason}");
|
||||||
|
} else {
|
||||||
|
// That's unexpected.
|
||||||
|
throw new Exception("{$url} {$status} {$reason}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -108,8 +108,9 @@ class Atom10Feed extends XMLStringer
|
|||||||
if (!empty($name)) {
|
if (!empty($name)) {
|
||||||
$xs->element('name', null, $name);
|
$xs->element('name', null, $name);
|
||||||
} else {
|
} else {
|
||||||
|
// TRANS: Atom feed exception thrown when an author element does not contain a name element.
|
||||||
throw new Atom10FeedException(
|
throw new Atom10FeedException(
|
||||||
_('author element must contain a name element.')
|
_('Author element must contain a name element.')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -155,7 +156,8 @@ class Atom10Feed extends XMLStringer
|
|||||||
|
|
||||||
function setActivitySubject($xmlSubject)
|
function setActivitySubject($xmlSubject)
|
||||||
{
|
{
|
||||||
throw new ServerException(_('Don\'t use this method!'));
|
// TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
throw new ServerException(_('Do not use this method!'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getNamespaces()
|
function getNamespaces()
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* StatusNet - the distributed open-source microblogging tool
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
*
|
*
|
||||||
* A sample module to show best practices for StatusNet plugins
|
* Use Hammer discovery stack to find out interesting things about an URI
|
||||||
*
|
*
|
||||||
* PHP version 5
|
* PHP version 5
|
||||||
*
|
*
|
||||||
@ -20,6 +20,7 @@
|
|||||||
* You should have received a copy of the GNU Affero General Public License
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
|
* @category Discovery
|
||||||
* @package StatusNet
|
* @package StatusNet
|
||||||
* @author James Walker <james@status.net>
|
* @author James Walker <james@status.net>
|
||||||
* @copyright 2010 StatusNet, Inc.
|
* @copyright 2010 StatusNet, Inc.
|
||||||
@ -27,22 +28,41 @@
|
|||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class implements LRDD-based service discovery based on the "Hammer Draft"
|
* This class implements LRDD-based service discovery based on the "Hammer Draft"
|
||||||
* (including webfinger)
|
* (including webfinger)
|
||||||
*
|
*
|
||||||
* @see http://groups.google.com/group/webfinger/browse_thread/thread/9f3d93a479e91bbf
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*
|
||||||
|
* @see http://groups.google.com/group/webfinger/browse_thread/thread/9f3d93a479e91bbf
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class Discovery
|
class Discovery
|
||||||
{
|
{
|
||||||
|
const LRDD_REL = 'lrdd';
|
||||||
const LRDD_REL = 'lrdd';
|
|
||||||
const PROFILEPAGE = 'http://webfinger.net/rel/profile-page';
|
const PROFILEPAGE = 'http://webfinger.net/rel/profile-page';
|
||||||
const UPDATESFROM = 'http://schemas.google.com/g/2010#updates-from';
|
const UPDATESFROM = 'http://schemas.google.com/g/2010#updates-from';
|
||||||
const HCARD = 'http://microformats.org/profile/hcard';
|
const HCARD = 'http://microformats.org/profile/hcard';
|
||||||
|
|
||||||
public $methods = array();
|
public $methods = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor for a discovery object
|
||||||
|
*
|
||||||
|
* Registers different discovery methods.
|
||||||
|
*
|
||||||
|
* @return Discovery this
|
||||||
|
*/
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->registerMethod('Discovery_LRDD_Host_Meta');
|
$this->registerMethod('Discovery_LRDD_Host_Meta');
|
||||||
@ -50,6 +70,14 @@ class Discovery
|
|||||||
$this->registerMethod('Discovery_LRDD_Link_HTML');
|
$this->registerMethod('Discovery_LRDD_Link_HTML');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a discovery class
|
||||||
|
*
|
||||||
|
* @param string $class Class name
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
|
||||||
public function registerMethod($class)
|
public function registerMethod($class)
|
||||||
{
|
{
|
||||||
$this->methods[] = $class;
|
$this->methods[] = $class;
|
||||||
@ -58,7 +86,12 @@ class Discovery
|
|||||||
/**
|
/**
|
||||||
* Given a "user id" make sure it's normalized to either a webfinger
|
* Given a "user id" make sure it's normalized to either a webfinger
|
||||||
* acct: uri or a profile HTTP URL.
|
* acct: uri or a profile HTTP URL.
|
||||||
|
*
|
||||||
|
* @param string $user_id User ID to normalize
|
||||||
|
*
|
||||||
|
* @return string normalized acct: or http(s)?: URI
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public static function normalize($user_id)
|
public static function normalize($user_id)
|
||||||
{
|
{
|
||||||
if (substr($user_id, 0, 5) == 'http:' ||
|
if (substr($user_id, 0, 5) == 'http:' ||
|
||||||
@ -67,13 +100,23 @@ class Discovery
|
|||||||
return $user_id;
|
return $user_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strpos($user_id, '@') !== FALSE) {
|
if (strpos($user_id, '@') !== false) {
|
||||||
return 'acct:' . $user_id;
|
return 'acct:' . $user_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'http://' . $user_id;
|
return 'http://' . $user_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if a string is a Webfinger ID
|
||||||
|
*
|
||||||
|
* Webfinger IDs look like foo@example.com or acct:foo@example.com
|
||||||
|
*
|
||||||
|
* @param string $user_id ID to check
|
||||||
|
*
|
||||||
|
* @return boolean true if $user_id is a Webfinger, else false
|
||||||
|
*/
|
||||||
|
|
||||||
public static function isWebfinger($user_id)
|
public static function isWebfinger($user_id)
|
||||||
{
|
{
|
||||||
$uri = Discovery::normalize($user_id);
|
$uri = Discovery::normalize($user_id);
|
||||||
@ -82,8 +125,13 @@ class Discovery
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This implements the actual lookup procedure
|
* Given a user ID, return the first available XRD
|
||||||
|
*
|
||||||
|
* @param string $id User ID URI
|
||||||
|
*
|
||||||
|
* @return XRD XRD object for the user
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public function lookup($id)
|
public function lookup($id)
|
||||||
{
|
{
|
||||||
// Normalize the incoming $id to make sure we have a uri
|
// Normalize the incoming $id to make sure we have a uri
|
||||||
@ -107,10 +155,20 @@ class Discovery
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TRANS: Exception.
|
// TRANS: Exception.
|
||||||
throw new Exception(sprintf(_m('Unable to find services for %s.'),$id));
|
throw new Exception(sprintf(_('Unable to find services for %s.'), $id));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getService($links, $service) {
|
/**
|
||||||
|
* Given an array of links, returns the matching service
|
||||||
|
*
|
||||||
|
* @param array $links Links to check
|
||||||
|
* @param string $service Service to find
|
||||||
|
*
|
||||||
|
* @return array $link assoc array representing the link
|
||||||
|
*/
|
||||||
|
|
||||||
|
public static function getService($links, $service)
|
||||||
|
{
|
||||||
if (!is_array($links)) {
|
if (!is_array($links)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -122,6 +180,17 @@ class Discovery
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply a template using an ID
|
||||||
|
*
|
||||||
|
* Replaces {uri} in template string with the ID given.
|
||||||
|
*
|
||||||
|
* @param string $template Template to match
|
||||||
|
* @param string $id User ID to replace with
|
||||||
|
*
|
||||||
|
* @return string replaced values
|
||||||
|
*/
|
||||||
|
|
||||||
public static function applyTemplate($template, $id)
|
public static function applyTemplate($template, $id)
|
||||||
{
|
{
|
||||||
$template = str_replace('{uri}', urlencode($id), $template);
|
$template = str_replace('{uri}', urlencode($id), $template);
|
||||||
@ -129,10 +198,18 @@ class Discovery
|
|||||||
return $template;
|
return $template;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch an XRD file and parse
|
||||||
|
*
|
||||||
|
* @param string $url URL of the XRD
|
||||||
|
*
|
||||||
|
* @return XRD object representing the XRD file
|
||||||
|
*/
|
||||||
|
|
||||||
public static function fetchXrd($url)
|
public static function fetchXrd($url)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$client = new HTTPClient();
|
$client = new HTTPClient();
|
||||||
$response = $client->get($url);
|
$response = $client->get($url);
|
||||||
} catch (HTTP_Request2_Exception $e) {
|
} catch (HTTP_Request2_Exception $e) {
|
||||||
return false;
|
return false;
|
||||||
@ -146,13 +223,60 @@ class Discovery
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract interface for discovery
|
||||||
|
*
|
||||||
|
* Objects that implement this interface can retrieve an array of
|
||||||
|
* XRD links for the URI.
|
||||||
|
*
|
||||||
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
interface Discovery_LRDD
|
interface Discovery_LRDD
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Discover interesting info about the URI
|
||||||
|
*
|
||||||
|
* @param string $uri URI to inquire about
|
||||||
|
*
|
||||||
|
* @return array Links in the XRD file
|
||||||
|
*/
|
||||||
|
|
||||||
public function discover($uri);
|
public function discover($uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implementation of discovery using host-meta file
|
||||||
|
*
|
||||||
|
* Discovers XRD file for a user by going to the organization's
|
||||||
|
* host-meta file and trying to find a template for LRDD.
|
||||||
|
*
|
||||||
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
class Discovery_LRDD_Host_Meta implements Discovery_LRDD
|
class Discovery_LRDD_Host_Meta implements Discovery_LRDD
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Discovery core method
|
||||||
|
*
|
||||||
|
* For Webfinger and HTTP URIs, fetch the host-meta file
|
||||||
|
* and look for LRDD templates
|
||||||
|
*
|
||||||
|
* @param string $uri URI to inquire about
|
||||||
|
*
|
||||||
|
* @return array Links in the XRD file
|
||||||
|
*/
|
||||||
|
|
||||||
public function discover($uri)
|
public function discover($uri)
|
||||||
{
|
{
|
||||||
if (Discovery::isWebfinger($uri)) {
|
if (Discovery::isWebfinger($uri)) {
|
||||||
@ -176,12 +300,38 @@ class Discovery_LRDD_Host_Meta implements Discovery_LRDD
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implementation of discovery using HTTP Link header
|
||||||
|
*
|
||||||
|
* Discovers XRD file for a user by fetching the URL and reading any
|
||||||
|
* Link: headers in the HTTP response.
|
||||||
|
*
|
||||||
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
class Discovery_LRDD_Link_Header implements Discovery_LRDD
|
class Discovery_LRDD_Link_Header implements Discovery_LRDD
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Discovery core method
|
||||||
|
*
|
||||||
|
* For HTTP IDs fetch the URL and look for Link headers.
|
||||||
|
*
|
||||||
|
* @param string $uri URI to inquire about
|
||||||
|
*
|
||||||
|
* @return array Links in the XRD file
|
||||||
|
*
|
||||||
|
* @todo fail out of Webfinger URIs faster
|
||||||
|
*/
|
||||||
|
|
||||||
public function discover($uri)
|
public function discover($uri)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$client = new HTTPClient();
|
$client = new HTTPClient();
|
||||||
$response = $client->get($uri);
|
$response = $client->get($uri);
|
||||||
} catch (HTTP_Request2_Exception $e) {
|
} catch (HTTP_Request2_Exception $e) {
|
||||||
return false;
|
return false;
|
||||||
@ -199,6 +349,14 @@ class Discovery_LRDD_Link_Header implements Discovery_LRDD
|
|||||||
return array(Discovery_LRDD_Link_Header::parseHeader($link_header));
|
return array(Discovery_LRDD_Link_Header::parseHeader($link_header));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Given a string or array of headers, returns XRD-like assoc array
|
||||||
|
*
|
||||||
|
* @param string|array $header string or array of strings for headers
|
||||||
|
*
|
||||||
|
* @return array Link header in XRD-like format
|
||||||
|
*/
|
||||||
|
|
||||||
protected static function parseHeader($header)
|
protected static function parseHeader($header)
|
||||||
{
|
{
|
||||||
$lh = new LinkHeader($header);
|
$lh = new LinkHeader($header);
|
||||||
@ -209,12 +367,39 @@ class Discovery_LRDD_Link_Header implements Discovery_LRDD
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implementation of discovery using HTML <link> element
|
||||||
|
*
|
||||||
|
* Discovers XRD file for a user by fetching the URL and reading any
|
||||||
|
* <link> elements in the HTML response.
|
||||||
|
*
|
||||||
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
class Discovery_LRDD_Link_HTML implements Discovery_LRDD
|
class Discovery_LRDD_Link_HTML implements Discovery_LRDD
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Discovery core method
|
||||||
|
*
|
||||||
|
* For HTTP IDs, fetch the URL and look for <link> elements
|
||||||
|
* in the HTML response.
|
||||||
|
*
|
||||||
|
* @param string $uri URI to inquire about
|
||||||
|
*
|
||||||
|
* @return array Links in XRD-ish assoc array
|
||||||
|
*
|
||||||
|
* @todo fail out of Webfinger URIs faster
|
||||||
|
*/
|
||||||
|
|
||||||
public function discover($uri)
|
public function discover($uri)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$client = new HTTPClient();
|
$client = new HTTPClient();
|
||||||
$response = $client->get($uri);
|
$response = $client->get($uri);
|
||||||
} catch (HTTP_Request2_Exception $e) {
|
} catch (HTTP_Request2_Exception $e) {
|
||||||
return false;
|
return false;
|
||||||
@ -227,6 +412,16 @@ class Discovery_LRDD_Link_HTML implements Discovery_LRDD
|
|||||||
return Discovery_LRDD_Link_HTML::parse($response->getBody());
|
return Discovery_LRDD_Link_HTML::parse($response->getBody());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse HTML and return <link> elements
|
||||||
|
*
|
||||||
|
* Given an HTML string, scans the string for <link> elements
|
||||||
|
*
|
||||||
|
* @param string $html HTML to scan
|
||||||
|
*
|
||||||
|
* @return array array of associative arrays in XRD-ish format
|
||||||
|
*/
|
||||||
|
|
||||||
public function parse($html)
|
public function parse($html)
|
||||||
{
|
{
|
||||||
$links = array();
|
$links = array();
|
||||||
@ -237,8 +432,8 @@ class Discovery_LRDD_Link_HTML implements Discovery_LRDD
|
|||||||
preg_match_all('/<link\s[^>]*>/i', $head_html, $link_matches);
|
preg_match_all('/<link\s[^>]*>/i', $head_html, $link_matches);
|
||||||
|
|
||||||
foreach ($link_matches[0] as $link_html) {
|
foreach ($link_matches[0] as $link_html) {
|
||||||
$link_url = null;
|
$link_url = null;
|
||||||
$link_rel = null;
|
$link_rel = null;
|
||||||
$link_type = null;
|
$link_type = null;
|
||||||
|
|
||||||
preg_match('/\srel=(("|\')([^\\2]*?)\\2|[^"\'\s]+)/i', $link_html, $rel_matches);
|
preg_match('/\srel=(("|\')([^\\2]*?)\\2|[^"\'\s]+)/i', $link_html, $rel_matches);
|
132
lib/linkheader.php
Normal file
132
lib/linkheader.php
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
|
*
|
||||||
|
* Parse HTTP response for interesting Link: headers
|
||||||
|
*
|
||||||
|
* 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 Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!defined('STATUSNET')) {
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to represent Link: headers in an HTTP response
|
||||||
|
*
|
||||||
|
* Since these are a fairly important part of Hammer-stack discovery, they're
|
||||||
|
* reified and implemented here.
|
||||||
|
*
|
||||||
|
* @category Discovery
|
||||||
|
* @package StatusNet
|
||||||
|
* @author James Walker <james@status.net>
|
||||||
|
* @copyright 2010 StatusNet, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
|
* @link http://status.net/
|
||||||
|
*
|
||||||
|
* @see Discovery
|
||||||
|
*/
|
||||||
|
|
||||||
|
class LinkHeader
|
||||||
|
{
|
||||||
|
var $href;
|
||||||
|
var $rel;
|
||||||
|
var $type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize from a string
|
||||||
|
*
|
||||||
|
* @param string $str Link: header value
|
||||||
|
*
|
||||||
|
* @return LinkHeader self
|
||||||
|
*/
|
||||||
|
|
||||||
|
function __construct($str)
|
||||||
|
{
|
||||||
|
preg_match('/^<[^>]+>/', $str, $uri_reference);
|
||||||
|
//if (empty($uri_reference)) return;
|
||||||
|
|
||||||
|
$this->href = trim($uri_reference[0], '<>');
|
||||||
|
$this->rel = array();
|
||||||
|
$this->type = null;
|
||||||
|
|
||||||
|
// remove uri-reference from header
|
||||||
|
$str = substr($str, strlen($uri_reference[0]));
|
||||||
|
|
||||||
|
// parse link-params
|
||||||
|
$params = explode(';', $str);
|
||||||
|
|
||||||
|
foreach ($params as $param) {
|
||||||
|
if (empty($param)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
list($param_name, $param_value) = explode('=', $param, 2);
|
||||||
|
|
||||||
|
$param_name = trim($param_name);
|
||||||
|
$param_value = preg_replace('(^"|"$)', '', trim($param_value));
|
||||||
|
|
||||||
|
// for now we only care about 'rel' and 'type' link params
|
||||||
|
// TODO do something with the other links-params
|
||||||
|
switch ($param_name) {
|
||||||
|
case 'rel':
|
||||||
|
$this->rel = trim($param_value);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'type':
|
||||||
|
$this->type = trim($param_value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Given an HTTP response, return the requested Link: header
|
||||||
|
*
|
||||||
|
* @param HTTP_Request2_Response $response response to check
|
||||||
|
* @param string $rel relationship to look for
|
||||||
|
* @param string $type media type to look for
|
||||||
|
*
|
||||||
|
* @return LinkHeader discovered header, or null on failure
|
||||||
|
*/
|
||||||
|
|
||||||
|
static function getLink($response, $rel=null, $type=null)
|
||||||
|
{
|
||||||
|
$headers = $response->getHeader('Link');
|
||||||
|
if ($headers) {
|
||||||
|
// Can get an array or string, so try to simplify the path
|
||||||
|
if (!is_array($headers)) {
|
||||||
|
$headers = array($headers);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($headers as $header) {
|
||||||
|
$lh = new LinkHeader($header);
|
||||||
|
|
||||||
|
if ((is_null($rel) || $lh->rel == $rel) &&
|
||||||
|
(is_null($type) || $lh->type == $type)) {
|
||||||
|
return $lh->href;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@ -268,6 +268,8 @@ abstract class QueueManager extends IoManager
|
|||||||
$this->connect('deluser', 'DelUserQueueHandler');
|
$this->connect('deluser', 'DelUserQueueHandler');
|
||||||
$this->connect('feedimp', 'FeedImporter');
|
$this->connect('feedimp', 'FeedImporter');
|
||||||
$this->connect('actimp', 'ActivityImporter');
|
$this->connect('actimp', 'ActivityImporter');
|
||||||
|
$this->connect('acctmove', 'AccountMover');
|
||||||
|
$this->connect('actmove', 'ActivityMover');
|
||||||
|
|
||||||
// Broadcasting profile updates to OMB remote subscribers
|
// Broadcasting profile updates to OMB remote subscribers
|
||||||
$this->connect('profile', 'ProfileQueueHandler');
|
$this->connect('profile', 'ProfileQueueHandler');
|
||||||
|
@ -28,6 +28,8 @@
|
|||||||
|
|
||||||
class UserActivityStream extends AtomUserNoticeFeed
|
class UserActivityStream extends AtomUserNoticeFeed
|
||||||
{
|
{
|
||||||
|
public $activities = array();
|
||||||
|
|
||||||
function __construct($user, $indent = true)
|
function __construct($user, $indent = true)
|
||||||
{
|
{
|
||||||
parent::__construct($user, null, $indent);
|
parent::__construct($user, null, $indent);
|
||||||
@ -45,10 +47,15 @@ class UserActivityStream extends AtomUserNoticeFeed
|
|||||||
usort($objs, 'UserActivityStream::compareObject');
|
usort($objs, 'UserActivityStream::compareObject');
|
||||||
|
|
||||||
foreach ($objs as $obj) {
|
foreach ($objs as $obj) {
|
||||||
$act = $obj->asActivity();
|
$this->activities[] = $obj->asActivity();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderEntries()
|
||||||
|
{
|
||||||
|
foreach ($this->activities as $act) {
|
||||||
// Only show the author sub-element if it's different from default user
|
// Only show the author sub-element if it's different from default user
|
||||||
$str = $act->asString(false, ($act->actor->id != $this->user->uri));
|
$act->outputTo($this, false, ($act->actor->id != $this->user->uri));
|
||||||
$this->addEntryRaw($str);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,6 +173,13 @@ class XRD
|
|||||||
switch($node->tagName) {
|
switch($node->tagName) {
|
||||||
case 'Title':
|
case 'Title':
|
||||||
$link['title'][] = $node->nodeValue;
|
$link['title'][] = $node->nodeValue;
|
||||||
|
break;
|
||||||
|
case 'Property':
|
||||||
|
$link['property'][] = array('type' => $node->getAttribute('type'),
|
||||||
|
'value' => $node->nodeValue);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
common_log(LOG_NOTICE, "Unexpected tag name {$node->tagName} found in XRD file.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -99,7 +99,9 @@ class XrdAction extends Action
|
|||||||
|
|
||||||
$xrd->links[] = array('rel' => 'http://apinamespace.org/atom',
|
$xrd->links[] = array('rel' => 'http://apinamespace.org/atom',
|
||||||
'type' => 'application/atomsvc+xml',
|
'type' => 'application/atomsvc+xml',
|
||||||
'href' => common_local_url('ApiAtomService', array('id' => $nick)));
|
'href' => common_local_url('ApiAtomService', array('id' => $nick)),
|
||||||
|
'property' => array(array('type' => 'http://apinamespace.org/atom/username',
|
||||||
|
'value' => $nick)));
|
||||||
|
|
||||||
if (common_config('site', 'fancy')) {
|
if (common_config('site', 'fancy')) {
|
||||||
$apiRoot = common_path('api/', true);
|
$apiRoot = common_path('api/', true);
|
||||||
|
@ -9,17 +9,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:21+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:31+0000\n"
|
||||||
"Language-Team: Afrikaans <http://translatewiki.net/wiki/Portal:af>\n"
|
"Language-Team: Afrikaans <http://translatewiki.net/wiki/Portal:af>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: af\n"
|
"X-Language-Code: af\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -271,7 +271,7 @@ msgstr "Opdaterings van %1$s en vriende op %2$s."
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -316,7 +316,8 @@ msgstr "Kon nie die gebruiker opdateer nie."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -549,7 +550,7 @@ msgstr "Kon nie die gebruiker opdateer nie."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een."
|
msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een."
|
||||||
@ -559,7 +560,7 @@ msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Nie 'n geldige gebruikersnaam nie."
|
msgstr "Nie 'n geldige gebruikersnaam nie."
|
||||||
@ -571,7 +572,7 @@ msgstr "Nie 'n geldige gebruikersnaam nie."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Tuisblad is nie 'n geldige URL nie."
|
msgstr "Tuisblad is nie 'n geldige URL nie."
|
||||||
@ -581,7 +582,7 @@ msgstr "Tuisblad is nie 'n geldige URL nie."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -597,7 +598,7 @@ msgstr "Volledige naam is te lang (maksimum 255 karakters)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -609,7 +610,7 @@ msgstr[1] "Die beskrywing is te lank (die maksimum is %d karakters)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -622,7 +623,7 @@ msgstr "Ligging is te lank is (maksimum 255 karakters)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -641,7 +642,7 @@ msgstr "Ongeldige alias: \"%s\""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een."
|
msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een."
|
||||||
@ -650,7 +651,7 @@ msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie."
|
msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie."
|
||||||
|
|
||||||
@ -957,9 +958,10 @@ msgstr "U kan nie u eie kennisgewings herhaal nie."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "U het reeds die kennisgewing herhaal."
|
msgstr "U het reeds die kennisgewing herhaal."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1047,7 +1049,7 @@ msgstr "%1$s / Gunstelinge van %2$s"
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Dit was nie moontlik om die groep by te werk nie."
|
msgstr "Dit was nie moontlik om die groep by te werk nie."
|
||||||
@ -1139,30 +1141,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "U kan nie u eie kennisgewings herhaal nie."
|
msgstr "U kan nie u eie kennisgewings herhaal nie."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1174,7 +1176,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Die API-funksie is nie gevind nie."
|
msgstr "Die API-funksie is nie gevind nie."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Die API-funksie is nie gevind nie."
|
msgstr "Die API-funksie is nie gevind nie."
|
||||||
@ -1267,9 +1269,8 @@ msgstr ""
|
|||||||
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
|
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Die groep bestaan nie."
|
msgstr "Hierdie groep bestaat nie"
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:90
|
#: actions/atompubshowmembership.php:90
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1285,21 +1286,26 @@ msgstr "Die API-funksie is nie gevind nie."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Die lêer bestaan nie."
|
msgstr "Die lêer bestaan nie."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "U volg hierdie gebruiker:"
|
msgstr "U volg hierdie gebruiker:"
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
|
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
|
||||||
|
|
||||||
@ -1394,14 +1400,16 @@ msgid "Preview"
|
|||||||
msgstr "Voorskou"
|
msgstr "Voorskou"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Skrap"
|
msgstr "Skrap"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1444,6 +1452,37 @@ msgstr "Die opdatering van die avatar het gefaal."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Die avatar is verwyder."
|
msgstr "Die avatar is verwyder."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Agtergrond"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1652,6 +1691,76 @@ msgstr "Gesprek"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Kennisgewings"
|
msgstr "Kennisgewings"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "U kan nie gebruikers verwyder nie."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Die avatar is verwyder."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Skep 'n gebruiker"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Bevestig"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "U kan nie gebruikers verwyder nie."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "U kan nie gebruikers verwyder nie."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1797,7 +1906,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Moenie hierdie kennisgewing verwyder nie"
|
msgstr "Moenie hierdie kennisgewing verwyder nie"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Verwyder hierdie kennisgewing"
|
msgstr "Verwyder hierdie kennisgewing"
|
||||||
|
|
||||||
@ -2106,7 +2215,7 @@ msgstr "Gebruik hierdie vorm om die groep te wysig."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Ongeldige alias: \"%s\""
|
msgstr "Ongeldige alias: \"%s\""
|
||||||
@ -2118,7 +2227,7 @@ msgstr "Dit was nie moontlik om die groep by te werk nie."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Dit was nie moontlik om die aliasse te skep nie."
|
msgstr "Dit was nie moontlik om die aliasse te skep nie."
|
||||||
|
|
||||||
@ -3303,8 +3412,14 @@ msgstr "Dit was nie moontlik om die applikasie te skep nie."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Nuwe groep"
|
msgstr "Nuwe groep"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "U is nie 'n lid van die groep nie."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Gebruik hierdie vorm om die groep te wysig."
|
msgstr "Gebruik hierdie vorm om die groep te wysig."
|
||||||
@ -3629,11 +3744,6 @@ msgstr "Nuwe wagwoord"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 of meer karakters"
|
msgstr "6 of meer karakters"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Bevestig"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Dieselfde as wagwoord hierbo"
|
msgstr "Dieselfde as wagwoord hierbo"
|
||||||
@ -4163,6 +4273,12 @@ msgstr "Kon nie gebruiker opdateer nie."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Voorkeure is gestoor."
|
msgstr "Voorkeure is gestoor."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Skep 'n gebruiker"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4608,7 +4724,7 @@ msgstr "U kan nie u eie kennisgewings herhaal nie."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "U het reeds die kennisgewing herhaal."
|
msgstr "U het reeds die kennisgewing herhaal."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Herhalend"
|
msgstr "Herhalend"
|
||||||
|
|
||||||
@ -4670,6 +4786,92 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Opdaterings van %1$s op %2$s."
|
msgstr "Opdaterings van %1$s op %2$s."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Dit was nie moontlik om die applikasie te skep nie."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Oplaai"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Alle lede"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Oplaai"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
@ -4778,7 +4980,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Skrap"
|
msgstr "Skrap"
|
||||||
|
|
||||||
@ -6022,14 +6224,14 @@ msgid "Author(s)"
|
|||||||
msgstr "Outeur(s)"
|
msgstr "Outeur(s)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Gunstelinge"
|
msgstr "Gunstelinge"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!"
|
msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!"
|
||||||
@ -6140,7 +6342,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Dit was nie moontlik om die aliasse te skep nie."
|
msgstr "Dit was nie moontlik om die aliasse te skep nie."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6170,72 +6372,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie."
|
msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Kon nie die profiel stoor nie."
|
msgstr "Kon nie die profiel stoor nie."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6243,14 +6445,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6329,34 +6531,34 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Welkom by %1$s, @%2$s!"
|
msgstr "Welkom by %1$s, @%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Kon nie die groep skep nie."
|
msgstr "Kon nie die groep skep nie."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Kon nie die groep skep nie."
|
msgstr "Kon nie die groep skep nie."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Kon nie die groep skep nie."
|
msgstr "Kon nie die groep skep nie."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Kon nie die profiel stoor nie."
|
msgstr "Kon nie die profiel stoor nie."
|
||||||
@ -6695,10 +6897,56 @@ msgstr "Voor"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Onbekende taal \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Foto"
|
msgstr "Kon nie gebruikersdata opdateer nie."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Onbekende lêertipe"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "U is reeds 'n lid van die groep."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "U kan nie u eie kennisgewings herhaal nie."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -6999,10 +7247,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Verwyder"
|
msgstr "Verwyder"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Moenie hierdie kennisgewing verwyder nie"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7407,25 +7661,25 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Geen bevestigingskode."
|
msgstr "Geen bevestigingskode."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Gaan na die installeerder."
|
msgstr "Gaan na die installeerder."
|
||||||
|
|
||||||
@ -7535,6 +7789,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "Vriende van vriende (FOAF)"
|
msgstr "Vriende van vriende (FOAF)"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Alle lede"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7720,11 +7987,6 @@ msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Geen lêer opgelaai nie."
|
msgstr "Geen lêer opgelaai nie."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8044,7 +8306,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "van"
|
msgstr "van"
|
||||||
|
|
||||||
@ -8074,38 +8336,6 @@ msgstr "Nie-ondersteunde formaat."
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8128,7 +8358,7 @@ msgstr ""
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8137,7 +8367,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8172,19 +8402,19 @@ msgid "Send"
|
|||||||
msgstr "Stuur"
|
msgstr "Stuur"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Die gebruikersnaam mag slegs uit kleinletters en syfers bestaan en mag geen "
|
"Die gebruikersnaam mag slegs uit kleinletters en syfers bestaan en mag geen "
|
||||||
"spasies bevat nie."
|
"spasies bevat nie."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8225,56 +8455,56 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "S"
|
msgstr "S"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "O"
|
msgstr "O"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "W"
|
msgstr "W"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "op"
|
msgstr "op"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "in konteks"
|
msgstr "in konteks"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Herhaal deur"
|
msgstr "Herhaal deur"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Verwyder hierdie kennisgewing"
|
msgstr "Verwyder hierdie kennisgewing"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Antwoord"
|
msgstr "Antwoord"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Hierdie kennisgewing is verwyder."
|
msgstr "Hierdie kennisgewing is verwyder."
|
||||||
@ -8439,7 +8669,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Blok hierdie gebruiker van hierdie groep"
|
msgstr "Blok hierdie gebruiker van hierdie groep"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Die API-funksie is nie gevind nie."
|
msgstr "Die API-funksie is nie gevind nie."
|
||||||
@ -8803,21 +9033,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Geen groep verskaf nie."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -10,17 +10,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:26+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:34+0000\n"
|
||||||
"Language-Team: Bulgarian <http://translatewiki.net/wiki/Portal:bg>\n"
|
"Language-Team: Bulgarian <http://translatewiki.net/wiki/Portal:bg>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: bg\n"
|
"X-Language-Code: bg\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -270,7 +270,7 @@ msgstr "Бележки от %1$s и приятели в %2$s."
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -315,7 +315,8 @@ msgstr "Грешка при обновяване на потребителя."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -549,7 +550,7 @@ msgstr "Целевият потребител не беше открит."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Опитайте друг псевдоним, този вече е зает."
|
msgstr "Опитайте друг псевдоним, този вече е зает."
|
||||||
@ -559,7 +560,7 @@ msgstr "Опитайте друг псевдоним, този вече е за
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Неправилен псевдоним."
|
msgstr "Неправилен псевдоним."
|
||||||
@ -571,7 +572,7 @@ msgstr "Неправилен псевдоним."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Адресът на личната страница не е правилен URL."
|
msgstr "Адресът на личната страница не е правилен URL."
|
||||||
@ -581,7 +582,7 @@ msgstr "Адресът на личната страница не е правил
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -597,7 +598,7 @@ msgstr "Пълното име е твърде дълго (макс. 255 знак
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -609,7 +610,7 @@ msgstr[1] "Описанието е твърде дълго (до %d символ
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -622,7 +623,7 @@ msgstr "Името на местоположението е твърде дъл
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -641,7 +642,7 @@ msgstr "Неправилен псевдоним: \"%s\""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг."
|
msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг."
|
||||||
@ -650,7 +651,7 @@ msgstr "Псевдонимът \"%s\" вече е зает. Опитайте д
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -959,9 +960,10 @@ msgstr "Не можете да повтаряте собствени бележ
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Вече сте повторили тази бележка."
|
msgstr "Вече сте повторили тази бележка."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1049,7 +1051,7 @@ msgstr "%1$s реплики на съобщения от %2$s / %3$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Грешка при обновяване на групата."
|
msgstr "Грешка при обновяване на групата."
|
||||||
@ -1142,30 +1144,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Търсене в съдържанието на бележките"
|
msgstr "Търсене в съдържанието на бележките"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "Не е открита бележка с такъв идентификатор."
|
msgstr "Не е открита бележка с такъв идентификатор."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1176,7 +1178,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Методът в API все още се разработва."
|
msgstr "Методът в API все още се разработва."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Не е открит методът в API."
|
msgstr "Не е открит методът в API."
|
||||||
|
|
||||||
@ -1266,7 +1268,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Грешка при изтриване на любима бележка."
|
msgstr "Грешка при изтриване на любима бележка."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Няма такава група"
|
msgstr "Няма такава група"
|
||||||
|
|
||||||
@ -1284,21 +1285,26 @@ msgstr "Не е открит методът в API."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Няма такъв профил."
|
msgstr "Няма такъв профил."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Не сте абонирани за този профил"
|
msgstr "Не сте абонирани за този профил"
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Грешка при добавяне на нов абонамент."
|
msgstr "Грешка при добавяне на нов абонамент."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1392,14 +1398,16 @@ msgid "Preview"
|
|||||||
msgstr "Преглед"
|
msgstr "Преглед"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Изтриване"
|
msgstr "Изтриване"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1442,6 +1450,38 @@ msgstr "Неуспешно обновяване на аватара."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Аватарът е изтрит."
|
msgstr "Аватарът е изтрит."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Само влезли потребители могат да повтарят бележки."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Фон"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1647,6 +1687,77 @@ msgstr "Разговор"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Бележки"
|
msgstr "Бележки"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Само влезли потребители могат да повтарят бележки."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Не можете да изтривате потребители."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Аватарът е изтрит."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Създаване на нова сметка"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Потвърждаване"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Не можете да изтривате потребители."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Не можете да изтривате потребители."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1793,7 +1904,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Да не се изтрива бележката"
|
msgstr "Да не се изтрива бележката"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Изтриване на бележката"
|
msgstr "Изтриване на бележката"
|
||||||
|
|
||||||
@ -2115,7 +2226,7 @@ msgstr "Използвайте тази бланка за създаване н
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Неправилен псевдоним: \"%s\""
|
msgstr "Неправилен псевдоним: \"%s\""
|
||||||
@ -2127,7 +2238,7 @@ msgstr "Грешка при обновяване на групата."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Грешка при отбелязване като любима."
|
msgstr "Грешка при отбелязване като любима."
|
||||||
@ -3361,8 +3472,14 @@ msgstr "Грешка при отбелязване като любима."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Нова група"
|
msgstr "Нова група"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Не членувате в тази група."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Използвайте тази бланка за създаване на нова група."
|
msgstr "Използвайте тази бланка за създаване на нова група."
|
||||||
|
|
||||||
@ -3679,11 +3796,6 @@ msgstr "Нова парола"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 или повече знака"
|
msgstr "6 или повече знака"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Потвърждаване"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Също като паролата по-горе"
|
msgstr "Също като паролата по-горе"
|
||||||
@ -4212,6 +4324,12 @@ msgstr "Грешка при запазване етикетите."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Настройките са запазени."
|
msgstr "Настройките са запазени."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Създаване на нова сметка"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4661,7 +4779,7 @@ msgstr "Не можете да повтаряте собствена бележ
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Вече сте повторили тази бележка."
|
msgstr "Вече сте повторили тази бележка."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Повторено"
|
msgstr "Повторено"
|
||||||
|
|
||||||
@ -4721,6 +4839,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Отговори до %1$s в %2$s!"
|
msgstr "Отговори до %1$s в %2$s!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Само влезли потребители могат да повтарят бележки."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Не сте собственик на това приложение."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Качване на файл"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "Липсва временна папка."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "Грешка при записване файла на диска."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Системна грешка при качване на файл."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Всички членове"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Качване на файл"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
@ -4824,7 +5029,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Изтриване"
|
msgstr "Изтриване"
|
||||||
|
|
||||||
@ -6063,13 +6268,13 @@ msgid "Author(s)"
|
|||||||
msgstr "Автор(и)"
|
msgstr "Автор(и)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Любимо"
|
msgstr "Любимо"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%s (@%s) отбеляза бележката ви като любима"
|
msgstr "%s (@%s) отбеляза бележката ви като любима"
|
||||||
@ -6181,7 +6386,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Грешка при отбелязване като любима."
|
msgstr "Грешка при отбелязване като любима."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6209,24 +6414,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Грешка при вмъкване на аватар"
|
msgstr "Грешка при вмъкване на аватар"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Проблем при записване на бележката."
|
msgstr "Проблем при записване на бележката."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Грешка при записване на бележката. Непознат потребител."
|
msgstr "Грешка при записване на бележката. Непознат потребител."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6234,7 +6439,7 @@ msgstr ""
|
|||||||
"отново след няколко минути."
|
"отново след няколко минути."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
@ -6244,43 +6449,43 @@ msgstr ""
|
|||||||
"отново след няколко минути."
|
"отново след няколко минути."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Забранено ви е да публикувате бележки в този сайт."
|
msgstr "Забранено ви е да публикувате бележки в този сайт."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Проблем при записване на бележката."
|
msgstr "Проблем при записване на бележката."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Проблем при записване на бележката."
|
msgstr "Проблем при записване на бележката."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Грешка при запазване на етикетите."
|
msgstr "Грешка при запазване на етикетите."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6288,14 +6493,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6369,32 +6574,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Добре дошли в %1$s, @%2$s!"
|
msgstr "Добре дошли в %1$s, @%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Грешка при създаване на групата."
|
msgstr "Грешка при създаване на групата."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Грешка при създаване на групата."
|
msgstr "Грешка при създаване на групата."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Грешка при създаване на групата."
|
msgstr "Грешка при създаване на групата."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Грешка при запазване на етикетите."
|
msgstr "Грешка при запазване на етикетите."
|
||||||
|
|
||||||
@ -6736,10 +6941,56 @@ msgstr "Преди"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Непознат език \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Снимка"
|
msgstr "Уточнете името на потребителя, за когото се абонирате."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Неподдържан вид файл"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Вече членувате в тази група."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Търсене в съдържанието на бележките"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7037,10 +7288,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Премахване"
|
msgstr "Премахване"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Да не се изтрива бележката"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7442,26 +7699,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Не е открит файл с настройки. "
|
msgstr "Не е открит файл с настройки. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "Изпратени са покани до следните хора:"
|
msgstr "Изпратени са покани до следните хора:"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Влизане в сайта"
|
msgstr "Влизане в сайта"
|
||||||
@ -7571,6 +7828,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "FOAF"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Всички членове"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7752,11 +8022,6 @@ msgstr "Може да качите лого за групата ви."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Частично качване на файла."
|
msgstr "Частично качване на файла."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Системна грешка при качване на файл."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "Файлът не е изображение или е повреден."
|
msgstr "Файлът не е изображение или е повреден."
|
||||||
@ -8083,7 +8348,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "от"
|
msgstr "от"
|
||||||
|
|
||||||
@ -8113,38 +8378,6 @@ msgstr "Форматът на файла с изображението не се
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "Липсва временна папка."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "Грешка при записване файла на диска."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8165,7 +8398,7 @@ msgstr "Грешка при изтриване на любима бележка.
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8174,7 +8407,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8210,19 +8443,19 @@ msgid "Send"
|
|||||||
msgstr "Прати"
|
msgstr "Прати"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
|
"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
|
||||||
"между тях."
|
"между тях."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8261,56 +8494,56 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "С"
|
msgstr "С"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "Ю"
|
msgstr "Ю"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "И"
|
msgstr "И"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "З"
|
msgstr "З"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "Път"
|
msgstr "Път"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "в контекст"
|
msgstr "в контекст"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Повторено от"
|
msgstr "Повторено от"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Отговаряне на тази бележка"
|
msgstr "Отговаряне на тази бележка"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Отговор"
|
msgstr "Отговор"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Бележката е повторена."
|
msgstr "Бележката е повторена."
|
||||||
|
|
||||||
@ -8465,7 +8698,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Списък с потребителите в тази група."
|
msgstr "Списък с потребителите в тази група."
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Не е открит методът в API."
|
msgstr "Не е открит методът в API."
|
||||||
@ -8824,21 +9057,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Не е указана група."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -13,17 +13,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:41+0000\n"
|
||||||
"Language-Team: British English <http://translatewiki.net/wiki/Portal:en-gb>\n"
|
"Language-Team: British English <http://translatewiki.net/wiki/Portal:en-gb>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: en-gb\n"
|
"X-Language-Code: en-gb\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -280,7 +280,7 @@ msgstr "Updates from %1$s and friends on %2$s!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -327,7 +327,8 @@ msgstr "Could not update user."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -559,7 +560,7 @@ msgstr "Could not find target user."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Nickname already in use. Try another one."
|
msgstr "Nickname already in use. Try another one."
|
||||||
@ -569,7 +570,7 @@ msgstr "Nickname already in use. Try another one."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Not a valid nickname."
|
msgstr "Not a valid nickname."
|
||||||
@ -581,7 +582,7 @@ msgstr "Not a valid nickname."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Homepage is not a valid URL."
|
msgstr "Homepage is not a valid URL."
|
||||||
@ -591,7 +592,7 @@ msgstr "Homepage is not a valid URL."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -607,7 +608,7 @@ msgstr "Full name is too long (max 255 chars)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -619,7 +620,7 @@ msgstr[1] "Description is too long (max %d chars)"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -632,7 +633,7 @@ msgstr "Location is too long (max 255 chars)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -651,7 +652,7 @@ msgstr "Invalid alias: \"%s\"."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Alias \"%s\" already in use. Try another one."
|
msgstr "Alias \"%s\" already in use. Try another one."
|
||||||
@ -660,7 +661,7 @@ msgstr "Alias \"%s\" already in use. Try another one."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "Alias can't be the same as nickname."
|
msgstr "Alias can't be the same as nickname."
|
||||||
|
|
||||||
@ -970,9 +971,10 @@ msgstr "Cannot repeat your own notice."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Already repeated that notice."
|
msgstr "Already repeated that notice."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1060,7 +1062,7 @@ msgstr "%1$s updates favourited by %2$s / %2$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Could not delete group %s."
|
msgstr "Could not delete group %s."
|
||||||
@ -1153,30 +1155,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Find content of notices"
|
msgstr "Find content of notices"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "Notice with that id does not exist."
|
msgstr "Notice with that id does not exist."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1187,7 +1189,7 @@ msgid "API method under construction."
|
|||||||
msgstr "API method under construction."
|
msgstr "API method under construction."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "API method not found."
|
msgstr "API method not found."
|
||||||
|
|
||||||
@ -1277,7 +1279,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Could not delete favourite."
|
msgstr "Could not delete favourite."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "No such group."
|
msgstr "No such group."
|
||||||
|
|
||||||
@ -1295,21 +1296,26 @@ msgstr "API method not found."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "No such profile."
|
msgstr "No such profile."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "You are not subscribed to that profile."
|
msgstr "You are not subscribed to that profile."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Could not delete self-subscription."
|
msgstr "Could not delete self-subscription."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1402,14 +1408,16 @@ msgid "Preview"
|
|||||||
msgstr "Preview"
|
msgstr "Preview"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Delete"
|
msgstr "Delete"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1452,6 +1460,38 @@ msgstr "Failed updating avatar."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Avatar deleted."
|
msgstr "Avatar deleted."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Only logged-in users can repeat notices."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Background"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1659,6 +1699,77 @@ msgstr "Conversation"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Notices"
|
msgstr "Notices"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Only logged-in users can repeat notices."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "You cannot delete users."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Avatar deleted."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Create an account"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Confirm"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "You cannot delete users."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "You cannot delete users."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1807,7 +1918,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Do not delete this notice"
|
msgstr "Do not delete this notice"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Delete this notice"
|
msgstr "Delete this notice"
|
||||||
|
|
||||||
@ -2113,7 +2224,7 @@ msgstr "Use this form to edit the group."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Invalid alias: \"%s\""
|
msgstr "Invalid alias: \"%s\""
|
||||||
@ -2125,7 +2236,7 @@ msgstr "Could not update group."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Could not create aliases."
|
msgstr "Could not create aliases."
|
||||||
|
|
||||||
@ -3352,8 +3463,14 @@ msgstr "Could not create application."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "New group"
|
msgstr "New group"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "You are not allowed to delete this group."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Use this form to create a new group."
|
msgstr "Use this form to create a new group."
|
||||||
|
|
||||||
@ -3672,11 +3789,6 @@ msgstr "New password"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 or more characters"
|
msgstr "6 or more characters"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Confirm"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Same as password above"
|
msgstr "Same as password above"
|
||||||
@ -4200,6 +4312,12 @@ msgstr "Couldn't save tags."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Settings saved."
|
msgstr "Settings saved."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Create an account"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4655,7 +4773,7 @@ msgstr "You can't repeat your own notice."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "You already repeated that notice."
|
msgstr "You already repeated that notice."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Repeated"
|
msgstr "Repeated"
|
||||||
|
|
||||||
@ -4719,6 +4837,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Replies to %1$s on %2$s!"
|
msgstr "Replies to %1$s on %2$s!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Only logged-in users can repeat notices."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "You have not registered any applications yet."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Upload file"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "System error uploading file."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "All members"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Upload file"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "You cannot revoke user roles on this site."
|
msgstr "You cannot revoke user roles on this site."
|
||||||
@ -4819,7 +5024,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Delete"
|
msgstr "Delete"
|
||||||
|
|
||||||
@ -6078,13 +6283,13 @@ msgid "Author(s)"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Favour"
|
msgstr "Favour"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%1$s marked notice %2$s as a favourite."
|
msgstr "%1$s marked notice %2$s as a favourite."
|
||||||
@ -6191,7 +6396,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Could not create login token for %s"
|
msgstr "Could not create login token for %s"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6218,30 +6423,30 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Database error inserting hashtag: %s"
|
msgstr "Database error inserting hashtag: %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Problem saving notice. Too long."
|
msgstr "Problem saving notice. Too long."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Problem saving notice. Unknown user."
|
msgstr "Problem saving notice. Unknown user."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6250,42 +6455,42 @@ msgstr ""
|
|||||||
"few minutes."
|
"few minutes."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "You are banned from posting notices on this site."
|
msgstr "You are banned from posting notices on this site."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Problem saving notice."
|
msgstr "Problem saving notice."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Problem saving group inbox."
|
msgstr "Problem saving group inbox."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Could not save reply for %1$d, %2$d."
|
msgstr "Could not save reply for %1$d, %2$d."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6293,14 +6498,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6370,32 +6575,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Welcome to %1$s, @%2$s!"
|
msgstr "Welcome to %1$s, @%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Could not create group."
|
msgstr "Could not create group."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Could not set group URI."
|
msgstr "Could not set group URI."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Could not set group membership."
|
msgstr "Could not set group membership."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Could not save local group info."
|
msgstr "Could not save local group info."
|
||||||
|
|
||||||
@ -6730,10 +6935,56 @@ msgstr "Before"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Unknown file type"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Photo"
|
msgstr "Specify the name of the user to subscribe to."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Unknown file type"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "You are already a member of that group."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Find content of notices"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7016,10 +7267,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Revoke"
|
msgstr "Revoke"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Do not delete this group"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7441,26 +7698,26 @@ msgstr ""
|
|||||||
"tracking - not yet implemented.\n"
|
"tracking - not yet implemented.\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "No configuration file found. "
|
msgstr "No configuration file found. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "Invitation(s) sent to the following people:"
|
msgstr "Invitation(s) sent to the following people:"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Go to the installer."
|
msgstr "Go to the installer."
|
||||||
|
|
||||||
@ -7564,6 +7821,19 @@ msgstr ""
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "All members"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7745,11 +8015,6 @@ msgstr "That file is too big. The maximum file size is %s."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Partial upload."
|
msgstr "Partial upload."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "System error uploading file."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "Not an image or corrupt file."
|
msgstr "Not an image or corrupt file."
|
||||||
@ -8084,7 +8349,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "from"
|
msgstr "from"
|
||||||
|
|
||||||
@ -8114,38 +8379,6 @@ msgstr "Unsupported message type: %s"
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8166,7 +8399,7 @@ msgstr "Could not determine file's MIME type."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8175,7 +8408,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8210,17 +8443,17 @@ msgid "Send"
|
|||||||
msgstr "Send"
|
msgstr "Send"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
|
msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8259,55 +8492,55 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "in context"
|
msgstr "in context"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Repeated by"
|
msgstr "Repeated by"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Reply to this notice"
|
msgstr "Reply to this notice"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Reply"
|
msgstr "Reply"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Notice repeated"
|
msgstr "Notice repeated"
|
||||||
|
|
||||||
@ -8461,7 +8694,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Revoke the \"%s\" role from this user"
|
msgstr "Revoke the \"%s\" role from this user"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "API method not found."
|
msgstr "API method not found."
|
||||||
@ -8810,20 +9043,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "No user specified; using backup user."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -15,8 +15,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:39+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:45+0000\n"
|
||||||
"Last-Translator: Ahmad Sufi Mahmudi\n"
|
"Last-Translator: Ahmad Sufi Mahmudi\n"
|
||||||
"Language-Team: Persian <http://translatewiki.net/wiki/Portal:fa>\n"
|
"Language-Team: Persian <http://translatewiki.net/wiki/Portal:fa>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -25,9 +25,9 @@ msgstr ""
|
|||||||
"X-Language-Code: fa\n"
|
"X-Language-Code: fa\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -283,7 +283,7 @@ msgstr "به روز رسانی از %1$s و دوستان در %2$s"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -329,7 +329,8 @@ msgstr "نمیتوان کاربر را بههنگامسازی کرد."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -556,7 +557,7 @@ msgstr "نمیتوان کاربر هدف را پیدا کرد."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
|
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
|
||||||
@ -566,7 +567,7 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "لقب نا معتبر."
|
msgstr "لقب نا معتبر."
|
||||||
@ -578,7 +579,7 @@ msgstr "لقب نا معتبر."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "صفحهٔ خانگی یک نشانی معتبر نیست."
|
msgstr "صفحهٔ خانگی یک نشانی معتبر نیست."
|
||||||
@ -588,7 +589,7 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -604,7 +605,7 @@ msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نوی
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -615,7 +616,7 @@ msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -628,7 +629,7 @@ msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نوی
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -646,7 +647,7 @@ msgstr "نام مستعار نامعتبر است: «%s»."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "ناممستعار «%s» ازپیش گرفتهشدهاست. یکی دیگر را امتحان کنید."
|
msgstr "ناممستعار «%s» ازپیش گرفتهشدهاست. یکی دیگر را امتحان کنید."
|
||||||
@ -655,7 +656,7 @@ msgstr "ناممستعار «%s» ازپیش گرفتهشدهاست. ی
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "نام و نام مستعار شما نمی تواند یکی باشد ."
|
msgstr "نام و نام مستعار شما نمی تواند یکی باشد ."
|
||||||
|
|
||||||
@ -971,9 +972,10 @@ msgstr "نمی توانید پیام خود را تکرار کنید."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "قبلا آن پیام تکرار شده است."
|
msgstr "قبلا آن پیام تکرار شده است."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1059,7 +1061,7 @@ msgstr "بهروزرسانیهای %1$s که توسط %2$s برگزیده
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "نمیتوان گروه را بههنگامسازی کرد."
|
msgstr "نمیتوان گروه را بههنگامسازی کرد."
|
||||||
@ -1152,30 +1154,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "پیدا کردن محتوای پیامها"
|
msgstr "پیدا کردن محتوای پیامها"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "پیامی با آن شناسه وجود ندارد."
|
msgstr "پیامی با آن شناسه وجود ندارد."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1186,7 +1188,7 @@ msgid "API method under construction."
|
|||||||
msgstr "روش API در دست ساخت."
|
msgstr "روش API در دست ساخت."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "رابط مورد نظر پیدا نشد."
|
msgstr "رابط مورد نظر پیدا نشد."
|
||||||
@ -1277,7 +1279,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "نمیتوان پیام برگزیده را حذف کرد."
|
msgstr "نمیتوان پیام برگزیده را حذف کرد."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "چنین گروهی وجود ندارد."
|
msgstr "چنین گروهی وجود ندارد."
|
||||||
|
|
||||||
@ -1295,21 +1296,26 @@ msgstr "رابط مورد نظر پیدا نشد."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "چنین نمایهای وجود ندارد."
|
msgstr "چنین نمایهای وجود ندارد."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "شما مشترک آن نمایه نیستید."
|
msgstr "شما مشترک آن نمایه نیستید."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "نمیتوان اشتراک را ذخیره کرد."
|
msgstr "نمیتوان اشتراک را ذخیره کرد."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1403,14 +1409,16 @@ msgid "Preview"
|
|||||||
msgstr "پیشنمایش"
|
msgstr "پیشنمایش"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "حذف"
|
msgstr "حذف"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1454,6 +1462,38 @@ msgstr "به روز رسانی چهره موفقیت آمیر نبود."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "چهره پاک شد."
|
msgstr "چهره پاک شد."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "پیشزمینه"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1662,6 +1702,77 @@ msgstr "مکالمه"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "پیامها"
|
msgstr "پیامها"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "شما نمیتوانید کاربران را پاک کنید."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "چهره پاک شد."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "ساختن یک جسابکاربری"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "تایید"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "شما نمیتوانید کاربران را پاک کنید."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "شما نمیتوانید کاربران را پاک کنید."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1815,7 +1926,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "این پیام را پاک نکن"
|
msgstr "این پیام را پاک نکن"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "این پیام را پاک کن"
|
msgstr "این پیام را پاک کن"
|
||||||
|
|
||||||
@ -2127,7 +2238,7 @@ msgstr "از این روش برای ویرایش گروه استفاده کنی
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "ناممستعار غیر مجاز: «%s»"
|
msgstr "ناممستعار غیر مجاز: «%s»"
|
||||||
@ -2139,7 +2250,7 @@ msgstr "نمیتوان گروه را بههنگامسازی کرد."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "نمیتوان نامهای مستعار را ساخت."
|
msgstr "نمیتوان نامهای مستعار را ساخت."
|
||||||
|
|
||||||
@ -3362,8 +3473,14 @@ msgstr "نمیتوان برنامه را ساخت."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "گروه جدید"
|
msgstr "گروه جدید"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "شما یک عضو این گروه نیستید."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید"
|
msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید"
|
||||||
|
|
||||||
@ -3683,11 +3800,6 @@ msgstr "گذرواژهٔ تازه"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "۶ نویسه یا بیشتر"
|
msgstr "۶ نویسه یا بیشتر"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "تایید"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "مانند گذرواژهٔ بالا"
|
msgstr "مانند گذرواژهٔ بالا"
|
||||||
@ -4219,6 +4331,12 @@ msgstr "نمیتوان نشان را ذخیره کرد."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "تنظیمات ذخیره شد."
|
msgstr "تنظیمات ذخیره شد."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "ساختن یک جسابکاربری"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4679,7 +4797,7 @@ msgstr "شما نمیتوانید پیام خودتان را تکرار کن
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "شما قبلا آن پیام را تکرار کردهاید."
|
msgstr "شما قبلا آن پیام را تکرار کردهاید."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "تکرار شده"
|
msgstr "تکرار شده"
|
||||||
|
|
||||||
@ -4743,6 +4861,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "پاسخهای به %1$s در %2$s!"
|
msgstr "پاسخهای به %1$s در %2$s!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "شما هنوز هیچ برنامهای را ثبت نکردهاید."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "بارگذاری پرونده"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "نتها اندکی از فایل بارگذاریشده فرستاده شد."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "گم شدن یک پوشه ی موقتی."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "شکست خوردن در نوشتن فایل روی دیسک."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "بارگذاری پرونده توسط افزونه متوقف شد."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "همهٔ اعضا"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "بارگذاری پرونده"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "شما نمیتوانید نقشهای کاربری را در این وبگاه لغو کنید."
|
msgstr "شما نمیتوانید نقشهای کاربری را در این وبگاه لغو کنید."
|
||||||
@ -4846,7 +5051,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "حذف"
|
msgstr "حذف"
|
||||||
|
|
||||||
@ -6122,13 +6327,13 @@ msgid "Author(s)"
|
|||||||
msgstr "مؤلف(ها)"
|
msgstr "مؤلف(ها)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "برگزیدهکردن"
|
msgstr "برگزیدهکردن"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "پیام شما را به برگزیدههای خود اضافه کرد %s (@%s)"
|
msgstr "پیام شما را به برگزیدههای خود اضافه کرد %s (@%s)"
|
||||||
@ -6237,7 +6442,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "نمیتوان رمز ورود را برای %s ایجاد کرد"
|
msgstr "نمیتوان رمز ورود را برای %s ایجاد کرد"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "هیچ پایگاهداده یا DSN هیچجا پیدا نشد."
|
msgstr "هیچ پایگاهداده یا DSN هیچجا پیدا نشد."
|
||||||
|
|
||||||
@ -6265,23 +6470,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "چنین نمایهای (%1$d) برای پیام (%2$d) وجود ندارد."
|
msgstr "چنین نمایهای (%1$d) برای پیام (%2$d) وجود ندارد."
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "هنگام افزودن برچسب خطا در پایگاه داده رخ داد: %s"
|
msgstr "هنگام افزودن برچسب خطا در پایگاه داده رخ داد: %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی."
|
msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته."
|
msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6289,7 +6494,7 @@ msgstr ""
|
|||||||
"دوباره بفرستید."
|
"دوباره بفرستید."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6298,42 +6503,42 @@ msgstr ""
|
|||||||
"ارسال کنید."
|
"ارسال کنید."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "شما از فرستادن پیام در این وبگاه منع شدهاید."
|
msgstr "شما از فرستادن پیام در این وبگاه منع شدهاید."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد."
|
msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد."
|
msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
|
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6341,14 +6546,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr "نمیتوان نقش «%1$s» را از کاربر #%2$d گرفت، وجود ندارد."
|
msgstr "نمیتوان نقش «%1$s» را از کاربر #%2$d گرفت، وجود ندارد."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6420,33 +6625,33 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "@%2$s، به %1$s خوش آمدید!"
|
msgstr "@%2$s، به %1$s خوش آمدید!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است."
|
msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است."
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "نمیتوان گروه را تشکیل داد"
|
msgstr "نمیتوان گروه را تشکیل داد"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "نمیتوان گروه را تشکیل داد"
|
msgstr "نمیتوان گروه را تشکیل داد"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "نمیتوان عضویت گروه را تعیین کرد."
|
msgstr "نمیتوان عضویت گروه را تعیین کرد."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
|
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
|
||||||
|
|
||||||
@ -6782,10 +6987,56 @@ msgid "Expecting a root feed element but got a whole XML document."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"در حال انتظار برای یک عامل خوراک ریشهای، اما یک سند XML کامل دریافت شد."
|
"در حال انتظار برای یک عامل خوراک ریشهای، اما یک سند XML کامل دریافت شد."
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "زبان «%s» ناشناس است."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "تصویر"
|
msgstr "نمیتوان کاربر را برای اشتراک خودکار بههنگامسازی کرد."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "نوع فایل پشتیبانی نشده"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "شما از پیش یک عضو این گروه هستید."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "پیدا کردن محتوای پیامها"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7069,10 +7320,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "لغو کردن"
|
msgstr "لغو کردن"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "این پیام را پاک نکن"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7503,26 +7760,26 @@ msgstr ""
|
|||||||
"tracking - هنوز پیاده نشده است.\n"
|
"tracking - هنوز پیاده نشده است.\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "بدون کد تصدیق."
|
msgstr "بدون کد تصدیق."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "من به دنبال پروندههای پیکربندی در مکانهای زیر بودم: "
|
msgstr "من به دنبال پروندههای پیکربندی در مکانهای زیر بودم: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند."
|
msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "برو به نصاب."
|
msgstr "برو به نصاب."
|
||||||
|
|
||||||
@ -7631,6 +7888,19 @@ msgstr "مؤلف"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "همهٔ اعضا"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7811,11 +8081,6 @@ msgstr "این پرونده خیلی بزرگ است. بیشینهٔ انداز
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "هیچ پروندهای بارگذاری نشد."
|
msgstr "هیچ پروندهای بارگذاری نشد."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "تصویر یا فایل خرابی نیست"
|
msgstr "تصویر یا فایل خرابی نیست"
|
||||||
@ -8230,7 +8495,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "از"
|
msgstr "از"
|
||||||
|
|
||||||
@ -8261,38 +8526,6 @@ msgid "There was a database error while saving your file. Please try again."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"یک خطای پایگاه داده هنگام ذخیره کردن فایل شما رخ داد. لطفا بعدا سعی کنید."
|
"یک خطای پایگاه داده هنگام ذخیره کردن فایل شما رخ داد. لطفا بعدا سعی کنید."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "نتها اندکی از فایل بارگذاریشده فرستاده شد."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "گم شدن یک پوشه ی موقتی."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "شکست خوردن در نوشتن فایل روی دیسک."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "بارگذاری پرونده توسط افزونه متوقف شد."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8313,7 +8546,7 @@ msgstr "نمیتوان فرمت پرونده را تعیین کرد."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8322,7 +8555,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8357,17 +8590,17 @@ msgid "Send"
|
|||||||
msgstr "فرستادن"
|
msgstr "فرستادن"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد."
|
msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8407,56 +8640,56 @@ msgstr ""
|
|||||||
"دوباره تلاش کنید."
|
"دوباره تلاش کنید."
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "خیر"
|
msgstr "خیر"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "در"
|
msgstr "در"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "در زمینه"
|
msgstr "در زمینه"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "تکرار از"
|
msgstr "تکرار از"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "به این پیام پاسخ دهید"
|
msgstr "به این پیام پاسخ دهید"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "پاسخ"
|
msgstr "پاسخ"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "پیام تکرار شد"
|
msgstr "پیام تکرار شد"
|
||||||
|
|
||||||
@ -8611,7 +8844,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "دسترسی کاربر به گروه مسدود شود"
|
msgstr "دسترسی کاربر به گروه مسدود شود"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "رابط مورد نظر پیدا نشد."
|
msgstr "رابط مورد نظر پیدا نشد."
|
||||||
@ -8961,20 +9194,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "هیچ شناسهٔ کاربری مشخص نشده است."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -21,17 +21,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:42+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:47+0000\n"
|
||||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: fr\n"
|
"X-Language-Code: fr\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -290,7 +290,7 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -337,7 +337,8 @@ msgstr "Impossible de mettre à jour l’utilisateur."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -571,7 +572,7 @@ msgstr "Impossible de trouver l’utilisateur cible."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Pseudo déjà utilisé. Essayez-en un autre."
|
msgstr "Pseudo déjà utilisé. Essayez-en un autre."
|
||||||
@ -581,7 +582,7 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Pseudo invalide."
|
msgstr "Pseudo invalide."
|
||||||
@ -593,7 +594,7 @@ msgstr "Pseudo invalide."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "L’adresse du site personnel n’est pas un URL valide. "
|
msgstr "L’adresse du site personnel n’est pas un URL valide. "
|
||||||
@ -603,7 +604,7 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. "
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
msgstr "Le nom complet est trop long (limité à 255 caractères maximum)."
|
msgstr "Le nom complet est trop long (limité à 255 caractères maximum)."
|
||||||
@ -618,7 +619,7 @@ msgstr "Le nom complet est trop long (limité à 255 caractères maximum)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -630,7 +631,7 @@ msgstr[1] "La description est trop longue (limitée à %d caractères maximum)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
msgstr "L’emplacement est trop long (limité à 255 caractères maximum)."
|
msgstr "L’emplacement est trop long (limité à 255 caractères maximum)."
|
||||||
@ -642,7 +643,7 @@ msgstr "L’emplacement est trop long (limité à 255 caractères maximum)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -661,7 +662,7 @@ msgstr "Alias invalide : « %s »."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Alias « %s » déjà utilisé. Essayez-en un autre."
|
msgstr "Alias « %s » déjà utilisé. Essayez-en un autre."
|
||||||
@ -670,7 +671,7 @@ msgstr "Alias « %s » déjà utilisé. Essayez-en un autre."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "L’alias ne peut pas être le même que le pseudo."
|
msgstr "L’alias ne peut pas être le même que le pseudo."
|
||||||
|
|
||||||
@ -985,9 +986,10 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Vous avez déjà repris cet avis."
|
msgstr "Vous avez déjà repris cet avis."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
msgstr "Méthode HTTP non trouvée !"
|
msgstr "Méthode HTTP non trouvée !"
|
||||||
@ -1079,7 +1081,7 @@ msgstr "%1$s annonces favorites de %2$s, alias %3$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Impossible de générer le flux pour le groupe — %s"
|
msgstr "Impossible de générer le flux pour le groupe — %s"
|
||||||
@ -1173,31 +1175,31 @@ msgstr "Une publication Atom doit être une entrée « Atom »."
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr "Ne peut gérer que les activités de publication."
|
msgstr "Ne peut gérer que les activités de publication."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr "Ne peut gérer l’objet d’activité de type « %s »"
|
msgstr "Ne peut gérer l’objet d’activité de type « %s »"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Chercher dans le contenu des avis"
|
msgstr "Chercher dans le contenu des avis"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "L’avis d’URI « %s » existe déjà."
|
msgstr "L’avis d’URI « %s » existe déjà."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr "Publication AtomPost avec l’URI d’attention inconnu %s"
|
msgstr "Publication AtomPost avec l’URI d’attention inconnu %s"
|
||||||
@ -1208,7 +1210,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Méthode API en construction."
|
msgstr "Méthode API en construction."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Page non trouvée."
|
msgstr "Page non trouvée."
|
||||||
|
|
||||||
@ -1300,7 +1302,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Impossible de supprimer le favori."
|
msgstr "Impossible de supprimer le favori."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Aucun groupe trouvé."
|
msgstr "Aucun groupe trouvé."
|
||||||
|
|
||||||
@ -1318,21 +1319,26 @@ msgstr "Méthode HTTP non trouvée !"
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Profil non-trouvé."
|
msgstr "Profil non-trouvé."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Vous n’êtes pas abonné(e) à ce profil."
|
msgstr "Vous n’êtes pas abonné(e) à ce profil."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Impossible de supprimer l’abonnement à soi-même."
|
msgstr "Impossible de supprimer l’abonnement à soi-même."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1428,13 +1434,15 @@ msgid "Preview"
|
|||||||
msgstr "Aperçu"
|
msgstr "Aperçu"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Supprimer"
|
msgstr "Supprimer"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr "Téléverser"
|
msgstr "Téléverser"
|
||||||
@ -1475,6 +1483,38 @@ msgstr "La mise à jour de l’avatar a échoué."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Avatar supprimé."
|
msgstr "Avatar supprimé."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Arrière plan"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1680,6 +1720,77 @@ msgstr "Conversation"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Avis"
|
msgstr "Avis"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Vous ne pouvez pas supprimer des utilisateurs."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Avatar supprimé."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Créer un compte"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Confirmer"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Vous ne pouvez pas supprimer des utilisateurs."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Vous ne pouvez pas supprimer des utilisateurs."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1829,7 +1940,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Ne pas supprimer cet avis"
|
msgstr "Ne pas supprimer cet avis"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Supprimer cet avis"
|
msgstr "Supprimer cet avis"
|
||||||
|
|
||||||
@ -2134,7 +2245,7 @@ msgstr "Remplissez ce formulaire pour modifier les options du groupe."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Alias invalide : « %s »"
|
msgstr "Alias invalide : « %s »"
|
||||||
@ -2146,7 +2257,7 @@ msgstr "Impossible de mettre à jour le groupe."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Impossible de créer les alias."
|
msgstr "Impossible de créer les alias."
|
||||||
|
|
||||||
@ -3398,8 +3509,14 @@ msgstr "Impossible de créer l’application."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Nouveau groupe"
|
msgstr "Nouveau groupe"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Vous n’êtes pas autorisé à supprimer ce groupe."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :"
|
msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :"
|
||||||
|
|
||||||
@ -3723,11 +3840,6 @@ msgstr "Nouveau mot de passe"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 caractères ou plus"
|
msgstr "6 caractères ou plus"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Confirmer"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Identique au mot de passe ci-dessus"
|
msgstr "Identique au mot de passe ci-dessus"
|
||||||
@ -4246,6 +4358,12 @@ msgstr "Impossible d’enregistrer les marques."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Préférences enregistrées."
|
msgstr "Préférences enregistrées."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Créer un compte"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4718,7 +4836,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Vous avez déjà repris cet avis."
|
msgstr "Vous avez déjà repris cet avis."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Repris"
|
msgstr "Repris"
|
||||||
|
|
||||||
@ -4786,6 +4904,95 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Réponses à %1$s sur %2$s !"
|
msgstr "Réponses à %1$s sur %2$s !"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Vous n’avez encore enregistré aucune application."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Importer un fichier"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr "Le fichier importé dépasse le réglage upload_max_filesize de php.ini."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
"Le fichier importé dépasse le réglage MAX_FILE_SIZE qui a été précisé dans "
|
||||||
|
"le formulaire HTML."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "Le fichier n’a été que partiellement importé."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "Un dossier temporaire est manquant."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "Impossible d’écrire sur le disque."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "Import de fichier stoppé par une extension."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Erreur système lors du transfert du fichier."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Tous les membres"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Importer un fichier"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site."
|
msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site."
|
||||||
@ -4887,7 +5094,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr "Réinitialiser la clé et le secret"
|
msgstr "Réinitialiser la clé et le secret"
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Supprimer"
|
msgstr "Supprimer"
|
||||||
|
|
||||||
@ -6183,13 +6390,13 @@ msgid "Author(s)"
|
|||||||
msgstr "Auteur(s)"
|
msgstr "Auteur(s)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Ajouter à mes favoris"
|
msgstr "Ajouter à mes favoris"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%1$s a marqué l’avis %2$s comme favori."
|
msgstr "%1$s a marqué l’avis %2$s comme favori."
|
||||||
@ -6304,7 +6511,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Impossible de créer le jeton d’identification pour %s"
|
msgstr "Impossible de créer le jeton d’identification pour %s"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "Aucun nom de base de données ou DSN trouvé nulle part."
|
msgstr "Aucun nom de base de données ou DSN trouvé nulle part."
|
||||||
|
|
||||||
@ -6331,23 +6538,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "Impossible de trouver le profil (%1$d) pour l’avis (%2$d)."
|
msgstr "Impossible de trouver le profil (%1$d) pour l’avis (%2$d)."
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s"
|
msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Problème lors de l’enregistrement de l’avis ; trop long."
|
msgstr "Problème lors de l’enregistrement de l’avis ; trop long."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu."
|
msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6355,7 +6562,7 @@ msgstr ""
|
|||||||
"minutes."
|
"minutes."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6364,42 +6571,42 @@ msgstr ""
|
|||||||
"dans quelques minutes."
|
"dans quelques minutes."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Il vous est interdit de poster des avis sur ce site."
|
msgstr "Il vous est interdit de poster des avis sur ce site."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Problème lors de l’enregistrement de l’avis."
|
msgstr "Problème lors de l’enregistrement de l’avis."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr "Le type renseigné pour la méthode saveKnownGroups() est incorrect."
|
msgstr "Le type renseigné pour la méthode saveKnownGroups() est incorrect."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe."
|
msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d."
|
msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6407,7 +6614,7 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6416,7 +6623,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6488,32 +6695,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Bienvenue à %1$s, @%2$s !"
|
msgstr "Bienvenue à %1$s, @%2$s !"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur."
|
msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur."
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé."
|
msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Impossible de créer le groupe."
|
msgstr "Impossible de créer le groupe."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Impossible de définir l'URI du groupe."
|
msgstr "Impossible de définir l'URI du groupe."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Impossible d’établir l’inscription au groupe."
|
msgstr "Impossible d’établir l’inscription au groupe."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Impossible d’enregistrer les informations du groupe local."
|
msgstr "Impossible d’enregistrer les informations du groupe local."
|
||||||
|
|
||||||
@ -6853,10 +7060,56 @@ msgstr "Avant"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr "Attendait un élément racine mais a reçu tout un document XML."
|
msgstr "Attendait un élément racine mais a reçu tout un document XML."
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Langue « %s » inconnue."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Photo"
|
msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Type de fichier inconnu"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Vous êtes déjà membre de ce groupe."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Chercher dans le contenu des avis"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7143,10 +7396,17 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Révoquer"
|
msgstr "Révoquer"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
#, fuzzy
|
||||||
|
msgid "Author element must contain a name element."
|
||||||
msgstr "l’élément « author » doit contenir un élément « name »."
|
msgstr "l’élément « author » doit contenir un élément « name »."
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Ne pas supprimer ce groupe"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7585,25 +7845,25 @@ msgstr ""
|
|||||||
"tracking - pas encore implémenté.\n"
|
"tracking - pas encore implémenté.\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Aucun fichier de configuration n’a été trouvé."
|
msgstr "Aucun fichier de configuration n’a été trouvé."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Les fichiers de configuration ont été cherchés aux emplacements suivants :"
|
"Les fichiers de configuration ont été cherchés aux emplacements suivants :"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème."
|
msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Aller au programme d’installation"
|
msgstr "Aller au programme d’installation"
|
||||||
|
|
||||||
@ -7705,6 +7965,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "Ami d’un ami"
|
msgstr "Ami d’un ami"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Tous les membres"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7890,11 +8163,6 @@ msgstr "Ce fichier est trop grand. La taille maximale est %s."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Transfert partiel."
|
msgstr "Transfert partiel."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Erreur système lors du transfert du fichier."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu."
|
msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu."
|
||||||
@ -8318,7 +8586,7 @@ msgstr ""
|
|||||||
"pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent "
|
"pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent "
|
||||||
"vous envoyer des messages destinés à vous seul(e)."
|
"vous envoyer des messages destinés à vous seul(e)."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "de"
|
msgstr "de"
|
||||||
|
|
||||||
@ -8350,40 +8618,6 @@ msgstr ""
|
|||||||
"Une erreur de base de données s’est produite pendant la sauvegarde de votre "
|
"Une erreur de base de données s’est produite pendant la sauvegarde de votre "
|
||||||
"fichier. Veuillez réessayer."
|
"fichier. Veuillez réessayer."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr "Le fichier importé dépasse le réglage upload_max_filesize de php.ini."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
"Le fichier importé dépasse le réglage MAX_FILE_SIZE qui a été précisé dans "
|
|
||||||
"le formulaire HTML."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "Le fichier n’a été que partiellement importé."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "Un dossier temporaire est manquant."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "Impossible d’écrire sur le disque."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "Import de fichier stoppé par une extension."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8404,7 +8638,7 @@ msgstr "Impossible de déterminer le type MIME du fichier."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8415,7 +8649,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur."
|
msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur."
|
||||||
@ -8448,19 +8682,19 @@ msgid "Send"
|
|||||||
msgstr "Envoyer"
|
msgstr "Envoyer"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Les pseudos ne peuvent contenir que des caractères minuscules et des "
|
"Les pseudos ne peuvent contenir que des caractères minuscules et des "
|
||||||
"chiffres, sans espaces."
|
"chiffres, sans espaces."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr "Le pseudonyme ne peut pas être vide."
|
msgstr "Le pseudonyme ne peut pas être vide."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8501,55 +8735,55 @@ msgstr ""
|
|||||||
"Veuillez réessayer plus tard."
|
"Veuillez réessayer plus tard."
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "S"
|
msgstr "S"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "E"
|
msgstr "E"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "O"
|
msgstr "O"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
|
msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "chez"
|
msgstr "chez"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "web"
|
msgstr "web"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "dans le contexte"
|
msgstr "dans le contexte"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Repris par"
|
msgstr "Repris par"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Répondre à cet avis"
|
msgstr "Répondre à cet avis"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Répondre"
|
msgstr "Répondre"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Avis repris"
|
msgstr "Avis repris"
|
||||||
|
|
||||||
@ -8703,7 +8937,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Révoquer le rôle « %s » de cet utilisateur"
|
msgstr "Révoquer le rôle « %s » de cet utilisateur"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Page non trouvée."
|
msgstr "Page non trouvée."
|
||||||
|
|
||||||
@ -9064,20 +9298,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr "XML invalide, racine XRD manquante."
|
msgstr "XML invalide, racine XRD manquante."
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr "Obtention de la sauvegarde depuis le fichier « %s »."
|
msgstr "Obtention de la sauvegarde depuis le fichier « %s »."
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] "%d entrée dans la sauvegarde."
|
|
||||||
msgstr[1] "%d entrées dans la sauvegarde."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -11,17 +11,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:44+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:49+0000\n"
|
||||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: gl\n"
|
"X-Language-Code: gl\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -279,7 +279,7 @@ msgstr "Actualizacións de %1$s e amigos en %2$s!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -326,7 +326,8 @@ msgstr "Non se puido actualizar o usuario."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -561,7 +562,7 @@ msgstr "Non se puido atopar o usuario de destino."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Ese alcume xa está en uso. Probe con outro."
|
msgstr "Ese alcume xa está en uso. Probe con outro."
|
||||||
@ -571,7 +572,7 @@ msgstr "Ese alcume xa está en uso. Probe con outro."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "O formato do alcume non é correcto."
|
msgstr "O formato do alcume non é correcto."
|
||||||
@ -583,7 +584,7 @@ msgstr "O formato do alcume non é correcto."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "O URL da páxina persoal non é correcto."
|
msgstr "O URL da páxina persoal non é correcto."
|
||||||
@ -593,7 +594,7 @@ msgstr "O URL da páxina persoal non é correcto."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -609,7 +610,7 @@ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -621,7 +622,7 @@ msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -634,7 +635,7 @@ msgstr "A localidade é longa de máis (o máximo son 255 caracteres)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -653,7 +654,7 @@ msgstr "Pseudónimo incorrecto: \"%s\"."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro."
|
msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro."
|
||||||
@ -662,7 +663,7 @@ msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "O pseudónimo non pode coincidir co alcume."
|
msgstr "O pseudónimo non pode coincidir co alcume."
|
||||||
|
|
||||||
@ -973,9 +974,10 @@ msgstr "Non pode repetir a súa propia nota."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Xa repetiu esa nota."
|
msgstr "Xa repetiu esa nota."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1067,7 +1069,7 @@ msgstr "%1$s actualizacións marcadas como favoritas por %2$s / %2$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Non se puido actualizar o grupo."
|
msgstr "Non se puido actualizar o grupo."
|
||||||
@ -1160,30 +1162,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Buscar nos contidos das notas"
|
msgstr "Buscar nos contidos das notas"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "Non hai ningunha nota con esa id."
|
msgstr "Non hai ningunha nota con esa id."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1194,7 +1196,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Método API en desenvolvemento."
|
msgstr "Método API en desenvolvemento."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Non se atopou o método da API."
|
msgstr "Non se atopou o método da API."
|
||||||
@ -1303,21 +1305,26 @@ msgstr "Non se atopou o método da API."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Non existe ese perfil."
|
msgstr "Non existe ese perfil."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Non está subscrito a ese perfil."
|
msgstr "Non está subscrito a ese perfil."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Non se puido borrar a subscrición a si mesmo."
|
msgstr "Non se puido borrar a subscrición a si mesmo."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1412,13 +1419,15 @@ msgid "Preview"
|
|||||||
msgstr "Vista previa"
|
msgstr "Vista previa"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Borrar"
|
msgstr "Borrar"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr "Cargar"
|
msgstr "Cargar"
|
||||||
@ -1459,6 +1468,38 @@ msgstr "Non se puido actualizar o avatar."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Borrouse o avatar."
|
msgstr "Borrouse o avatar."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Só os usuarios identificados poden repetir notas."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Fondo"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1665,6 +1706,77 @@ msgstr "Conversa"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Só os usuarios identificados poden repetir notas."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Non pode borrar usuarios."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Borrouse o avatar."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Crear unha conta"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Confirmar"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Non pode borrar usuarios."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Non pode borrar usuarios."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1817,7 +1929,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Non borrar esta nota"
|
msgstr "Non borrar esta nota"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Borrar esta nota"
|
msgstr "Borrar esta nota"
|
||||||
|
|
||||||
@ -2126,7 +2238,7 @@ msgstr "Utilice este formulario para editar o grupo."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Pseudónimo inválido: \"%s\""
|
msgstr "Pseudónimo inválido: \"%s\""
|
||||||
@ -2138,7 +2250,7 @@ msgstr "Non se puido actualizar o grupo."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Non se puideron crear os pseudónimos."
|
msgstr "Non se puideron crear os pseudónimos."
|
||||||
|
|
||||||
@ -3384,8 +3496,14 @@ msgstr "Non se puido crear a aplicación."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Novo grupo"
|
msgstr "Novo grupo"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Vostede non pertence a este grupo."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Utilice o seguinte formulario para crear un novo grupo."
|
msgstr "Utilice o seguinte formulario para crear un novo grupo."
|
||||||
|
|
||||||
@ -3707,11 +3825,6 @@ msgstr "Novo contrasinal"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "Seis ou máis caracteres"
|
msgstr "Seis ou máis caracteres"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Confirmar"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Igual ao contrasinal anterior"
|
msgstr "Igual ao contrasinal anterior"
|
||||||
@ -4245,6 +4358,12 @@ msgstr "Non se puideron gardar as etiquetas."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Gardouse a configuración."
|
msgstr "Gardouse a configuración."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Crear unha conta"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4720,7 +4839,7 @@ msgstr "Non pode repetir a súa propia nota."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Xa repetiu esa nota."
|
msgstr "Xa repetiu esa nota."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Repetida"
|
msgstr "Repetida"
|
||||||
|
|
||||||
@ -4786,6 +4905,95 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Respostas a %1$s en %2$s!"
|
msgstr "Respostas a %1$s en %2$s!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Só os usuarios identificados poden repetir notas."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Aínda non rexistrou ningunha aplicación."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Cargar un ficheiro"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
"O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no "
|
||||||
|
"formulario HTML."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "O ficheiro só se subiu parcialmente."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "Falta un cartafol temporal."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "Non se puido escribir o ficheiro no disco."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "Interrompeuse a carga do ficheiro por mor da extensión."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Houbo un erro no sistema ao cargar o ficheiro."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Todos os membros"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Cargar un ficheiro"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "Non pode revogar os roles dos usuarios neste sitio."
|
msgstr "Non pode revogar os roles dos usuarios neste sitio."
|
||||||
@ -4886,7 +5094,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr "Restablecer o contrasinal ou a pregunta secreta"
|
msgstr "Restablecer o contrasinal ou a pregunta secreta"
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Borrar"
|
msgstr "Borrar"
|
||||||
|
|
||||||
@ -6177,13 +6385,13 @@ msgid "Author(s)"
|
|||||||
msgstr "Autores"
|
msgstr "Autores"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Marcar como favorito"
|
msgstr "Marcar como favorito"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%1$s marcou a nota %2$s como favorita"
|
msgstr "%1$s marcou a nota %2$s como favorita"
|
||||||
@ -6296,7 +6504,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Non se puido crear un pase de sesión para %s"
|
msgstr "Non se puido crear un pase de sesión para %s"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "Non se atopou por ningures o nome da base de datos ou DSN."
|
msgstr "Non se atopou por ningures o nome da base de datos ou DSN."
|
||||||
|
|
||||||
@ -6323,23 +6531,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "Non existe tal perfil (%1$d) para a nota (%2$d)."
|
msgstr "Non existe tal perfil (%1$d) para a nota (%2$d)."
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Houbo un erro na base de datos ao intentar inserir a etiqueta: %s"
|
msgstr "Houbo un erro na base de datos ao intentar inserir a etiqueta: %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Houbo un problema ao gardar a nota. É longa de máis."
|
msgstr "Houbo un problema ao gardar a nota. É longa de máis."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Houbo un problema ao gardar a nota. Descoñécese o usuario."
|
msgstr "Houbo un problema ao gardar a nota. Descoñécese o usuario."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6347,7 +6555,7 @@ msgstr ""
|
|||||||
"publicar nuns minutos."
|
"publicar nuns minutos."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6356,43 +6564,43 @@ msgstr ""
|
|||||||
"publicar nuns minutos."
|
"publicar nuns minutos."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Prohibíuselle publicar notas neste sitio de momento."
|
msgstr "Prohibíuselle publicar notas neste sitio de momento."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Houbo un problema ao gardar a nota."
|
msgstr "Houbo un problema ao gardar a nota."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr "O tipo dado para saveKnownGroups era incorrecto"
|
msgstr "O tipo dado para saveKnownGroups era incorrecto"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
|
msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Non se puido gardar a resposta a %1$d, %2$d."
|
msgstr "Non se puido gardar a resposta a %1$d, %2$d."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6400,7 +6608,7 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6408,7 +6616,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6479,32 +6687,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Benvido a %1$s, @%2$s!"
|
msgstr "Benvido a %1$s, @%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "Non se estableceu ningún usuario único para o modo de usuario único."
|
msgstr "Non se estableceu ningún usuario único para o modo de usuario único."
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Non se puido crear o grupo."
|
msgstr "Non se puido crear o grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Non se puido establecer o URI do grupo."
|
msgstr "Non se puido establecer o URI do grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Non se puido establecer a pertenza ao grupo."
|
msgstr "Non se puido establecer a pertenza ao grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Non se puido gardar a información do grupo local."
|
msgstr "Non se puido gardar a información do grupo local."
|
||||||
|
|
||||||
@ -6845,10 +7053,56 @@ msgid "Expecting a root feed element but got a whole XML document."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo."
|
"Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo."
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Non se coñece a lingua \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Fotografía"
|
msgstr "Introduza o nome do usuario ao que quere subscribirse."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Non se coñece o tipo de ficheiro"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Xa forma parte dese grupo."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Buscar nos contidos das notas"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7136,10 +7390,17 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Revogar"
|
msgstr "Revogar"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
#, fuzzy
|
||||||
|
msgid "Author element must contain a name element."
|
||||||
msgstr "o elemento \"autor\" debe conter un nome."
|
msgstr "o elemento \"autor\" debe conter un nome."
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Non borrar esta nota"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7575,26 +7836,26 @@ msgstr ""
|
|||||||
"tracking - aínda non se integrou\n"
|
"tracking - aínda non se integrou\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Non se atopou ningún ficheiro de configuración. "
|
msgstr "Non se atopou ningún ficheiro de configuración. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: "
|
msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "Pode que queira executar o instalador para arranxalo."
|
msgstr "Pode que queira executar o instalador para arranxalo."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Ir ao instalador."
|
msgstr "Ir ao instalador."
|
||||||
|
|
||||||
@ -7702,6 +7963,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "Amigo dun amigo"
|
msgstr "Amigo dun amigo"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Todos os membros"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7890,11 +8164,6 @@ msgstr "Ese ficheiro é grande de máis. O tamaño máximo por ficheiro son %s."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Carga parcial."
|
msgstr "Carga parcial."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Houbo un erro no sistema ao cargar o ficheiro."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "O ficheiro está mal ou non é unha imaxe."
|
msgstr "O ficheiro está mal ou non é unha imaxe."
|
||||||
@ -8315,7 +8584,7 @@ msgstr ""
|
|||||||
"Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con "
|
"Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con "
|
||||||
"outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede."
|
"outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "de"
|
msgstr "de"
|
||||||
|
|
||||||
@ -8346,40 +8615,6 @@ msgid "There was a database error while saving your file. Please try again."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Houbo un erro na base de datos ao gardar o seu ficheiro. Volva intentalo."
|
"Houbo un erro na base de datos ao gardar o seu ficheiro. Volva intentalo."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
"O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no "
|
|
||||||
"formulario HTML."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "O ficheiro só se subiu parcialmente."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "Falta un cartafol temporal."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "Non se puido escribir o ficheiro no disco."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "Interrompeuse a carga do ficheiro por mor da extensión."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8400,7 +8635,7 @@ msgstr "Non se puido determinar o tipo MIME do ficheiro."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8411,7 +8646,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"."
|
msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"."
|
||||||
@ -8446,19 +8681,19 @@ msgid "Send"
|
|||||||
msgstr "Enviar"
|
msgstr "Enviar"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O alcume debe ter só letras en minúscula e números, e non pode ter espazos "
|
"O alcume debe ter só letras en minúscula e números, e non pode ter espazos "
|
||||||
"en branco."
|
"en branco."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8499,55 +8734,55 @@ msgstr ""
|
|||||||
"intentar máis tarde"
|
"intentar máis tarde"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "S"
|
msgstr "S"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "L"
|
msgstr "L"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "O"
|
msgstr "O"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "en"
|
msgstr "en"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "web"
|
msgstr "web"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "no contexto"
|
msgstr "no contexto"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Repetida por"
|
msgstr "Repetida por"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Responder a esta nota"
|
msgstr "Responder a esta nota"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Responder"
|
msgstr "Responder"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Repetiuse a nota"
|
msgstr "Repetiuse a nota"
|
||||||
|
|
||||||
@ -8701,7 +8936,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Revogarlle o rol \"%s\" a este usuario"
|
msgstr "Revogarlle o rol \"%s\" a este usuario"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Non se atopou o método da API."
|
msgstr "Non se atopou o método da API."
|
||||||
@ -9060,20 +9295,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, fuzzy, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] "%d entradas na reserva."
|
|
||||||
msgstr[1] "%d entradas na reserva."
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -12,13 +12,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:54+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:51+0000\n"
|
||||||
"Language-Team: Hungarian <http://translatewiki.net/wiki/Portal:hu>\n"
|
"Language-Team: Hungarian <http://translatewiki.net/wiki/Portal:hu>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: hu\n"
|
"X-Language-Code: hu\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
@ -278,7 +278,7 @@ msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -323,7 +323,8 @@ msgstr "Nem sikerült frissíteni a felhasználót."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -555,7 +556,7 @@ msgstr "A cél felhasználó nem található."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "A becenév már foglalt. Próbálj meg egy másikat."
|
msgstr "A becenév már foglalt. Próbálj meg egy másikat."
|
||||||
@ -565,7 +566,7 @@ msgstr "A becenév már foglalt. Próbálj meg egy másikat."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Nem érvényes becenév."
|
msgstr "Nem érvényes becenév."
|
||||||
@ -577,7 +578,7 @@ msgstr "Nem érvényes becenév."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "A honlap érvénytelen URL-cím."
|
msgstr "A honlap érvénytelen URL-cím."
|
||||||
@ -587,7 +588,7 @@ msgstr "A honlap érvénytelen URL-cím."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -603,7 +604,7 @@ msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -615,7 +616,7 @@ msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -628,7 +629,7 @@ msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -647,7 +648,7 @@ msgstr "Érvénytelen álnév: „%s”."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat."
|
msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat."
|
||||||
@ -656,7 +657,7 @@ msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "Az álnév nem egyezhet meg a becenévvel."
|
msgstr "Az álnév nem egyezhet meg a becenévvel."
|
||||||
|
|
||||||
@ -961,9 +962,10 @@ msgstr "Nem ismételheted meg a saját híredet."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Már megismételted azt a hírt."
|
msgstr "Már megismételted azt a hírt."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1053,7 +1055,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Nem sikerült a csoport frissítése."
|
msgstr "Nem sikerült a csoport frissítése."
|
||||||
@ -1145,30 +1147,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Keressünk a hírek tartalmában"
|
msgstr "Keressünk a hírek tartalmában"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1179,7 +1181,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Az API-metódus fejlesztés alatt áll."
|
msgstr "Az API-metódus fejlesztés alatt áll."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Az API-metódus nem található."
|
msgstr "Az API-metódus nem található."
|
||||||
@ -1269,9 +1271,8 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Nem sikerült törölni a kedvencet."
|
msgstr "Nem sikerült törölni a kedvencet."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Nincs ilyen csoport."
|
msgstr "Nincs ilyen csoport"
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:90
|
#: actions/atompubshowmembership.php:90
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1287,21 +1288,27 @@ msgstr "Az API-metódus nem található."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Nincs ilyen profil."
|
msgstr "Nincs ilyen profil."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Senkinek sem iratkoztál fel a híreire."
|
msgstr "Senkinek sem iratkoztál fel a híreire."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
msgid "Can't delete someone else's subscription"
|
#: actions/atompubshowsubscription.php:157
|
||||||
msgstr ""
|
#, fuzzy
|
||||||
|
msgid "Cannot delete someone else's subscription"
|
||||||
|
msgstr "Nem sikerült törölni a kedvencet."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -1393,14 +1400,16 @@ msgid "Preview"
|
|||||||
msgstr "Előnézet"
|
msgstr "Előnézet"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Törlés"
|
msgstr "Törlés"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1443,6 +1452,38 @@ msgstr "Nem sikerült felölteni az avatart."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Avatar törölve."
|
msgstr "Avatar törölve."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Csak a felhasználó láthatja a saját postaládáját."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Háttér"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1647,6 +1688,77 @@ msgstr "Beszélgetés"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Hírek"
|
msgstr "Hírek"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Csak a felhasználó láthatja a saját postaládáját."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Nem törölhetsz felhasználókat."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Avatar törölve."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Felhasználó törlése"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Megerősítés"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Nem törölhetsz felhasználókat."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Nem törölhetsz felhasználókat."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1795,7 +1907,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Ne töröljük ezt a hírt"
|
msgstr "Ne töröljük ezt a hírt"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Töröljük ezt a hírt"
|
msgstr "Töröljük ezt a hírt"
|
||||||
|
|
||||||
@ -2101,7 +2213,7 @@ msgstr "Ezen űrlap segítségével szerkesztheted a csoportot."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Érvénytelen álnév: „%s”"
|
msgstr "Érvénytelen álnév: „%s”"
|
||||||
@ -2113,7 +2225,7 @@ msgstr "Nem sikerült a csoport frissítése."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Nem sikerült létrehozni az álneveket."
|
msgstr "Nem sikerült létrehozni az álneveket."
|
||||||
|
|
||||||
@ -3296,8 +3408,14 @@ msgstr "Nem sikerült létrehozni az alkalmazást."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Új csoport"
|
msgstr "Új csoport"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Nem vagy tagja ennek a csoportnak."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Ezen az űrlapon tudsz új csoportot létrehozni."
|
msgstr "Ezen az űrlapon tudsz új csoportot létrehozni."
|
||||||
|
|
||||||
@ -3606,11 +3724,6 @@ msgstr "Új jelszó"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 vagy több karakter"
|
msgstr "6 vagy több karakter"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Megerősítés"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Ugyanaz mint a fenti jelszó"
|
msgstr "Ugyanaz mint a fenti jelszó"
|
||||||
@ -4148,6 +4261,11 @@ msgstr "Nem sikerült a címkéket elmenteni."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "A beállításokat elmentettük."
|
msgstr "A beállításokat elmentettük."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4578,7 +4696,7 @@ msgstr ""
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4638,6 +4756,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Csak a felhasználó láthatja a saját postaládáját."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Nem törölheted más felhasználók állapotait."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Fájl feltöltése"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "A feltöltött fájl csak részben van feltöltve."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "Hiányzik egy ideiglenes mappa."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "Nem sikerült a fájlt lemezre írni."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "A fájl feltöltése megszakadt a kiterjedése/kiterjesztése miatt."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Összes tag"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Fájl feltöltése"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -4738,7 +4943,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Törlés"
|
msgstr "Törlés"
|
||||||
|
|
||||||
@ -5951,13 +6156,13 @@ msgid "Author(s)"
|
|||||||
msgstr "Szerző(k)"
|
msgstr "Szerző(k)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Kedvelem"
|
msgstr "Kedvelem"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
|
msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
|
||||||
@ -6064,7 +6269,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6091,71 +6296,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Probléma merült fel a hír mentése közben."
|
msgstr "Probléma merült fel a hír mentése közben."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Nem sikerült menteni a profilt."
|
msgstr "Nem sikerült menteni a profilt."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6163,14 +6368,14 @@ msgstr "%1$s - %2$s"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6240,32 +6445,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Nem sikerült létrehozni a csoportot."
|
msgstr "Nem sikerült létrehozni a csoportot."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Nem sikerült beállítani a csoporttagságot."
|
msgstr "Nem sikerült beállítani a csoporttagságot."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6595,10 +6800,56 @@ msgstr "Előtte"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Ismeretlen nyelv: \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Fénykép"
|
msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Ismeretlen fájltípus"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Már tagja vagy ennek a csoportnak."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Keressünk a hírek tartalmában"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -6881,10 +7132,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Ne töröljük ezt a hírt"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7274,26 +7531,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Nem találtunk konfigurációs fájlt. "
|
msgstr "Nem találtunk konfigurációs fájlt. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "A következő helyeken kerestem konfigurációs fájlokat: "
|
msgstr "A következő helyeken kerestem konfigurációs fájlokat: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "A telepítő futtatása kijavíthatja ezt."
|
msgstr "A telepítő futtatása kijavíthatja ezt."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Menj a telepítőhöz."
|
msgstr "Menj a telepítőhöz."
|
||||||
|
|
||||||
@ -7398,6 +7655,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Összes tag"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7584,11 +7854,6 @@ msgstr "Az a fájl túl nagy. A maximális fájlméret %s."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Részleges feltöltés."
|
msgstr "Részleges feltöltés."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7973,7 +8238,7 @@ msgstr ""
|
|||||||
"keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit "
|
"keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit "
|
||||||
"csak te láthatsz."
|
"csak te láthatsz."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "írta"
|
msgstr "írta"
|
||||||
|
|
||||||
@ -8003,38 +8268,6 @@ msgstr "Nem támogatott üzenet-típus: %s"
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr "Adatbázis-hiba történt a fájlod elmentése közben. Kérlek próbáld újra."
|
msgstr "Adatbázis-hiba történt a fájlod elmentése közben. Kérlek próbáld újra."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "A feltöltött fájl csak részben van feltöltve."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "Hiányzik egy ideiglenes mappa."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "Nem sikerült a fájlt lemezre írni."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "A fájl feltöltése megszakadt a kiterjedése/kiterjesztése miatt."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8055,7 +8288,7 @@ msgstr "Nem sikerült a fájl MIME-típusát megállapítani."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8064,7 +8297,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8099,17 +8332,17 @@ msgid "Send"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül."
|
msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8148,55 +8381,55 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "É"
|
msgstr "É"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "D"
|
msgstr "D"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "K"
|
msgstr "K"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "Ny"
|
msgstr "Ny"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "előzmény"
|
msgstr "előzmény"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Megismételte:"
|
msgstr "Megismételte:"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Válaszoljunk erre a hírre"
|
msgstr "Válaszoljunk erre a hírre"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Válasz"
|
msgstr "Válasz"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "A hírt megismételtük"
|
msgstr "A hírt megismételtük"
|
||||||
|
|
||||||
@ -8350,7 +8583,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Az API-metódus nem található."
|
msgstr "Az API-metódus nem található."
|
||||||
@ -8699,20 +8932,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -9,17 +9,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:10:57+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:55+0000\n"
|
||||||
"Language-Team: Icelandic <http://translatewiki.net/wiki/Portal:is>\n"
|
"Language-Team: Icelandic <http://translatewiki.net/wiki/Portal:is>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: is\n"
|
"X-Language-Code: is\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -278,7 +278,7 @@ msgstr "Færslur frá %1$s og vinum á %2$s!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -325,7 +325,8 @@ msgstr "Gat ekki uppfært notanda."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -566,7 +567,7 @@ msgstr "Gat ekki uppfært notanda."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
||||||
@ -576,7 +577,7 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Ekki tækt stuttnefni."
|
msgstr "Ekki tækt stuttnefni."
|
||||||
@ -588,7 +589,7 @@ msgstr "Ekki tækt stuttnefni."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Heimasíða er ekki gild vefslóð."
|
msgstr "Heimasíða er ekki gild vefslóð."
|
||||||
@ -598,7 +599,7 @@ msgstr "Heimasíða er ekki gild vefslóð."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -614,7 +615,7 @@ msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -626,7 +627,7 @@ msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -639,7 +640,7 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -658,7 +659,7 @@ msgstr "Ógilt merki: \"%s\""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
||||||
@ -667,7 +668,7 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -980,9 +981,10 @@ msgstr "Get ekki kveikt á tilkynningum."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Get ekki eytt þessu babli."
|
msgstr "Get ekki eytt þessu babli."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1071,7 +1073,7 @@ msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Gat ekki uppfært hóp."
|
msgstr "Gat ekki uppfært hóp."
|
||||||
@ -1164,30 +1166,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Finna innihald babls"
|
msgstr "Finna innihald babls"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "Enginn persónuleg síða með þessu einkenni."
|
msgstr "Enginn persónuleg síða með þessu einkenni."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1198,7 +1200,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Aðferð í forritsskilum er í þróun."
|
msgstr "Aðferð í forritsskilum er í þróun."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Aðferð í forritsskilum fannst ekki!"
|
msgstr "Aðferð í forritsskilum fannst ekki!"
|
||||||
|
|
||||||
@ -1289,7 +1291,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Gat ekki eytt uppáhaldi."
|
msgstr "Gat ekki eytt uppáhaldi."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Enginn þannig hópur."
|
msgstr "Enginn þannig hópur."
|
||||||
|
|
||||||
@ -1307,21 +1308,26 @@ msgstr "Aðferð í forritsskilum fannst ekki!"
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Ekkert svoleiðis babl."
|
msgstr "Ekkert svoleiðis babl."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Þú ert ekki áskrifandi."
|
msgstr "Þú ert ekki áskrifandi."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Gat ekki vistað áskrift."
|
msgstr "Gat ekki vistað áskrift."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1415,14 +1421,16 @@ msgid "Preview"
|
|||||||
msgstr "Forsýn"
|
msgstr "Forsýn"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Eyða"
|
msgstr "Eyða"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1468,6 +1476,37 @@ msgstr "Mistókst að uppfæra mynd"
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Mynd hefur verið uppfærð."
|
msgstr "Mynd hefur verið uppfærð."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1678,6 +1717,77 @@ msgstr "Staðfestingarlykill"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Babl"
|
msgstr "Babl"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Gat ekki uppfært notanda."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Mynd hefur verið uppfærð."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Búa til nýjan hóp"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Staðfesta"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Gat ekki uppfært notanda."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Gat ekki uppfært notanda."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1828,7 +1938,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Get ekki eytt þessu babli."
|
msgstr "Get ekki eytt þessu babli."
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Eyða þessu babli"
|
msgstr "Eyða þessu babli"
|
||||||
|
|
||||||
@ -2154,7 +2264,7 @@ msgstr "Notaðu þetta eyðublað til að breyta hópnum."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Ógilt merki: \"%s\""
|
msgstr "Ógilt merki: \"%s\""
|
||||||
@ -2166,7 +2276,7 @@ msgstr "Gat ekki uppfært hóp."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Gat ekki búið til uppáhald."
|
msgstr "Gat ekki búið til uppáhald."
|
||||||
@ -3425,8 +3535,14 @@ msgstr "Gat ekki búið til uppáhald."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Nýr hópur"
|
msgstr "Nýr hópur"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp."
|
msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp."
|
||||||
|
|
||||||
@ -3753,11 +3869,6 @@ msgstr "Nýtt lykilorð"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 eða fleiri tákn"
|
msgstr "6 eða fleiri tákn"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Staðfesta"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Sama og lykilorðið hér fyrir ofan"
|
msgstr "Sama og lykilorðið hér fyrir ofan"
|
||||||
@ -4299,6 +4410,12 @@ msgstr "Gat ekki vistað merki."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Stillingar vistaðar."
|
msgstr "Stillingar vistaðar."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Búa til nýjan hóp"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4761,7 +4878,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Þú hefur nú þegar lokað á þennan notanda."
|
msgstr "Þú hefur nú þegar lokað á þennan notanda."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Í sviðsljósinu"
|
msgstr "Í sviðsljósinu"
|
||||||
@ -4822,6 +4939,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Skilaboð til %1$s á %2$s"
|
msgstr "Skilaboð til %1$s á %2$s"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Hlaða upp"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Kerfisvilla kom upp við upphal skráar."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Allir meðlimir"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Hlaða upp"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
|
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
|
||||||
@ -4930,7 +5134,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Eyða"
|
msgstr "Eyða"
|
||||||
|
|
||||||
@ -6187,13 +6391,13 @@ msgid "Author(s)"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Uppáhald"
|
msgstr "Uppáhald"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér."
|
msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér."
|
||||||
@ -6305,7 +6509,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Gat ekki búið til uppáhald."
|
msgstr "Gat ekki búið til uppáhald."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6333,24 +6537,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Villa kom upp við að setja inn mynd"
|
msgstr "Villa kom upp við að setja inn mynd"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Vandamál komu upp við að vista babl."
|
msgstr "Vandamál komu upp við að vista babl."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Gat ekki vistað babl. Óþekktur notandi."
|
msgstr "Gat ekki vistað babl. Óþekktur notandi."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6358,7 +6562,7 @@ msgstr ""
|
|||||||
"mínútur."
|
"mínútur."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
@ -6368,43 +6572,43 @@ msgstr ""
|
|||||||
"mínútur."
|
"mínútur."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
|
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Vandamál komu upp við að vista babl."
|
msgstr "Vandamál komu upp við að vista babl."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Vandamál komu upp við að vista babl."
|
msgstr "Vandamál komu upp við að vista babl."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Gat ekki vistað áskrift."
|
msgstr "Gat ekki vistað áskrift."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6412,14 +6616,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6493,32 +6697,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "Skilaboð til %1$s á %2$s"
|
msgstr "Skilaboð til %1$s á %2$s"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Gat ekki búið til hóp."
|
msgstr "Gat ekki búið til hóp."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Gat ekki búið til hóp."
|
msgstr "Gat ekki búið til hóp."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Gat ekki skráð hópmeðlimi."
|
msgstr "Gat ekki skráð hópmeðlimi."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Gat ekki vistað áskrift."
|
msgstr "Gat ekki vistað áskrift."
|
||||||
@ -6869,10 +7073,56 @@ msgstr "Áður"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Óþekkt skráargerð"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Ljósmynd"
|
msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Óþekkt skráargerð"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Þú ert nú þegar meðlimur í þessum hópi"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Finna innihald babls"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7173,10 +7423,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Endurheimta"
|
msgstr "Endurheimta"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Get ekki eytt þessu babli."
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7577,26 +7833,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Enginn staðfestingarlykill."
|
msgstr "Enginn staðfestingarlykill."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "Boðskort sent á eftirfarandi aðila:"
|
msgstr "Boðskort sent á eftirfarandi aðila:"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Skrá þig inn á síðuna"
|
msgstr "Skrá þig inn á síðuna"
|
||||||
@ -7703,6 +7959,19 @@ msgstr ""
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Allir meðlimir"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7886,11 +8155,6 @@ msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Upphal að hluta til."
|
msgstr "Upphal að hluta til."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Kerfisvilla kom upp við upphal skráar."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð."
|
msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð."
|
||||||
@ -8215,7 +8479,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "frá"
|
msgstr "frá"
|
||||||
@ -8246,38 +8510,6 @@ msgstr "Skráarsnið myndar ekki stutt."
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8299,7 +8531,7 @@ msgstr "Gat ekki eytt uppáhaldi."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8308,7 +8540,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8344,17 +8576,17 @@ msgid "Send"
|
|||||||
msgstr "Senda"
|
msgstr "Senda"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil."
|
msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8395,58 +8627,58 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "Nei"
|
msgstr "Nei"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "Ekkert innihald!"
|
msgstr "Ekkert innihald!"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Í sviðsljósinu"
|
msgstr "Í sviðsljósinu"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Svara þessu babli"
|
msgstr "Svara þessu babli"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Svara"
|
msgstr "Svara"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Babl sent inn"
|
msgstr "Babl sent inn"
|
||||||
@ -8606,7 +8838,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Aðferð í forritsskilum fannst ekki!"
|
msgstr "Aðferð í forritsskilum fannst ekki!"
|
||||||
@ -8969,21 +9201,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Engin persónuleg síða tilgreind"
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -9,17 +9,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:01+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:58+0000\n"
|
||||||
"Language-Team: Georgian <http://translatewiki.net/wiki/Portal:ka>\n"
|
"Language-Team: Georgian <http://translatewiki.net/wiki/Portal:ka>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ka\n"
|
"X-Language-Code: ka\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -275,7 +275,7 @@ msgstr " %1$s და მეგობრების განახლებე
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -322,7 +322,8 @@ msgstr "მომხმარებლის განახლება ვე
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -550,7 +551,7 @@ msgstr "სასურველი მომხმარებელი ვე
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა."
|
msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა."
|
||||||
@ -560,7 +561,7 @@ msgstr "მეტსახელი უკვე გამოყენებუ
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "მეტსახელი არასწორია."
|
msgstr "მეტსახელი არასწორია."
|
||||||
@ -572,7 +573,7 @@ msgstr "მეტსახელი არასწორია."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "სასტარტო გვერდი არასწორი URL-ია."
|
msgstr "სასტარტო გვერდი არასწორი URL-ია."
|
||||||
@ -582,7 +583,7 @@ msgstr "სასტარტო გვერდი არასწორი URL
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -598,7 +599,7 @@ msgstr "სრული სახელი ძალიან გრძელი
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -609,7 +610,7 @@ msgstr[0] "აღწერა ძალიან გრძელია (არ
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -622,7 +623,7 @@ msgstr "ადგილმდებარეობა ძალიან გრ
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -640,7 +641,7 @@ msgstr ""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -649,7 +650,7 @@ msgstr ""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -956,9 +957,10 @@ msgstr "საკუთარი შეტყობინების გამ
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "ეს შეტყობინება უკვე გამეორებულია."
|
msgstr "ეს შეტყობინება უკვე გამეორებულია."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1044,7 +1046,7 @@ msgstr "განახლებები არჩეული %1$s-ს მი
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "ჯგუფის განახლება ვერ მოხერხდა."
|
msgstr "ჯგუფის განახლება ვერ მოხერხდა."
|
||||||
@ -1137,30 +1139,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "მოძებნე შეტყობინებებში"
|
msgstr "მოძებნე შეტყობინებებში"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "შეტყობინებები ამ ID-თ არ არსებობს."
|
msgstr "შეტყობინებები ამ ID-თ არ არსებობს."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1171,7 +1173,7 @@ msgid "API method under construction."
|
|||||||
msgstr "API მეთოდი დამუშავების პროცესშია."
|
msgstr "API მეთოდი დამუშავების პროცესშია."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "API მეთოდი ვერ მოიძებნა."
|
msgstr "API მეთოდი ვერ მოიძებნა."
|
||||||
@ -1278,21 +1280,26 @@ msgstr "API მეთოდი ვერ მოიძებნა."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "ასეთი პროფილი არ არსებობს."
|
msgstr "ასეთი პროფილი არ არსებობს."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები."
|
msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "საკუთარი გამოწერის წაშლა ვერ ხერხდება."
|
msgstr "საკუთარი გამოწერის წაშლა ვერ ხერხდება."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1386,14 +1393,16 @@ msgid "Preview"
|
|||||||
msgstr "წინასწარი გადახედვა"
|
msgstr "წინასწარი გადახედვა"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "წაშლა"
|
msgstr "წაშლა"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1436,6 +1445,38 @@ msgstr "ავატარის განახლება ვერ მოხ
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "ავატარი წაიშალა."
|
msgstr "ავატარი წაიშალა."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "ფონი"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1640,6 +1681,77 @@ msgstr "საუბარი"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "შეტყობინებები"
|
msgstr "შეტყობინებები"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "ავატარი წაიშალა."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "გახსენი ანგარიში"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "ვადასტურებ"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1790,7 +1902,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "არ წაშალო ეს შეტყობინება"
|
msgstr "არ წაშალო ეს შეტყობინება"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "შეტყობინების წაშლა"
|
msgstr "შეტყობინების წაშლა"
|
||||||
|
|
||||||
@ -2099,7 +2211,7 @@ msgstr "ჯგუფის რედაქტირებისათვის
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2111,7 +2223,7 @@ msgstr "ჯგუფის განახლება ვერ მოხერ
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3343,8 +3455,14 @@ msgstr "აპლიკაციის შექმნა ვერ მოხე
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "ახალი ჯგუფი"
|
msgstr "ახალი ჯგუფი"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "თვენ არ ხართ ამ ჯგუფის წევრი."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "ახალი ჯგუფის შესაქმნელად გამოიყენეთ ეს ფორმა."
|
msgstr "ახალი ჯგუფის შესაქმნელად გამოიყენეთ ეს ფორმა."
|
||||||
|
|
||||||
@ -3661,11 +3779,6 @@ msgstr "ახალი პაროლი"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 ან მეტი სიმბოლო"
|
msgstr "6 ან მეტი სიმბოლო"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "ვადასტურებ"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "იგივე რაც ზედა პაროლი"
|
msgstr "იგივე რაც ზედა პაროლი"
|
||||||
@ -4195,6 +4308,12 @@ msgstr "სანიშნეების შენახვა ვერ მო
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "პარამეტრები შენახულია."
|
msgstr "პარამეტრები შენახულია."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "გახსენი ანგარიში"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4656,7 +4775,7 @@ msgstr "საკუთარი შეტყობინების გამ
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება."
|
msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "გამეორებული"
|
msgstr "გამეორებული"
|
||||||
|
|
||||||
@ -4720,6 +4839,96 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "პასუხები %1$s–ს %2$s–ზე!"
|
msgstr "პასუხები %1$s–ს %2$s–ზე!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "თქვენ ჯერჯერობით არცერთი აპლიკაცია არ დაგირეგისტრირებიათ."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "ფაილის ატვირთვა"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
"ასატვირთი ფაილი სცდება ფაილის დაშვებულ ზომას. upload_max_filesize დირექტივა "
|
||||||
|
"php.ini-ში."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
"ასატვირთი ფაილი სცდება MAX_FILE_SIZE დირექტივას, რომელიც მითითებული იყო HTML "
|
||||||
|
"ფორმაში."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "ასატვირთი ფაილი მხოლოდ ნაწილობრივ აიტვირთა."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "დროებითი საქაღალდე ვერ მოიძებნა."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "ფაილის დისკზე ჩაწერა ვერ მოხერხდა."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "ფაილის არვირთვა გაჩერდა გაფართოების გამო."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "სისტემური შეცდომა ფაილის ატვირთვისას."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "ფაილის ატვირთვა"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "თქვენ არ შეგიძლიათ მომხმარებლის როლის გაუქმება ამ საიტზე."
|
msgstr "თქვენ არ შეგიძლიათ მომხმარებლის როლის გაუქმება ამ საიტზე."
|
||||||
@ -4820,7 +5029,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr "გასაღების და საიდუმლოს გადაყენება"
|
msgstr "გასაღების და საიდუმლოს გადაყენება"
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "წაშლა"
|
msgstr "წაშლა"
|
||||||
|
|
||||||
@ -6083,13 +6292,13 @@ msgid "Author(s)"
|
|||||||
msgstr "ავტორი(ები)"
|
msgstr "ავტორი(ები)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "რჩეული"
|
msgstr "რჩეული"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში"
|
msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში"
|
||||||
@ -6198,7 +6407,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "შესასვლელი ტოკენის შექმნა %s-სთვის ვერ მოხერხდა."
|
msgstr "შესასვლელი ტოკენის შექმნა %s-სთვის ვერ მოხერხდა."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "ბაზის სახელი ან DSN ვერსად ვერ მოიძებნა."
|
msgstr "ბაზის სახელი ან DSN ვერსად ვერ მოიძებნა."
|
||||||
|
|
||||||
@ -6225,23 +6434,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "ასეთი პროფილი (%1$d) შეტყობინებისათვის (%2$d) არ არსებობს."
|
msgstr "ასეთი პროფილი (%1$d) შეტყობინებისათვის (%2$d) არ არსებობს."
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "ბაზის შეცდომა hashtag-ის ჩასმისას: %s"
|
msgstr "ბაზის შეცდომა hashtag-ის ჩასმისას: %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "პრობლემა შეტყობინების შენახვისას. ძალიან გრძელია."
|
msgstr "პრობლემა შეტყობინების შენახვისას. ძალიან გრძელია."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "პრობლემა შეტყობინების შენახვისას. მომხმარებელი უცნობია."
|
msgstr "პრობლემა შეტყობინების შენახვისას. მომხმარებელი უცნობია."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6249,7 +6458,7 @@ msgstr ""
|
|||||||
"კიდევ დაპოსტეთ."
|
"კიდევ დაპოსტეთ."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6258,43 +6467,43 @@ msgstr ""
|
|||||||
"რამდენიმე წუთში ისევ დაპოსტეთ."
|
"რამდენიმე წუთში ისევ დაპოსტეთ."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "თქვენ აგეკრძალათ ამ საიტზე შეტყობინებების დაპოსტვა."
|
msgstr "თქვენ აგეკრძალათ ამ საიტზე შეტყობინებების დაპოსტვა."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "პრობლემა შეტყობინების შენახვისას."
|
msgstr "პრობლემა შეტყობინების შენახვისას."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული"
|
msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას."
|
msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
|
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6302,7 +6511,7 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6310,7 +6519,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6382,32 +6591,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!"
|
msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის."
|
msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის."
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "ჯგუფის შექმნა ვერ მოხერხდა."
|
msgstr "ჯგუფის შექმნა ვერ მოხერხდა."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "ჯგუფის URI-ს მინიჭება ვერ მოხერხდა."
|
msgstr "ჯგუფის URI-ს მინიჭება ვერ მოხერხდა."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "ჯგუფის წევრობის მინიჭება ვერ მოხერხდა."
|
msgstr "ჯგუფის წევრობის მინიჭება ვერ მოხერხდა."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
|
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
|
||||||
|
|
||||||
@ -6743,10 +6952,56 @@ msgstr "წინა"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "უცნობი ენა \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "ფოტო"
|
msgstr "მიუთითეთ მომხმარებლის სახელი, რომელსაც გინდათ ყური დაუგდოთ."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "ფაილის ტიპი უცნობია"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "მოძებნე შეტყობინებებში"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7032,10 +7287,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "უკუგება"
|
msgstr "უკუგება"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "არ წაშალო ეს შეტყობინება"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7426,26 +7687,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "კონფიგურაციის ფაილი ვერ მოიძებნა. "
|
msgstr "კონფიგურაციის ფაილი ვერ მოიძებნა. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "კონფიგურაციის ფაილები შემდეგ ადგილებში ვეძებე: "
|
msgstr "კონფიგურაციის ფაილები შემდეგ ადგილებში ვეძებე: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "თუ გინდათ ინსტალატორი გაუშვით ამის გასასწორებლად."
|
msgstr "თუ გინდათ ინსტალატორი გაუშვით ამის გასასწორებლად."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "გადადი ამ ინსტალატორზე."
|
msgstr "გადადი ამ ინსტალატორზე."
|
||||||
|
|
||||||
@ -7553,6 +7814,18 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "FOAF"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7735,11 +8008,6 @@ msgstr "ეს ფაილი ძალიან დიდია. ფაილ
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "ნაწილობრივი ატვირთვა."
|
msgstr "ნაწილობრივი ატვირთვა."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "სისტემური შეცდომა ფაილის ატვირთვისას."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "სურათი არ არის, ან ფაილი დაზიანებულია."
|
msgstr "სურათი არ არის, ან ფაილი დაზიანებულია."
|
||||||
@ -8135,7 +8403,7 @@ msgstr ""
|
|||||||
"შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია "
|
"შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია "
|
||||||
"გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად."
|
"გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "ვისგან"
|
msgstr "ვისგან"
|
||||||
|
|
||||||
@ -8167,42 +8435,6 @@ msgstr "შეტყობინების ტიპი არ არის
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr "ფაილის შენახვისას მოხდა მონაცემთა ბაზის შეცდომა. გთხოვთ კიდევ სცადოთ."
|
msgstr "ფაილის შენახვისას მოხდა მონაცემთა ბაზის შეცდომა. გთხოვთ კიდევ სცადოთ."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
"ასატვირთი ფაილი სცდება ფაილის დაშვებულ ზომას. upload_max_filesize დირექტივა "
|
|
||||||
"php.ini-ში."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
"ასატვირთი ფაილი სცდება MAX_FILE_SIZE დირექტივას, რომელიც მითითებული იყო HTML "
|
|
||||||
"ფორმაში."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "ასატვირთი ფაილი მხოლოდ ნაწილობრივ აიტვირთა."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "დროებითი საქაღალდე ვერ მოიძებნა."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "ფაილის დისკზე ჩაწერა ვერ მოხერხდა."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "ფაილის არვირთვა გაჩერდა გაფართოების გამო."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8223,7 +8455,7 @@ msgstr "ფაილის MIME ტიპი ვერ დადგინდა.
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8232,7 +8464,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8267,17 +8499,17 @@ msgid "Send"
|
|||||||
msgstr "გაგზავნა"
|
msgstr "გაგზავნა"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "მეტსახელში დასაშვებია მხოლოდ პატარა ასოები და ციფრები."
|
msgstr "მეტსახელში დასაშვებია მხოლოდ პატარა ასოები და ციფრები."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8317,55 +8549,55 @@ msgstr ""
|
|||||||
"სჭირდება, გთხოვთ სცადოთ მოგვიანებით"
|
"სჭირდება, გთხოვთ სცადოთ მოგვიანებით"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "ჩ"
|
msgstr "ჩ"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "ს"
|
msgstr "ს"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "ა"
|
msgstr "ა"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "დ"
|
msgstr "დ"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "უპასუხე ამ შეტყობინებას"
|
msgstr "უპასუხე ამ შეტყობინებას"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "პასუხი"
|
msgstr "პასუხი"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "შეტყობინება გამეორებულია"
|
msgstr "შეტყობინება გამეორებულია"
|
||||||
|
|
||||||
@ -8519,7 +8751,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს"
|
msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "API მეთოდი ვერ მოიძებნა."
|
msgstr "API მეთოდი ვერ მოიძებნა."
|
||||||
@ -8869,20 +9101,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "მომხმარებლის ID მითითებული არ არის."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
|
@ -11,17 +11,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:02+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:34:59+0000\n"
|
||||||
"Language-Team: Korean <http://translatewiki.net/wiki/Portal:ko>\n"
|
"Language-Team: Korean <http://translatewiki.net/wiki/Portal:ko>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ko\n"
|
"X-Language-Code: ko\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -273,7 +273,7 @@ msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -318,7 +318,8 @@ msgstr "이용자를 업데이트 할 수 없습니다."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -547,7 +548,7 @@ msgstr "타겟 이용자를 찾을 수 없습니다."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
||||||
@ -557,7 +558,7 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "유효한 별명이 아닙니다"
|
msgstr "유효한 별명이 아닙니다"
|
||||||
@ -569,7 +570,7 @@ msgstr "유효한 별명이 아닙니다"
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
||||||
@ -579,7 +580,7 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -595,7 +596,7 @@ msgstr "실명이 너무 깁니다. (최대 255글자)"
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -606,7 +607,7 @@ msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -619,7 +620,7 @@ msgstr "위치가 너무 깁니다. (최대 255글자)"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -637,7 +638,7 @@ msgstr "사용할 수 없는 별명 : \"%s\""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
||||||
@ -646,7 +647,7 @@ msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -960,9 +961,10 @@ msgstr "자기 자신의 소식은 재전송할 수 없습니다."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "이미 재전송된 소식입니다."
|
msgstr "이미 재전송된 소식입니다."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1048,7 +1050,7 @@ msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "그룹을 업데이트 할 수 없습니다."
|
msgstr "그룹을 업데이트 할 수 없습니다."
|
||||||
@ -1141,30 +1143,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "통지들의 내용 찾기"
|
msgstr "통지들의 내용 찾기"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "해당 id의 프로필이 없습니다."
|
msgstr "해당 id의 프로필이 없습니다."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1175,7 +1177,7 @@ msgid "API method under construction."
|
|||||||
msgstr "API 메서드를 구성중 입니다."
|
msgstr "API 메서드를 구성중 입니다."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "API 메서드 발견 안 됨."
|
msgstr "API 메서드 발견 안 됨."
|
||||||
|
|
||||||
@ -1265,7 +1267,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "관심소식을 삭제할 수 없습니다."
|
msgstr "관심소식을 삭제할 수 없습니다."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "그러한 그룹이 없습니다."
|
msgstr "그러한 그룹이 없습니다."
|
||||||
|
|
||||||
@ -1283,21 +1284,26 @@ msgstr "API 메서드 발견 안 됨."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "해당하는 파일이 없습니다."
|
msgstr "해당하는 파일이 없습니다."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
|
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "구독을 저장할 수 없습니다."
|
msgstr "구독을 저장할 수 없습니다."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1390,14 +1396,16 @@ msgid "Preview"
|
|||||||
msgstr "미리보기"
|
msgstr "미리보기"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "삭제"
|
msgstr "삭제"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1440,6 +1448,38 @@ msgstr "아바타 업데이트 실패"
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "아바타가 삭제되었습니다."
|
msgstr "아바타가 삭제되었습니다."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "배경"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1647,6 +1687,77 @@ msgstr "대화"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "통지"
|
msgstr "통지"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "이용자를 업데이트 할 수 없습니다."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "아바타가 삭제되었습니다."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "새 계정 만들기"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "인증"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "이용자를 업데이트 할 수 없습니다."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "이용자를 업데이트 할 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1796,7 +1907,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "이 통지를 지울 수 없습니다."
|
msgstr "이 통지를 지울 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "이 게시글 삭제하기"
|
msgstr "이 게시글 삭제하기"
|
||||||
|
|
||||||
@ -2103,7 +2214,7 @@ msgstr "다음 양식을 이용해 그룹을 편집하십시오."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "사용할 수 없는 별명 : \"%s\""
|
msgstr "사용할 수 없는 별명 : \"%s\""
|
||||||
@ -2115,7 +2226,7 @@ msgstr "그룹을 업데이트 할 수 없습니다."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "관심소식을 생성할 수 없습니다."
|
msgstr "관심소식을 생성할 수 없습니다."
|
||||||
|
|
||||||
@ -3327,8 +3438,14 @@ msgstr "관심소식을 생성할 수 없습니다."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "새로운 그룹"
|
msgstr "새로운 그룹"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요."
|
msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요."
|
||||||
|
|
||||||
@ -3645,11 +3762,6 @@ msgstr "새로운 비밀 번호"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6글자 이상"
|
msgstr "6글자 이상"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "인증"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "위와 같은 비밀 번호"
|
msgstr "위와 같은 비밀 번호"
|
||||||
@ -4174,6 +4286,12 @@ msgstr "태그를 저장할 수 없습니다."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "설정 저장"
|
msgstr "설정 저장"
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "새 계정 만들기"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4627,7 +4745,7 @@ msgstr "자신의 글은 재전송할 수 없습니다."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "이미 재전송된 소식입니다."
|
msgstr "이미 재전송된 소식입니다."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "재전송됨"
|
msgstr "재전송됨"
|
||||||
|
|
||||||
@ -4687,6 +4805,94 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "%s에 답신"
|
msgstr "%s에 답신"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "실행 실패"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
"업로드 파일이 php.ini 설정 파일의 upload_max_filesize 값을 넘어갔습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr "업로드 파일이 HTML 폼에서 지정한 MAX_FILE_SIZE 값을 넘어갔습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "업로드 파일이 일부만 업로드되었습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "임시 폴더가 없습니다"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "디스크에 파일을 쓰는 데 실패했습니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "파일을 올리는데 시스템 오류 발생"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "모든 회원"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "실행 실패"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다."
|
msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다."
|
||||||
@ -4787,7 +4993,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "삭제"
|
msgstr "삭제"
|
||||||
|
|
||||||
@ -6040,13 +6246,13 @@ msgid "Author(s)"
|
|||||||
msgstr "작성자"
|
msgstr "작성자"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "좋아합니다"
|
msgstr "좋아합니다"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
|
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
|
||||||
@ -6153,7 +6359,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "%s 에 대한 로그인 토큰을 만들 수 없습니다."
|
msgstr "%s 에 대한 로그인 토큰을 만들 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6181,24 +6387,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
|
msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "게시글 저장문제. 알려지지않은 회원"
|
msgstr "게시글 저장문제. 알려지지않은 회원"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6206,7 +6412,7 @@ msgstr ""
|
|||||||
"해보세요."
|
"해보세요."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
@ -6216,43 +6422,43 @@ msgstr ""
|
|||||||
"해보세요."
|
"해보세요."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
|
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "새 그룹을 만들 수 없습니다."
|
msgstr "새 그룹을 만들 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6260,14 +6466,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6339,32 +6545,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "%s에 답신"
|
msgstr "%s에 답신"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "새 그룹을 만들 수 없습니다."
|
msgstr "새 그룹을 만들 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "새 그룹을 만들 수 없습니다."
|
msgstr "새 그룹을 만들 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "그룹 맴버십을 세팅할 수 없습니다."
|
msgstr "그룹 맴버십을 세팅할 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "새 그룹을 만들 수 없습니다."
|
msgstr "새 그룹을 만들 수 없습니다."
|
||||||
|
|
||||||
@ -6702,10 +6908,56 @@ msgstr "앞 페이지"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "알 수 없는 종류의 파일입니다"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "사진"
|
msgstr "구독하려는 사용자의 이름을 지정하십시오."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "알 수 없는 종류의 파일입니다"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "당신은 이미 이 그룹의 멤버입니다."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "통지들의 내용 찾기"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -6993,10 +7245,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "제거"
|
msgstr "제거"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "이 통지를 지울 수 없습니다."
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7387,26 +7645,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "확인 코드가 없습니다."
|
msgstr "확인 코드가 없습니다."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "다음 사람들에게 초대권을 보냈습니다:"
|
msgstr "다음 사람들에게 초대권을 보냈습니다:"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "이 사이트에 로그인"
|
msgstr "이 사이트에 로그인"
|
||||||
|
|
||||||
@ -7513,6 +7771,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "FOAF"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "모든 회원"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7692,11 +7963,6 @@ msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "불완전한 업로드."
|
msgstr "불완전한 업로드."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "파일을 올리는데 시스템 오류 발생"
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "그림 파일이 아니거나 손상된 파일 입니다."
|
msgstr "그림 파일이 아니거나 손상된 파일 입니다."
|
||||||
@ -8016,7 +8282,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "방법"
|
msgstr "방법"
|
||||||
|
|
||||||
@ -8046,39 +8312,6 @@ msgstr "지원하지 않는 그림 파일 형식입니다."
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
"업로드 파일이 php.ini 설정 파일의 upload_max_filesize 값을 넘어갔습니다."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr "업로드 파일이 HTML 폼에서 지정한 MAX_FILE_SIZE 값을 넘어갔습니다."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "업로드 파일이 일부만 업로드되었습니다."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "임시 폴더가 없습니다"
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "디스크에 파일을 쓰는 데 실패했습니다."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8099,7 +8332,7 @@ msgstr "소스 이용자를 확인할 수 없습니다."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8108,7 +8341,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8143,19 +8376,19 @@ msgid "Send"
|
|||||||
msgstr "보내기"
|
msgstr "보내기"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니"
|
"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니"
|
||||||
"다."
|
"다."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8193,55 +8426,55 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "북"
|
msgstr "북"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "남"
|
msgstr "남"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "동"
|
msgstr "동"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "서"
|
msgstr "서"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "위치"
|
msgstr "위치"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "웹"
|
msgstr "웹"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "문맥"
|
msgstr "문맥"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "재전송됨"
|
msgstr "재전송됨"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "이 게시글에 대해 답장하기"
|
msgstr "이 게시글에 대해 답장하기"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "답장하기"
|
msgstr "답장하기"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "게시글이 등록되었습니다."
|
msgstr "게시글이 등록되었습니다."
|
||||||
@ -8399,7 +8632,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "그룹 이용자는 차단해제"
|
msgstr "그룹 이용자는 차단해제"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "API 메서드 발견 안 됨."
|
msgstr "API 메서드 발견 안 됨."
|
||||||
@ -8748,20 +8981,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "프로필을 지정하지 않았습니다."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
8722
locale/ml/LC_MESSAGES/statusnet.po
Normal file
8722
locale/ml/LC_MESSAGES/statusnet.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -14,17 +14,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:10+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:35:18+0000\n"
|
||||||
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: pt\n"
|
"X-Language-Code: pt\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -281,7 +281,7 @@ msgstr "Actualizações de %1$s e amigos no %2$s!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -327,7 +327,8 @@ msgstr "Não foi possível actualizar o utilizador."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -561,7 +562,7 @@ msgstr "Não foi possível encontrar o utilizador de destino."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Utilizador já é usado. Tente outro."
|
msgstr "Utilizador já é usado. Tente outro."
|
||||||
@ -571,7 +572,7 @@ msgstr "Utilizador já é usado. Tente outro."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Utilizador não é válido."
|
msgstr "Utilizador não é válido."
|
||||||
@ -583,7 +584,7 @@ msgstr "Utilizador não é válido."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Página de ínicio não é uma URL válida."
|
msgstr "Página de ínicio não é uma URL válida."
|
||||||
@ -593,7 +594,7 @@ msgstr "Página de ínicio não é uma URL válida."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -609,7 +610,7 @@ msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -621,7 +622,7 @@ msgstr[1] "Descrição demasiado longa (máx. %d caracteres)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -634,7 +635,7 @@ msgstr "Localidade demasiado longa (máx. 255 caracteres)."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -653,7 +654,7 @@ msgstr "Nome alternativo inválido: \"%s\""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Nome alternativo \"%s\" já em uso. Tente outro."
|
msgstr "Nome alternativo \"%s\" já em uso. Tente outro."
|
||||||
@ -662,7 +663,7 @@ msgstr "Nome alternativo \"%s\" já em uso. Tente outro."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "Um nome alternativo não pode ser igual ao nome do utilizador."
|
msgstr "Um nome alternativo não pode ser igual ao nome do utilizador."
|
||||||
|
|
||||||
@ -976,9 +977,10 @@ msgstr "Não pode repetir a sua própria nota."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Já repetiu essa nota."
|
msgstr "Já repetiu essa nota."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1066,7 +1068,7 @@ msgstr "%1$s actualizações preferidas por %2$s / %2$s."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "Não foi possível actualizar o grupo."
|
msgstr "Não foi possível actualizar o grupo."
|
||||||
@ -1159,30 +1161,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Procurar no conteúdo das notas"
|
msgstr "Procurar no conteúdo das notas"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "Não existe nenhuma nota com essa identificação."
|
msgstr "Não existe nenhuma nota com essa identificação."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1193,7 +1195,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Método da API em desenvolvimento."
|
msgstr "Método da API em desenvolvimento."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Método da API não encontrado."
|
msgstr "Método da API não encontrado."
|
||||||
@ -1284,9 +1286,8 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "Não foi possível eliminar o favorito."
|
msgstr "Não foi possível eliminar o favorito."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Grupo não foi encontrado."
|
msgstr "Grupo não existe"
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:90
|
#: actions/atompubshowmembership.php:90
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1302,21 +1303,26 @@ msgstr "Método da API não encontrado."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Perfil não foi encontrado."
|
msgstr "Perfil não foi encontrado."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Não subscreveu esse perfil."
|
msgstr "Não subscreveu esse perfil."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Não foi possível apagar a auto-subscrição."
|
msgstr "Não foi possível apagar a auto-subscrição."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1409,14 +1415,16 @@ msgid "Preview"
|
|||||||
msgstr "Antevisão"
|
msgstr "Antevisão"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Apagar"
|
msgstr "Apagar"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
@ -1459,6 +1467,38 @@ msgstr "Falha ao actualizar avatar."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Avatar apagado."
|
msgstr "Avatar apagado."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "Só utilizadores com sessão iniciada podem repetir notas."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Fundo"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1666,6 +1706,77 @@ msgstr "Conversação"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "Só utilizadores com sessão iniciada podem repetir notas."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Não pode apagar utilizadores."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Avatar apagado."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Criar uma conta"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Confirmação"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Não pode apagar utilizadores."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Não pode apagar utilizadores."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1819,7 +1930,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Não apagar esta nota"
|
msgstr "Não apagar esta nota"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Apagar esta nota"
|
msgstr "Apagar esta nota"
|
||||||
|
|
||||||
@ -2129,7 +2240,7 @@ msgstr "Use este formulário para editar o grupo."
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Nome alternativo inválido: \"%s\""
|
msgstr "Nome alternativo inválido: \"%s\""
|
||||||
@ -2141,7 +2252,7 @@ msgstr "Não foi possível actualizar o grupo."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Não foi possível criar os nomes alternativos."
|
msgstr "Não foi possível criar os nomes alternativos."
|
||||||
|
|
||||||
@ -3380,8 +3491,14 @@ msgstr "Não foi possível criar a aplicação."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Grupo novo"
|
msgstr "Grupo novo"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Não é membro deste grupo."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "Use este formulário para criar um grupo novo."
|
msgstr "Use este formulário para criar um grupo novo."
|
||||||
|
|
||||||
@ -3700,11 +3817,6 @@ msgstr "Nova"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 ou mais caracteres"
|
msgstr "6 ou mais caracteres"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Confirmação"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Repita a senha nova"
|
msgstr "Repita a senha nova"
|
||||||
@ -4240,6 +4352,12 @@ msgstr "Não foi possível gravar as categorias."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Configurações gravadas."
|
msgstr "Configurações gravadas."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Criar uma conta"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4711,7 +4829,7 @@ msgstr "Não pode repetir a sua própria nota."
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Já repetiu essa nota."
|
msgstr "Já repetiu essa nota."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Repetida"
|
msgstr "Repetida"
|
||||||
|
|
||||||
@ -4776,6 +4894,95 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "Respostas a %1$s em %2$s!"
|
msgstr "Respostas a %1$s em %2$s!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "Só utilizadores com sessão iniciada podem repetir notas."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Ainda não registou nenhuma aplicação."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Carregar ficheiro"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr "Ficheiro carregado excede a directiva upload_max_filesize no php.ini."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
"Ficheiro carregado excede a directiva MAX_FILE_SIZE especificada no "
|
||||||
|
"formulário HTML."
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "Ficheiro só foi parcialmente carregado."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "Falta um directório temporário."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "Não foi possível gravar o ficheiro no disco."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "Transferência do ficheiro interrompida pela extensão."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Ocorreu um erro de sistema ao transferir o ficheiro."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Todos os membros"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Carregar ficheiro"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "Não pode retirar funções aos utilizadores neste site."
|
msgstr "Não pode retirar funções aos utilizadores neste site."
|
||||||
@ -4876,7 +5083,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr "Reiniciar chave e segredo"
|
msgstr "Reiniciar chave e segredo"
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Apagar"
|
msgstr "Apagar"
|
||||||
|
|
||||||
@ -6161,13 +6368,13 @@ msgid "Author(s)"
|
|||||||
msgstr "Autores"
|
msgstr "Autores"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Eleger como favorita"
|
msgstr "Eleger como favorita"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%s (@%s) adicionou a sua nota às favoritas."
|
msgstr "%s (@%s) adicionou a sua nota às favoritas."
|
||||||
@ -6282,7 +6489,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Não foi possível criar a chave de entrada para %s"
|
msgstr "Não foi possível criar a chave de entrada para %s"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "Não foi encontrado nenhum nome de base de dados ou DSN."
|
msgstr "Não foi encontrado nenhum nome de base de dados ou DSN."
|
||||||
|
|
||||||
@ -6309,23 +6516,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "Não existe o perfil (%1$d) para a nota (%2$d)."
|
msgstr "Não existe o perfil (%1$d) para a nota (%2$d)."
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Erro na base de dados ao inserir o elemento criptográfico: %s"
|
msgstr "Erro na base de dados ao inserir o elemento criptográfico: %s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Problema na gravação da nota. Demasiado longa."
|
msgstr "Problema na gravação da nota. Demasiado longa."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Problema na gravação da nota. Utilizador desconhecido."
|
msgstr "Problema na gravação da nota. Utilizador desconhecido."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6333,7 +6540,7 @@ msgstr ""
|
|||||||
"alguns minutos."
|
"alguns minutos."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
@ -6342,43 +6549,43 @@ msgstr ""
|
|||||||
"publicar daqui a alguns minutos."
|
"publicar daqui a alguns minutos."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "Está proibido de publicar notas neste site."
|
msgstr "Está proibido de publicar notas neste site."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Problema na gravação da nota."
|
msgstr "Problema na gravação da nota."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto"
|
msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Problema na gravação da caixa de entrada do grupo."
|
msgstr "Problema na gravação da caixa de entrada do grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "Não foi possível gravar a informação do grupo local."
|
msgstr "Não foi possível gravar a informação do grupo local."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6386,7 +6593,7 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6394,7 +6601,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6466,32 +6673,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "%1$s dá-lhe as boas-vindas, @%2$s!"
|
msgstr "%1$s dá-lhe as boas-vindas, @%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "Nenhum utilizador único definido para o modo de utilizador único."
|
msgstr "Nenhum utilizador único definido para o modo de utilizador único."
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Não foi possível criar o grupo."
|
msgstr "Não foi possível criar o grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Não foi possível configurar a URI do grupo."
|
msgstr "Não foi possível configurar a URI do grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Não foi possível configurar membros do grupo."
|
msgstr "Não foi possível configurar membros do grupo."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Não foi possível gravar a informação do grupo local."
|
msgstr "Não foi possível gravar a informação do grupo local."
|
||||||
|
|
||||||
@ -6834,10 +7041,56 @@ msgstr ""
|
|||||||
"Era esperado um elemento raiz da fonte, mas foi recebido um documento XML "
|
"Era esperado um elemento raiz da fonte, mas foi recebido um documento XML "
|
||||||
"inteiro."
|
"inteiro."
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Língua desconhecida \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "Foto"
|
msgstr "Introduza o nome do utilizador para subscrever."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Tipo do ficheiro é desconhecido"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Já é membro desse grupo."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Procurar no conteúdo das notas"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7120,10 +7373,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Retirar"
|
msgstr "Retirar"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Não apagar esta nota"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7553,26 +7812,26 @@ msgstr ""
|
|||||||
"tracking - ainda não implementado.\n"
|
"tracking - ainda não implementado.\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "Ficheiro de configuração não encontrado. "
|
msgstr "Ficheiro de configuração não encontrado. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "Procurei ficheiros de configuração nos seguintes sítios: "
|
msgstr "Procurei ficheiros de configuração nos seguintes sítios: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "Talvez queira correr o instalador para resolver esta questão."
|
msgstr "Talvez queira correr o instalador para resolver esta questão."
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Ir para o instalador."
|
msgstr "Ir para o instalador."
|
||||||
|
|
||||||
@ -7680,6 +7939,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "FOAF"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Todos os membros"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7862,11 +8134,6 @@ msgstr "Esse ficheiro é demasiado grande. O tamanho máximo de ficheiro é %s."
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Transferência parcial."
|
msgstr "Transferência parcial."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Ocorreu um erro de sistema ao transferir o ficheiro."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "Ficheiro não é uma imagem ou está corrompido."
|
msgstr "Ficheiro não é uma imagem ou está corrompido."
|
||||||
@ -8287,7 +8554,7 @@ msgstr ""
|
|||||||
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
|
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
|
||||||
"só você terá acesso."
|
"só você terá acesso."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "a partir de"
|
msgstr "a partir de"
|
||||||
|
|
||||||
@ -8319,40 +8586,6 @@ msgstr ""
|
|||||||
"Ocorreu um erro na base de dados ao gravar o seu ficheiro. Por favor, tente "
|
"Ocorreu um erro na base de dados ao gravar o seu ficheiro. Por favor, tente "
|
||||||
"novamente."
|
"novamente."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr "Ficheiro carregado excede a directiva upload_max_filesize no php.ini."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
"Ficheiro carregado excede a directiva MAX_FILE_SIZE especificada no "
|
|
||||||
"formulário HTML."
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "Ficheiro só foi parcialmente carregado."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "Falta um directório temporário."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "Não foi possível gravar o ficheiro no disco."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "Transferência do ficheiro interrompida pela extensão."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8373,7 +8606,7 @@ msgstr "Não foi possível determinar o tipo MIME do ficheiro."
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8384,7 +8617,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor."
|
msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor."
|
||||||
@ -8419,17 +8652,17 @@ msgid "Send"
|
|||||||
msgstr "Enviar"
|
msgstr "Enviar"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços."
|
msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8470,55 +8703,55 @@ msgstr ""
|
|||||||
"tente novamente mais tarde"
|
"tente novamente mais tarde"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "S"
|
msgstr "S"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "E"
|
msgstr "E"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "O"
|
msgstr "O"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "coords."
|
msgstr "coords."
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "web"
|
msgstr "web"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "no contexto"
|
msgstr "no contexto"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Repetida por"
|
msgstr "Repetida por"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Responder a esta nota"
|
msgstr "Responder a esta nota"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Responder"
|
msgstr "Responder"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Nota repetida"
|
msgstr "Nota repetida"
|
||||||
|
|
||||||
@ -8672,7 +8905,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Retirar a função \"%s\" a este utilizador"
|
msgstr "Retirar a função \"%s\" a este utilizador"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Método da API não encontrado."
|
msgstr "Método da API não encontrado."
|
||||||
@ -9028,21 +9261,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "Não foi especificado um ID de utilizador."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -265,7 +265,7 @@ msgstr ""
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -310,7 +310,8 @@ msgstr ""
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -536,7 +537,7 @@ msgstr ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -546,7 +547,7 @@ msgstr ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -558,7 +559,7 @@ msgstr ""
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -568,7 +569,7 @@ msgstr ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -583,7 +584,7 @@ msgstr ""
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -595,7 +596,7 @@ msgstr[1] ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -607,7 +608,7 @@ msgstr ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -626,7 +627,7 @@ msgstr ""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -635,7 +636,7 @@ msgstr ""
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -934,9 +935,10 @@ msgstr ""
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1022,7 +1024,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1113,30 +1115,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1147,7 +1149,7 @@ msgid "API method under construction."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1243,20 +1245,25 @@ msgstr ""
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
msgid "Can't delete someone else's subscription"
|
#: actions/atompubshowsubscription.php:157
|
||||||
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1349,13 +1356,15 @@ msgid "Preview"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1396,6 +1405,36 @@ msgstr ""
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1598,6 +1637,72 @@ msgstr ""
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1738,7 +1843,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2038,7 +2143,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -2050,7 +2155,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3202,8 +3307,13 @@ msgstr ""
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3511,11 +3621,6 @@ msgstr ""
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -4022,6 +4127,11 @@ msgstr ""
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4439,7 +4549,7 @@ msgstr ""
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4499,6 +4609,88 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -4599,7 +4791,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5794,13 +5986,13 @@ msgid "Author(s)"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -5907,7 +6099,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5934,71 +6126,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6006,14 +6198,14 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6083,32 +6275,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6438,8 +6630,52 @@ msgstr ""
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
msgid "Post"
|
#: lib/activityimporter.php:81
|
||||||
|
#, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
|
msgid "Cannot force remote user to subscribe."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
@ -6720,8 +6956,13 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
msgid "Do not use this method!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
@ -7107,24 +7348,24 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -7224,6 +7465,18 @@ msgstr ""
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7402,11 +7655,6 @@ msgstr ""
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7723,7 +7971,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -7753,38 +8001,6 @@ msgstr ""
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -7805,7 +8021,7 @@ msgstr ""
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -7814,7 +8030,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -7847,17 +8063,17 @@ msgid "Send"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -7896,55 +8112,55 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -8098,7 +8314,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -8443,20 +8659,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -10,17 +10,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:15+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:35:23+0000\n"
|
||||||
"Language-Team: Telugu <http://translatewiki.net/wiki/Portal:te>\n"
|
"Language-Team: Telugu <http://translatewiki.net/wiki/Portal:te>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: te\n"
|
"X-Language-Code: te\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -271,7 +271,7 @@ msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండ
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -318,7 +318,8 @@ msgstr "వాడుకరిని తాజాకరించలేకున
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -548,7 +549,7 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి."
|
msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి."
|
||||||
@ -558,7 +559,7 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "సరైన పేరు కాదు."
|
msgstr "సరైన పేరు కాదు."
|
||||||
@ -570,7 +571,7 @@ msgstr "సరైన పేరు కాదు."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
||||||
@ -580,7 +581,7 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
@ -596,7 +597,7 @@ msgstr "పూర్తి పేరు చాలా పెద్దగా ఉ
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -608,7 +609,7 @@ msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
@ -621,7 +622,7 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -640,7 +641,7 @@ msgstr "తప్పుడు మారుపేరు: \"%s\"."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి."
|
msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి."
|
||||||
@ -649,7 +650,7 @@ msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటిక
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు."
|
msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు."
|
||||||
|
|
||||||
@ -954,9 +955,10 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
|
msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
@ -1044,7 +1046,7 @@ msgstr "%s యొక్క మైక్రోబ్లాగు"
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "గుంపుని తాజాకరించలేకున్నాం."
|
msgstr "గుంపుని తాజాకరించలేకున్నాం."
|
||||||
@ -1137,30 +1139,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
|
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు."
|
msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు."
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1172,7 +1174,7 @@ msgid "API method under construction."
|
|||||||
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
|
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "వాడుకరి దొరకలేదు."
|
msgstr "వాడుకరి దొరకలేదు."
|
||||||
|
|
||||||
@ -1263,9 +1265,8 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం."
|
msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం."
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "అటువంటి గుంపు లేదు."
|
msgstr "అటువంటి గుంపు లేదు"
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:90
|
#: actions/atompubshowmembership.php:90
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1281,21 +1282,26 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "అటువంటి ఫైలు లేదు."
|
msgstr "అటువంటి ఫైలు లేదు."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "మీరు ఎవరికీ చందాచేరలేదు."
|
msgstr "మీరు ఎవరికీ చందాచేరలేదు."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "కొత్త చందాని చేర్చలేకపోయాం."
|
msgstr "కొత్త చందాని చేర్చలేకపోయాం."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1389,13 +1395,15 @@ msgid "Preview"
|
|||||||
msgstr "మునుజూపు"
|
msgstr "మునుజూపు"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "తొలగించు"
|
msgstr "తొలగించు"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr "ఎక్కించు"
|
msgstr "ఎక్కించు"
|
||||||
@ -1436,6 +1444,38 @@ msgstr "అవతారపు తాజాకరణ విఫలమైంది.
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "అవతారాన్ని తొలగించాం."
|
msgstr "అవతారాన్ని తొలగించాం."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "నేపథ్యం"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1642,6 +1682,77 @@ msgstr "సంభాషణ"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "సందేశాలు"
|
msgstr "సందేశాలు"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "మీరు వాడుకరులని తొలగించలేరు."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "అవతారాన్ని తొలగించాం."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "ఖాతాని సృష్టించుకోండి"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "నిర్థారించు"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "మీరు వాడుకరులని తొలగించలేరు."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "మీరు వాడుకరులని తొలగించలేరు."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1787,7 +1898,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "ఈ నోటీసుని తొలగించకు"
|
msgstr "ఈ నోటీసుని తొలగించకు"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "ఈ నోటీసుని తొలగించు"
|
msgstr "ఈ నోటీసుని తొలగించు"
|
||||||
|
|
||||||
@ -2098,7 +2209,7 @@ msgstr "గుంపుని మార్చడానికి ఈ ఫారా
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "తప్పుడు మారుపేరు: \"%s\""
|
msgstr "తప్పుడు మారుపేరు: \"%s\""
|
||||||
@ -2110,7 +2221,7 @@ msgstr "గుంపుని తాజాకరించలేకున్న
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
|
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
|
||||||
|
|
||||||
@ -3327,8 +3438,14 @@ msgstr "ఉపకరణాన్ని సృష్టించలేకపో
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "కొత్త గుంపు"
|
msgstr "కొత్త గుంపు"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "ఈ గుంపును తొలగించడానికి మీకు అనుమతి లేదు."
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "కొత్త గుంపుని సృష్టిండానికి ఈ ఫారాన్ని ఉపయోగించండి."
|
msgstr "కొత్త గుంపుని సృష్టిండానికి ఈ ఫారాన్ని ఉపయోగించండి."
|
||||||
|
|
||||||
@ -3648,11 +3765,6 @@ msgstr "కొత్త సంకేతపదం"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు"
|
msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "నిర్థారించు"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "పై సంకేతపదం వలెనే"
|
msgstr "పై సంకేతపదం వలెనే"
|
||||||
@ -4184,6 +4296,12 @@ msgstr "ట్యాగులని భద్రపరచలేకున్న
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "అమరికలు భద్రమయ్యాయి."
|
msgstr "అమరికలు భద్రమయ్యాయి."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "ఖాతాని సృష్టించుకోండి"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4638,7 +4756,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
|
msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "సృష్టితం"
|
msgstr "సృష్టితం"
|
||||||
@ -4702,6 +4820,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "%2$sలో %1$sకి స్పందనలు!"
|
msgstr "%2$sలో %1$sకి స్పందనలు!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "ఫైలుని ఎక్కించు"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "ఎక్కించిన ఫైలు కేవలం పాక్షికంగా మాత్రమే ఎక్కింది."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "తాత్కాలిక సంచయం కనబడటంలేదు."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "అందరు సభ్యులూ"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "ఫైలుని ఎక్కించు"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు."
|
msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు."
|
||||||
@ -4805,7 +5010,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "తొలగించు"
|
msgstr "తొలగించు"
|
||||||
|
|
||||||
@ -6057,13 +6262,13 @@ msgid "Author(s)"
|
|||||||
msgstr "రచయిత(లు)"
|
msgstr "రచయిత(లు)"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "ఇష్టపడు"
|
msgstr "ఇష్టపడు"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%2$s నోటీసుని %1$s ఇష్టాంశంగా గుర్తించారు."
|
msgstr "%2$s నోటీసుని %1$s ఇష్టాంశంగా గుర్తించారు."
|
||||||
@ -6170,7 +6375,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
|
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6199,29 +6404,29 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
|
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. చాలా పొడవుగా ఉంది."
|
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. చాలా పొడవుగా ఉంది."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. గుర్తుతెలియని వాడుకరి."
|
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. గుర్తుతెలియని వాడుకరి."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
|
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
@ -6229,43 +6434,43 @@ msgid ""
|
|||||||
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
|
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు."
|
msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
|
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6273,14 +6478,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6352,32 +6557,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "@%2$s, %1$sకి స్వాగతం!"
|
msgstr "@%2$s, %1$sకి స్వాగతం!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "గుంపుని సృష్టించలేకపోయాం."
|
msgstr "గుంపుని సృష్టించలేకపోయాం."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "గుంపుని సృష్టించలేకపోయాం."
|
msgstr "గుంపుని సృష్టించలేకపోయాం."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం."
|
msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
|
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
|
||||||
|
|
||||||
@ -6714,10 +6919,56 @@ msgstr "ఇంతక్రితం"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "గుర్తు తెలియని భాష \"%s\"."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "ఫొటో"
|
msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరుని ఇవ్వండి."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "తెలియని ఫైలు రకం"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -7006,10 +7257,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "తొలగించు"
|
msgstr "తొలగించు"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "ఈ గుంపును తొలగించకు"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7407,26 +7664,26 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "స్వరూపణపు దస్త్రమేమీ కనబడలేదు. "
|
msgstr "స్వరూపణపు దస్త్రమేమీ కనబడలేదు. "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ ప్రదేశాలతో చూసాం: "
|
msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ ప్రదేశాలతో చూసాం: "
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "సైటు లోనికి ప్రవేశించండి"
|
msgstr "సైటు లోనికి ప్రవేశించండి"
|
||||||
@ -7530,6 +7787,19 @@ msgstr "ఆటమ్"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "అందరు సభ్యులూ"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7711,11 +7981,6 @@ msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ స
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "పాక్షిక ఎగుమతి."
|
msgstr "పాక్షిక ఎగుమతి."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు."
|
msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు."
|
||||||
@ -8122,7 +8387,7 @@ msgstr ""
|
|||||||
"మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు "
|
"మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు "
|
||||||
"పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు."
|
"పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు."
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "నుండి"
|
msgstr "నుండి"
|
||||||
|
|
||||||
@ -8154,38 +8419,6 @@ msgstr "%s కి నేరు సందేశాలు"
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "ఎక్కించిన ఫైలు కేవలం పాక్షికంగా మాత్రమే ఎక్కింది."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "తాత్కాలిక సంచయం కనబడటంలేదు."
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8206,7 +8439,7 @@ msgstr "ఇష్టాంశాన్ని తొలగించలేకప
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8215,7 +8448,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8250,17 +8483,17 @@ msgid "Send"
|
|||||||
msgstr "పంపించు"
|
msgstr "పంపించు"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి."
|
msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8301,55 +8534,55 @@ msgstr ""
|
|||||||
"కాసేపాగి ప్రయత్నించండి"
|
"కాసేపాగి ప్రయత్నించండి"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "ఉ"
|
msgstr "ఉ"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "ద"
|
msgstr "ద"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "తూ"
|
msgstr "తూ"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "ప"
|
msgstr "ప"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "ప్రాంతం"
|
msgstr "ప్రాంతం"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "జాలం"
|
msgstr "జాలం"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "సందర్భంలో"
|
msgstr "సందర్భంలో"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "%s యొక్క పునరావృతం"
|
msgstr "%s యొక్క పునరావృతం"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "ఈ నోటీసుపై స్పందించండి"
|
msgstr "ఈ నోటీసుపై స్పందించండి"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "స్పందించండి"
|
msgstr "స్పందించండి"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "నోటీసుని పునరావృతించారు"
|
msgstr "నోటీసుని పునరావృతించారు"
|
||||||
|
|
||||||
@ -8507,7 +8740,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు"
|
msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
|
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
|
||||||
@ -8858,21 +9091,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
#, fuzzy
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -9,17 +9,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:20+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:35:26+0000\n"
|
||||||
"Language-Team: Vietnamese <http://translatewiki.net/wiki/Portal:vi>\n"
|
"Language-Team: Vietnamese <http://translatewiki.net/wiki/Portal:vi>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: vi\n"
|
"X-Language-Code: vi\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -273,7 +273,7 @@ msgstr "Dòng tin nhắn cho %s"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -320,7 +320,8 @@ msgstr "Không thể cập nhật thành viên."
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -556,7 +557,7 @@ msgstr "Không thể cập nhật thành viên."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
||||||
@ -566,7 +567,7 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "Biệt hiệu không hợp lệ."
|
msgstr "Biệt hiệu không hợp lệ."
|
||||||
@ -578,7 +579,7 @@ msgstr "Biệt hiệu không hợp lệ."
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "Trang chủ không phải là URL"
|
msgstr "Trang chủ không phải là URL"
|
||||||
@ -588,7 +589,7 @@ msgstr "Trang chủ không phải là URL"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -603,7 +604,7 @@ msgstr ""
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -614,7 +615,7 @@ msgstr[0] ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -626,7 +627,7 @@ msgstr ""
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -644,7 +645,7 @@ msgstr "Địa chỉ email không đúng:%s"
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
||||||
@ -653,7 +654,7 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -956,9 +957,10 @@ msgstr "Không thể xóa tin nhắn này."
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "Không thể xóa tin nhắn này."
|
msgstr "Không thể xóa tin nhắn này."
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1044,7 +1046,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1135,30 +1137,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "Tìm theo nội dung của tin nhắn"
|
msgstr "Tìm theo nội dung của tin nhắn"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1169,7 +1171,7 @@ msgid "API method under construction."
|
|||||||
msgstr "Phương thức API dưới cấu trúc có sẵn."
|
msgstr "Phương thức API dưới cấu trúc có sẵn."
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "Không tìm thấy user."
|
msgstr "Không tìm thấy user."
|
||||||
|
|
||||||
@ -1278,21 +1280,26 @@ msgstr "Kết nối"
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "Không có tin nhắn nào."
|
msgstr "Không có tin nhắn nào."
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "Bạn đã theo những người này:"
|
msgstr "Bạn đã theo những người này:"
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "Không thể chèn thêm vào đăng nhận."
|
msgstr "Không thể chèn thêm vào đăng nhận."
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1387,13 +1394,15 @@ msgid "Preview"
|
|||||||
msgstr "Xem trước"
|
msgstr "Xem trước"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1436,6 +1445,37 @@ msgstr "Cập nhật hình đại diện không thành công."
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Hình đại diện đã được cập nhật."
|
msgstr "Hình đại diện đã được cập nhật."
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "Background Theme:"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1643,6 +1683,76 @@ msgstr "Thành phố"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "Tin nhắn"
|
msgstr "Tin nhắn"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "Hình đại diện đã được cập nhật."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "Mở tài khoản mới"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "Xác nhận"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1792,7 +1902,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "Không thể xóa tin nhắn này."
|
msgstr "Không thể xóa tin nhắn này."
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "Xóa tin nhắn"
|
msgstr "Xóa tin nhắn"
|
||||||
@ -2121,7 +2231,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "Địa chỉ email không đúng:%s"
|
msgstr "Địa chỉ email không đúng:%s"
|
||||||
@ -2134,7 +2244,7 @@ msgstr "Không thể cập nhật thành viên."
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "Không thể tạo favorite."
|
msgstr "Không thể tạo favorite."
|
||||||
@ -3395,8 +3505,14 @@ msgstr "Không thể tạo favorite."
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "Tạo nhóm"
|
msgstr "Tạo nhóm"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "Bạn đã theo những người này:"
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -3721,11 +3837,6 @@ msgstr "Mật khẩu mới"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "Nhiều hơn 6 ký tự"
|
msgstr "Nhiều hơn 6 ký tự"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "Xác nhận"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "Cùng mật khẩu ở trên"
|
msgstr "Cùng mật khẩu ở trên"
|
||||||
@ -4251,6 +4362,12 @@ msgstr "Không thể lưu hồ sơ cá nhân."
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "Đã lưu các điều chỉnh."
|
msgstr "Đã lưu các điều chỉnh."
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "Mở tài khoản mới"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4707,7 +4824,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "Bạn đã theo những người này:"
|
msgstr "Bạn đã theo những người này:"
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "Khởi tạo"
|
msgstr "Khởi tạo"
|
||||||
|
|
||||||
@ -4768,6 +4885,92 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "%s chào mừng bạn "
|
msgstr "%s chào mừng bạn "
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản."
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "Tải tập tin lên"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "Hệ thống xảy ra lỗi trong khi tải file."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "Thành viên"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "Tải tập tin lên"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
@ -4877,7 +5080,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Xóa"
|
msgstr "Xóa"
|
||||||
|
|
||||||
@ -6133,14 +6336,14 @@ msgid "Author(s)"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "Ưa thích"
|
msgstr "Ưa thích"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6249,7 +6452,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "Không thể tạo favorite."
|
msgstr "Không thể tạo favorite."
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -6277,74 +6480,74 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "Lỗi xảy ra khi thêm mới hình đại diện"
|
msgstr "Lỗi xảy ra khi thêm mới hình đại diện"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6352,14 +6555,14 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -6434,33 +6637,33 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "%s chào mừng bạn "
|
msgstr "%s chào mừng bạn "
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Không thể tạo favorite."
|
msgstr "Không thể tạo favorite."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "Không thể lưu hồ sơ cá nhân."
|
msgstr "Không thể lưu hồ sơ cá nhân."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "Không thể cập nhật thành viên."
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "Không thể lưu hồ sơ cá nhân."
|
msgstr "Không thể lưu hồ sơ cá nhân."
|
||||||
|
|
||||||
@ -6604,10 +6807,9 @@ msgstr "Thoát"
|
|||||||
|
|
||||||
#. TRANS: Tooltip for main menu option "Register"
|
#. TRANS: Tooltip for main menu option "Register"
|
||||||
#: lib/action.php:577
|
#: lib/action.php:577
|
||||||
#, fuzzy
|
|
||||||
msgctxt "TOOLTIP"
|
msgctxt "TOOLTIP"
|
||||||
msgid "Create an account"
|
msgid "Create an account"
|
||||||
msgstr "Tạo tài khoản mới"
|
msgstr "Mở tài khoản mới"
|
||||||
|
|
||||||
#. TRANS: Main menu option when not logged in to register a new account
|
#. TRANS: Main menu option when not logged in to register a new account
|
||||||
#: lib/action.php:580
|
#: lib/action.php:580
|
||||||
@ -6816,10 +7018,57 @@ msgstr "Trước"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
msgid "Post"
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "Không hỗ trợ kiểu file ảnh này."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Cannot force remote user to subscribe."
|
||||||
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "Không hỗ trợ kiểu file ảnh này."
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "Tìm theo nội dung của tin nhắn"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
msgid "Can't handle remote content yet."
|
msgid "Can't handle remote content yet."
|
||||||
@ -7113,10 +7362,16 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "Khôi phục"
|
msgstr "Khôi phục"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
msgid "Author element must contain a name element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "Không thể xóa tin nhắn này."
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7507,24 +7762,24 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -7627,6 +7882,19 @@ msgstr ""
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "Thành viên"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7809,11 +8077,6 @@ msgstr ""
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "Upload từng phần."
|
msgstr "Upload từng phần."
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "Hệ thống xảy ra lỗi trong khi tải file."
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "File hỏng hoặc không phải là file ảnh."
|
msgstr "File hỏng hoặc không phải là file ảnh."
|
||||||
@ -8158,7 +8421,7 @@ msgid ""
|
|||||||
"users in conversation. People can send you messages for your eyes only."
|
"users in conversation. People can send you messages for your eyes only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr " từ "
|
msgstr " từ "
|
||||||
@ -8190,38 +8453,6 @@ msgstr "Không hỗ trợ kiểu file ảnh này."
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8243,7 +8474,7 @@ msgstr "Không thể lấy lại các tin nhắn ưa thích"
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8252,7 +8483,7 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -8288,17 +8519,17 @@ msgid "Send"
|
|||||||
msgstr "Gửi"
|
msgstr "Gửi"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng."
|
msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng."
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8339,58 +8570,58 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "Không"
|
msgstr "Không"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "Không có nội dung!"
|
msgstr "Không có nội dung!"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "Tạo"
|
msgstr "Tạo"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "Không thể xóa tin nhắn này."
|
msgstr "Không thể xóa tin nhắn này."
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "Trả lời"
|
msgstr "Trả lời"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "Tìm kiếm thông báo"
|
msgstr "Tìm kiếm thông báo"
|
||||||
|
|
||||||
@ -8553,7 +8784,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "Ban user"
|
msgstr "Ban user"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -8911,19 +9142,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] ""
|
|
||||||
|
@ -14,18 +14,18 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Core\n"
|
"Project-Id-Version: StatusNet - Core\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:21+0000\n"
|
"PO-Revision-Date: 2011-01-14 23:35:27+0000\n"
|
||||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||||
"hans>\n"
|
"hans>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: zh-hans\n"
|
"X-Language-Code: zh-hans\n"
|
||||||
"X-Message-Group: #out-statusnet-core\n"
|
"X-Message-Group: #out-statusnet-core\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
|
"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
|
||||||
|
|
||||||
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
#. TRANS: Page title for Access admin panel that allows configuring site access.
|
||||||
#. TRANS: Menu item for site administration
|
#. TRANS: Menu item for site administration
|
||||||
@ -279,7 +279,7 @@ msgstr "%2$s上%1$s和好友们的更新!"
|
|||||||
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
|
||||||
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
|
||||||
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
|
||||||
#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
|
#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
|
||||||
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
|
||||||
#: actions/apitimelineretweetedtome.php:118
|
#: actions/apitimelineretweetedtome.php:118
|
||||||
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
|
||||||
@ -325,7 +325,8 @@ msgstr "无法更新用户。"
|
|||||||
#: actions/apiaccountupdateprofile.php:111
|
#: actions/apiaccountupdateprofile.php:111
|
||||||
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
#: actions/apiaccountupdateprofilebackgroundimage.php:199
|
||||||
#: actions/apiaccountupdateprofilecolors.php:183
|
#: actions/apiaccountupdateprofilecolors.php:183
|
||||||
#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
|
#: actions/apiaccountupdateprofileimage.php:130
|
||||||
|
#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
|
||||||
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
|
||||||
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
|
||||||
#: lib/profileaction.php:84
|
#: lib/profileaction.php:84
|
||||||
@ -399,9 +400,9 @@ msgid "%s subscriptions"
|
|||||||
msgstr "%s 关注的用户"
|
msgstr "%s 关注的用户"
|
||||||
|
|
||||||
#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
|
#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "%s favorites"
|
msgid "%s favorites"
|
||||||
msgstr "收藏夹"
|
msgstr "%s 收藏夹"
|
||||||
|
|
||||||
#: actions/apiatomservice.php:123
|
#: actions/apiatomservice.php:123
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -549,7 +550,7 @@ msgstr "无法找到目标用户。"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
|
||||||
#: actions/newgroup.php:129 actions/profilesettings.php:277
|
#: actions/newgroup.php:136 actions/profilesettings.php:277
|
||||||
#: actions/register.php:214
|
#: actions/register.php:214
|
||||||
msgid "Nickname already in use. Try another one."
|
msgid "Nickname already in use. Try another one."
|
||||||
msgstr "昵称已被使用,换一个吧。"
|
msgstr "昵称已被使用,换一个吧。"
|
||||||
@ -559,7 +560,7 @@ msgstr "昵称已被使用,换一个吧。"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
|
||||||
#: actions/newgroup.php:133 actions/profilesettings.php:247
|
#: actions/newgroup.php:140 actions/profilesettings.php:247
|
||||||
#: actions/register.php:216
|
#: actions/register.php:216
|
||||||
msgid "Not a valid nickname."
|
msgid "Not a valid nickname."
|
||||||
msgstr "不是有效的昵称。"
|
msgstr "不是有效的昵称。"
|
||||||
@ -571,7 +572,7 @@ msgstr "不是有效的昵称。"
|
|||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
|
||||||
#: actions/editgroup.php:200 actions/newapplication.php:211
|
#: actions/editgroup.php:200 actions/newapplication.php:211
|
||||||
#: actions/newgroup.php:140 actions/profilesettings.php:252
|
#: actions/newgroup.php:147 actions/profilesettings.php:252
|
||||||
#: actions/register.php:223
|
#: actions/register.php:223
|
||||||
msgid "Homepage is not a valid URL."
|
msgid "Homepage is not a valid URL."
|
||||||
msgstr "主页的URL不正确。"
|
msgstr "主页的URL不正确。"
|
||||||
@ -581,7 +582,7 @@ msgstr "主页的URL不正确。"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:144 actions/profilesettings.php:256
|
#: actions/newgroup.php:151 actions/profilesettings.php:256
|
||||||
#: actions/register.php:226
|
#: actions/register.php:226
|
||||||
msgid "Full name is too long (maximum 255 characters)."
|
msgid "Full name is too long (maximum 255 characters)."
|
||||||
msgstr "全名过长(不能超过 255 个字符)。"
|
msgstr "全名过长(不能超过 255 个字符)。"
|
||||||
@ -596,7 +597,7 @@ msgstr "全名过长(不能超过 255 个字符)。"
|
|||||||
#. TRANS: %d is the maximum number of allowed characters.
|
#. TRANS: %d is the maximum number of allowed characters.
|
||||||
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
|
||||||
#: actions/editgroup.php:209 actions/newapplication.php:178
|
#: actions/editgroup.php:209 actions/newapplication.php:178
|
||||||
#: actions/newgroup.php:149
|
#: actions/newgroup.php:156
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Description is too long (maximum %d character)."
|
msgid "Description is too long (maximum %d character)."
|
||||||
msgid_plural "Description is too long (maximum %d characters)."
|
msgid_plural "Description is too long (maximum %d characters)."
|
||||||
@ -607,7 +608,7 @@ msgstr[0] "D描述过长(不能超过%d 个字符)。"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: Validation error in form for profile settings.
|
#. TRANS: Validation error in form for profile settings.
|
||||||
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
|
||||||
#: actions/newgroup.php:156 actions/profilesettings.php:269
|
#: actions/newgroup.php:163 actions/profilesettings.php:269
|
||||||
#: actions/register.php:235
|
#: actions/register.php:235
|
||||||
msgid "Location is too long (maximum 255 characters)."
|
msgid "Location is too long (maximum 255 characters)."
|
||||||
msgstr "位置过长(不能超过255个字符)。"
|
msgstr "位置过长(不能超过255个字符)。"
|
||||||
@ -619,7 +620,7 @@ msgstr "位置过长(不能超过255个字符)。"
|
|||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#. TRANS: %d is the maximum number of allowed aliases.
|
#. TRANS: %d is the maximum number of allowed aliases.
|
||||||
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
|
||||||
#: actions/newgroup.php:169
|
#: actions/newgroup.php:176
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d allowed."
|
msgid "Too many aliases! Maximum %d allowed."
|
||||||
msgid_plural "Too many aliases! Maximum %d allowed."
|
msgid_plural "Too many aliases! Maximum %d allowed."
|
||||||
@ -637,7 +638,7 @@ msgstr "无效的别名:“%s”。"
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
|
||||||
#: actions/newgroup.php:184
|
#: actions/newgroup.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Alias \"%s\" already in use. Try another one."
|
msgid "Alias \"%s\" already in use. Try another one."
|
||||||
msgstr "%s这个别名已被使用,换一个吧。"
|
msgstr "%s这个别名已被使用,换一个吧。"
|
||||||
@ -646,7 +647,7 @@ msgstr "%s这个别名已被使用,换一个吧。"
|
|||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
|
||||||
#: actions/newgroup.php:191
|
#: actions/newgroup.php:198
|
||||||
msgid "Alias can't be the same as nickname."
|
msgid "Alias can't be the same as nickname."
|
||||||
msgstr "别名不能和昵称相同。"
|
msgstr "别名不能和昵称相同。"
|
||||||
|
|
||||||
@ -949,9 +950,10 @@ msgstr "不能转发你自己的消息。"
|
|||||||
msgid "Already repeated that notice."
|
msgid "Already repeated that notice."
|
||||||
msgstr "已转发了该消息。"
|
msgstr "已转发了该消息。"
|
||||||
|
|
||||||
|
#. TRANS: Client error shown when using a non-supported HTTP method.
|
||||||
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
|
||||||
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
|
||||||
#: actions/atompubshowsubscription.php:118
|
#: actions/atompubshowsubscription.php:122
|
||||||
#: actions/atompubsubscriptionfeed.php:109
|
#: actions/atompubsubscriptionfeed.php:109
|
||||||
msgid "HTTP method not supported."
|
msgid "HTTP method not supported."
|
||||||
msgstr "HTTP 方法不支持。"
|
msgstr "HTTP 方法不支持。"
|
||||||
@ -1035,7 +1037,7 @@ msgstr "%1$s上被%2$s(%3$s)收藏的消息。"
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when generating an Atom feed fails.
|
#. TRANS: Server error displayed when generating an Atom feed fails.
|
||||||
#. TRANS: %s is the error.
|
#. TRANS: %s is the error.
|
||||||
#: actions/apitimelinegroup.php:138
|
#: actions/apitimelinegroup.php:134
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not generate feed for group - %s"
|
msgid "Could not generate feed for group - %s"
|
||||||
msgstr "无法生成小组的 feed - %s"
|
msgstr "无法生成小组的 feed - %s"
|
||||||
@ -1127,30 +1129,30 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client error displayed when not using the POST verb.
|
#. TRANS: Client error displayed when not using the POST verb.
|
||||||
#. TRANS: Do not translate POST.
|
#. TRANS: Do not translate POST.
|
||||||
#: actions/apitimelineuser.php:332
|
#: actions/apitimelineuser.php:334
|
||||||
msgid "Can only handle POST activities."
|
msgid "Can only handle POST activities."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using an unsupported activity object type.
|
#. TRANS: Client error displayed when using an unsupported activity object type.
|
||||||
#. TRANS: %s is the unsupported activity object type.
|
#. TRANS: %s is the unsupported activity object type.
|
||||||
#: actions/apitimelineuser.php:343
|
#: actions/apitimelineuser.php:345
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot handle activity object type \"%s\"."
|
msgid "Cannot handle activity object type \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when posting a notice without content through the API.
|
#. TRANS: Client error displayed when posting a notice without content through the API.
|
||||||
#: actions/apitimelineuser.php:376
|
#: actions/apitimelineuser.php:378
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No content for notice %d."
|
msgid "No content for notice %d."
|
||||||
msgstr "搜索消息内容"
|
msgstr "搜索消息内容"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when using another format than AtomPub.
|
#. TRANS: Client error displayed when using another format than AtomPub.
|
||||||
#: actions/apitimelineuser.php:404
|
#: actions/apitimelineuser.php:406
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Notice with URI \"%s\" already exists."
|
msgid "Notice with URI \"%s\" already exists."
|
||||||
msgstr "已存在使用 URI \"%s\" 的消息了。"
|
msgstr "已存在使用 URI \"%s\" 的消息了。"
|
||||||
|
|
||||||
#: actions/apitimelineuser.php:435
|
#: actions/apitimelineuser.php:437
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "AtomPub post with unknown attention URI %s"
|
msgid "AtomPub post with unknown attention URI %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1161,7 +1163,7 @@ msgid "API method under construction."
|
|||||||
msgstr "API 方法尚未实现。"
|
msgstr "API 方法尚未实现。"
|
||||||
|
|
||||||
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
#. TRANS: Client error displayed when requesting user information for a non-existing user.
|
||||||
#: actions/apiusershow.php:94
|
#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
|
||||||
msgid "User not found."
|
msgid "User not found."
|
||||||
msgstr "API方法没有找到。"
|
msgstr "API方法没有找到。"
|
||||||
|
|
||||||
@ -1251,7 +1253,6 @@ msgid "Can't delete someone else's favorite"
|
|||||||
msgstr "无法删除收藏。"
|
msgstr "无法删除收藏。"
|
||||||
|
|
||||||
#: actions/atompubshowmembership.php:81
|
#: actions/atompubshowmembership.php:81
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "没有这个组。"
|
msgstr "没有这个组。"
|
||||||
|
|
||||||
@ -1269,21 +1270,26 @@ msgstr "HTTP 方法不支持。"
|
|||||||
msgid "Can't delete someone else's membership"
|
msgid "Can't delete someone else's membership"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
|
||||||
|
#. TRANS: %d is the non-existing profile ID number.
|
||||||
#: actions/atompubshowsubscription.php:72
|
#: actions/atompubshowsubscription.php:72
|
||||||
#: actions/atompubshowsubscription.php:81
|
#: actions/atompubshowsubscription.php:83
|
||||||
#: actions/atompubsubscriptionfeed.php:74
|
#: actions/atompubsubscriptionfeed.php:74
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "No such profile id: %d"
|
msgid "No such profile id: %d"
|
||||||
msgstr "没有这个文件。"
|
msgstr "没有这个文件。"
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:90
|
#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
|
||||||
|
#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
|
||||||
|
#: actions/atompubshowsubscription.php:94
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Profile %d not subscribed to profile %d"
|
msgid "Profile %1$d not subscribed to profile %2$d"
|
||||||
msgstr "你没有关注这个用户"
|
msgstr "你没有关注这个用户"
|
||||||
|
|
||||||
#: actions/atompubshowsubscription.php:154
|
#. TRANS: Client exception thrown when trying to delete a subscription of another user.
|
||||||
|
#: actions/atompubshowsubscription.php:157
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Can't delete someone else's subscription"
|
msgid "Cannot delete someone else's subscription"
|
||||||
msgstr "无法删除自我关注。"
|
msgstr "无法删除自我关注。"
|
||||||
|
|
||||||
#: actions/atompubsubscriptionfeed.php:150
|
#: actions/atompubsubscriptionfeed.php:150
|
||||||
@ -1376,13 +1382,15 @@ msgid "Preview"
|
|||||||
msgstr "预览"
|
msgstr "预览"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to delete current avatar.
|
#. TRANS: Button on avatar upload page to delete current avatar.
|
||||||
#: actions/avatarsettings.php:155
|
#. TRANS: Button text for user account deletion.
|
||||||
|
#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "删除"
|
msgstr "删除"
|
||||||
|
|
||||||
#. TRANS: Button on avatar upload page to upload an avatar.
|
#. TRANS: Button on avatar upload page to upload an avatar.
|
||||||
#: actions/avatarsettings.php:173
|
#. TRANS: Submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
|
||||||
msgctxt "BUTTON"
|
msgctxt "BUTTON"
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr "上传"
|
msgstr "上传"
|
||||||
@ -1423,6 +1431,38 @@ msgstr "更新头像失败。"
|
|||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "头像已删除。"
|
msgstr "头像已删除。"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:62 actions/profilesettings.php:467
|
||||||
|
msgid "Backup account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:80
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can backup their account."
|
||||||
|
msgstr "只有登录的用户才能重复发消息。"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:84
|
||||||
|
msgid "You may not backup your account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:232
|
||||||
|
msgid ""
|
||||||
|
"You can backup your account data in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format. This is an experimental feature and "
|
||||||
|
"provides an incomplete backup; private account information like email and IM "
|
||||||
|
"addresses is not backed up. Additionally, uploaded files and direct messages "
|
||||||
|
"are not backed up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:255
|
||||||
|
#, fuzzy
|
||||||
|
msgctxt "BUTTON"
|
||||||
|
msgid "Backup"
|
||||||
|
msgstr "背景"
|
||||||
|
|
||||||
|
#: actions/backupaccount.php:258
|
||||||
|
msgid "Backup your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
#. TRANS: Client error displayed when blocking a user that has already been blocked.
|
||||||
#: actions/block.php:68
|
#: actions/block.php:68
|
||||||
msgid "You already blocked that user."
|
msgid "You already blocked that user."
|
||||||
@ -1627,6 +1667,77 @@ msgstr "对话"
|
|||||||
msgid "Notices"
|
msgid "Notices"
|
||||||
msgstr "消息"
|
msgstr "消息"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
|
||||||
|
#: actions/deleteaccount.php:71
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can delete their account."
|
||||||
|
msgstr "只有登录的用户才能重复发消息。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
|
||||||
|
#: actions/deleteaccount.php:77
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot delete your account."
|
||||||
|
msgstr "你不能删除用户。"
|
||||||
|
|
||||||
|
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
|
||||||
|
#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
|
||||||
|
msgid "I am sure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:164
|
||||||
|
#, php-format
|
||||||
|
msgid "You must write \"%s\" exactly in the box."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Confirmation that a user account has been deleted.
|
||||||
|
#: actions/deleteaccount.php:206
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Account deleted."
|
||||||
|
msgstr "头像已删除。"
|
||||||
|
|
||||||
|
#. TRANS: Page title for page on which a user account can be deleted.
|
||||||
|
#: actions/deleteaccount.php:228 actions/profilesettings.php:474
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr "创建一个账户"
|
||||||
|
|
||||||
|
#. TRANS: Form text for user deletion form.
|
||||||
|
#: actions/deleteaccount.php:279
|
||||||
|
msgid ""
|
||||||
|
"This will <strong>permanently delete</strong> your account data from this "
|
||||||
|
"server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
|
||||||
|
#. TRANS: %s is a URL to the backup page.
|
||||||
|
#: actions/deleteaccount.php:285
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"You are strongly advised to <a href=\"%s\">back up your data</a> before "
|
||||||
|
"deletion."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Field label for delete account confirmation entry.
|
||||||
|
#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
|
||||||
|
#: actions/recoverpassword.php:239 actions/register.php:441
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr "密码确认"
|
||||||
|
|
||||||
|
#. TRANS: Input title for the delete account field.
|
||||||
|
#. TRANS: %s is the text that needs to be input.
|
||||||
|
#: actions/deleteaccount.php:304
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Enter \"%s\" to confirm that you want to delete your account."
|
||||||
|
msgstr "你不能删除用户。"
|
||||||
|
|
||||||
|
#. TRANS: Button title for user account deletion.
|
||||||
|
#: actions/deleteaccount.php:323
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Permanently delete your account"
|
||||||
|
msgstr "你不能删除用户。"
|
||||||
|
|
||||||
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
#. TRANS: Client error displayed trying to delete an application while not logged in.
|
||||||
#: actions/deleteapplication.php:62
|
#: actions/deleteapplication.php:62
|
||||||
msgid "You must be logged in to delete an application."
|
msgid "You must be logged in to delete an application."
|
||||||
@ -1771,7 +1882,7 @@ msgid "Do not delete this notice"
|
|||||||
msgstr "不要删除这个消息"
|
msgstr "不要删除这个消息"
|
||||||
|
|
||||||
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
#. TRANS: Submit button title for 'Yes' when deleting a notice.
|
||||||
#: actions/deletenotice.php:166 lib/noticelist.php:672
|
#: actions/deletenotice.php:166 lib/noticelist.php:673
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr "删除"
|
msgstr "删除"
|
||||||
|
|
||||||
@ -2072,7 +2183,7 @@ msgstr "通过这个表单来编辑小组"
|
|||||||
|
|
||||||
#. TRANS: Group edit form validation error.
|
#. TRANS: Group edit form validation error.
|
||||||
#. TRANS: Group create form validation error.
|
#. TRANS: Group create form validation error.
|
||||||
#: actions/editgroup.php:239 actions/newgroup.php:179
|
#: actions/editgroup.php:239 actions/newgroup.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
msgid "Invalid alias: \"%s\""
|
||||||
msgstr "无效的别名:“%s”。"
|
msgstr "无效的别名:“%s”。"
|
||||||
@ -2084,7 +2195,7 @@ msgstr "无法更新小组"
|
|||||||
|
|
||||||
#. TRANS: Server error displayed when group aliases could not be added.
|
#. TRANS: Server error displayed when group aliases could not be added.
|
||||||
#. TRANS: Server exception thrown when creating group aliases failed.
|
#. TRANS: Server exception thrown when creating group aliases failed.
|
||||||
#: actions/editgroup.php:279 classes/User_group.php:529
|
#: actions/editgroup.php:279 classes/User_group.php:534
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "无法创建别名。"
|
msgstr "无法创建别名。"
|
||||||
|
|
||||||
@ -3275,8 +3386,14 @@ msgstr "无法创建应用。"
|
|||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr "新小组"
|
msgstr "新小组"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a user tries to create a group while banned.
|
||||||
|
#: actions/newgroup.php:73 classes/User_group.php:485
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You are not allowed to create groups on this site."
|
||||||
|
msgstr "你不能删除这个小组。"
|
||||||
|
|
||||||
#. TRANS: Form instructions for group create form.
|
#. TRANS: Form instructions for group create form.
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:117
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
msgstr "通过此表单创建小组。"
|
msgstr "通过此表单创建小组。"
|
||||||
|
|
||||||
@ -3591,11 +3708,6 @@ msgstr "新密码"
|
|||||||
msgid "6 or more characters"
|
msgid "6 or more characters"
|
||||||
msgstr "6 个或更多字符"
|
msgstr "6 个或更多字符"
|
||||||
|
|
||||||
#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
|
|
||||||
#: actions/register.php:441
|
|
||||||
msgid "Confirm"
|
|
||||||
msgstr "密码确认"
|
|
||||||
|
|
||||||
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
|
||||||
msgid "Same as password above"
|
msgid "Same as password above"
|
||||||
msgstr "与上面相同的密码"
|
msgstr "与上面相同的密码"
|
||||||
@ -4102,6 +4214,12 @@ msgstr "无法保存标签。"
|
|||||||
msgid "Settings saved."
|
msgid "Settings saved."
|
||||||
msgstr "设置已保存。"
|
msgstr "设置已保存。"
|
||||||
|
|
||||||
|
#. TRANS: Page title for page where a user account can be restored from backup.
|
||||||
|
#: actions/profilesettings.php:481 actions/restoreaccount.php:60
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Restore account"
|
||||||
|
msgstr "创建一个账户"
|
||||||
|
|
||||||
#: actions/public.php:83
|
#: actions/public.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Beyond the page limit (%s)."
|
msgid "Beyond the page limit (%s)."
|
||||||
@ -4543,7 +4661,7 @@ msgstr "你不能重复自己的消息。"
|
|||||||
msgid "You already repeated that notice."
|
msgid "You already repeated that notice."
|
||||||
msgstr "你已转发过了那个消息。"
|
msgstr "你已转发过了那个消息。"
|
||||||
|
|
||||||
#: actions/repeat.php:114 lib/noticelist.php:691
|
#: actions/repeat.php:114 lib/noticelist.php:692
|
||||||
msgid "Repeated"
|
msgid "Repeated"
|
||||||
msgstr "已转发"
|
msgstr "已转发"
|
||||||
|
|
||||||
@ -4606,6 +4724,93 @@ msgstr ""
|
|||||||
msgid "Replies to %1$s on %2$s!"
|
msgid "Replies to %1$s on %2$s!"
|
||||||
msgstr "在%2$s上对%1$s的回复!"
|
msgstr "在%2$s上对%1$s的回复!"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
|
||||||
|
#: actions/restoreaccount.php:78
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Only logged-in users can restore their account."
|
||||||
|
msgstr "只有登录的用户才能重复发消息。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
|
||||||
|
#: actions/restoreaccount.php:83
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You may not restore your account."
|
||||||
|
msgstr "你还没登记任何程序。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
|
||||||
|
#. TRANS: Client exception. No file; probably just a non-AJAX submission.
|
||||||
|
#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
|
||||||
|
#, fuzzy
|
||||||
|
msgid "No uploaded file."
|
||||||
|
msgstr "上传文件"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
||||||
|
#: actions/restoreaccount.php:129 lib/mediafile.php:194
|
||||||
|
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||||
|
msgstr "上传文件大小超过了 php.ini 中 upload_max_filesize 的设置限制。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:135 lib/mediafile.php:200
|
||||||
|
msgid ""
|
||||||
|
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||||
|
"the HTML form."
|
||||||
|
msgstr "上传文件大小超过了 HTML 表单中 MAX_FILE_SIZE 的设置限制。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception.
|
||||||
|
#: actions/restoreaccount.php:141 lib/mediafile.php:206
|
||||||
|
msgid "The uploaded file was only partially uploaded."
|
||||||
|
msgstr "上传的文件只有部分被上传。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
||||||
|
#: actions/restoreaccount.php:150 lib/mediafile.php:214
|
||||||
|
msgid "Missing a temporary folder."
|
||||||
|
msgstr "缺少一个临时文件夹。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
||||||
|
#: actions/restoreaccount.php:154 lib/mediafile.php:218
|
||||||
|
msgid "Failed to write file to disk."
|
||||||
|
msgstr "写入磁盘失败。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
||||||
|
#: actions/restoreaccount.php:158 lib/mediafile.php:222
|
||||||
|
msgid "File upload stopped by extension."
|
||||||
|
msgstr "文件上传被扩展停止了。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
||||||
|
#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
|
||||||
|
msgid "System error uploading file."
|
||||||
|
msgstr "上传文件时出错。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when a feed is not an Atom feed.
|
||||||
|
#: actions/restoreaccount.php:207
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an Atom feed."
|
||||||
|
msgstr "所有成员"
|
||||||
|
|
||||||
|
#. TRANS: Success message when a feed has been restored.
|
||||||
|
#: actions/restoreaccount.php:241
|
||||||
|
msgid ""
|
||||||
|
"Feed has been restored. Your old posts should now appear in search and your "
|
||||||
|
"profile page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Message when a feed restore is in progress.
|
||||||
|
#: actions/restoreaccount.php:245
|
||||||
|
msgid "Feed will be restored. Please wait a few minutes for results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Form instructions for feed restore.
|
||||||
|
#: actions/restoreaccount.php:342
|
||||||
|
msgid ""
|
||||||
|
"You can upload a backed-up stream in <a href=\"http://activitystrea.ms/"
|
||||||
|
"\">Activity Streams</a> format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
|
||||||
|
#: actions/restoreaccount.php:373
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Upload the file"
|
||||||
|
msgstr "上传文件"
|
||||||
|
|
||||||
#: actions/revokerole.php:75
|
#: actions/revokerole.php:75
|
||||||
msgid "You cannot revoke user roles on this site."
|
msgid "You cannot revoke user roles on this site."
|
||||||
msgstr "你不能在这个网站移除用户角色。"
|
msgstr "你不能在这个网站移除用户角色。"
|
||||||
@ -4706,7 +4911,7 @@ msgid "Reset key & secret"
|
|||||||
msgstr "重置key和secret"
|
msgstr "重置key和secret"
|
||||||
|
|
||||||
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
#: actions/showapplication.php:252 lib/deletegroupform.php:121
|
||||||
#: lib/deleteuserform.php:66 lib/noticelist.php:672
|
#: lib/deleteuserform.php:66 lib/noticelist.php:673
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "删除"
|
msgstr "删除"
|
||||||
|
|
||||||
@ -5942,13 +6147,13 @@ msgid "Author(s)"
|
|||||||
msgstr "作者"
|
msgstr "作者"
|
||||||
|
|
||||||
#. TRANS: Activity title when marking a notice as favorite.
|
#. TRANS: Activity title when marking a notice as favorite.
|
||||||
#: classes/Fave.php:151 lib/favorform.php:143
|
#: classes/Fave.php:164 lib/favorform.php:143
|
||||||
msgid "Favor"
|
msgid "Favor"
|
||||||
msgstr "收藏"
|
msgstr "收藏"
|
||||||
|
|
||||||
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
#. TRANS: Ntofication given when a user marks a notice as favorite.
|
||||||
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
|
||||||
#: classes/Fave.php:154
|
#: classes/Fave.php:167
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s marked notice %2$s as a favorite."
|
msgid "%1$s marked notice %2$s as a favorite."
|
||||||
msgstr "%1$s 收藏了消息 %2$s 。"
|
msgstr "%1$s 收藏了消息 %2$s 。"
|
||||||
@ -6052,7 +6257,7 @@ msgid "Could not create login token for %s"
|
|||||||
msgstr "无法创建别名。"
|
msgstr "无法创建别名。"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
|
||||||
#: classes/Memcached_DataObject.php:533
|
#: classes/Memcached_DataObject.php:537
|
||||||
msgid "No database name or DSN found anywhere."
|
msgid "No database name or DSN found anywhere."
|
||||||
msgstr "没有找到数据库名称或者 DSN。"
|
msgstr "没有找到数据库名称或者 DSN。"
|
||||||
|
|
||||||
@ -6079,71 +6284,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
|
|||||||
msgstr "没有对于 消息 (%2$d) 的 个人信息页 (%1$d) 。"
|
msgstr "没有对于 消息 (%2$d) 的 个人信息页 (%1$d) 。"
|
||||||
|
|
||||||
#. TRANS: Server exception. %s are the error details.
|
#. TRANS: Server exception. %s are the error details.
|
||||||
#: classes/Notice.php:193
|
#: classes/Notice.php:199
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database error inserting hashtag: %s"
|
msgid "Database error inserting hashtag: %s"
|
||||||
msgstr "插入标签时数据库出错:%s"
|
msgstr "插入标签时数据库出错:%s"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown if a notice contains too many characters.
|
#. TRANS: Client exception thrown if a notice contains too many characters.
|
||||||
#: classes/Notice.php:270
|
#: classes/Notice.php:279
|
||||||
msgid "Problem saving notice. Too long."
|
msgid "Problem saving notice. Too long."
|
||||||
msgstr "保存消息时出错。太长。"
|
msgstr "保存消息时出错。太长。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
|
||||||
#: classes/Notice.php:275
|
#: classes/Notice.php:284
|
||||||
msgid "Problem saving notice. Unknown user."
|
msgid "Problem saving notice. Unknown user."
|
||||||
msgstr "保存消息时出错。未知用户。"
|
msgstr "保存消息时出错。未知用户。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
|
||||||
#: classes/Notice.php:281
|
#: classes/Notice.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many notices too fast; take a breather and post again in a few minutes."
|
"Too many notices too fast; take a breather and post again in a few minutes."
|
||||||
msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。"
|
msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
|
||||||
#: classes/Notice.php:288
|
#: classes/Notice.php:297
|
||||||
msgid ""
|
msgid ""
|
||||||
"Too many duplicate messages too quickly; take a breather and post again in a "
|
"Too many duplicate messages too quickly; take a breather and post again in a "
|
||||||
"few minutes."
|
"few minutes."
|
||||||
msgstr "你在短时间里发布了过多的重复消息,请深呼吸,过几分钟再发消息。"
|
msgstr "你在短时间里发布了过多的重复消息,请深呼吸,过几分钟再发消息。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
#. TRANS: Client exception thrown when a user tries to post while being banned.
|
||||||
#: classes/Notice.php:296
|
#: classes/Notice.php:305
|
||||||
msgid "You are banned from posting notices on this site."
|
msgid "You are banned from posting notices on this site."
|
||||||
msgstr "在这个网站你被禁止发布消息。"
|
msgstr "在这个网站你被禁止发布消息。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a notice cannot be saved.
|
#. TRANS: Server exception thrown when a notice cannot be saved.
|
||||||
#. TRANS: Server exception thrown when a notice cannot be updated.
|
#. TRANS: Server exception thrown when a notice cannot be updated.
|
||||||
#: classes/Notice.php:363 classes/Notice.php:390
|
#: classes/Notice.php:372 classes/Notice.php:399
|
||||||
msgid "Problem saving notice."
|
msgid "Problem saving notice."
|
||||||
msgstr "保存消息时出错。"
|
msgstr "保存消息时出错。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
|
||||||
#: classes/Notice.php:913
|
#: classes/Notice.php:914
|
||||||
msgid "Bad type provided to saveKnownGroups."
|
msgid "Bad type provided to saveKnownGroups."
|
||||||
msgstr "对 saveKnownGroups 提供的类型无效。"
|
msgstr "对 saveKnownGroups 提供的类型无效。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
#. TRANS: Server exception thrown when an update for a group inbox fails.
|
||||||
#: classes/Notice.php:1012
|
#: classes/Notice.php:1013
|
||||||
msgid "Problem saving group inbox."
|
msgid "Problem saving group inbox."
|
||||||
msgstr "保存小组收件箱时出错。"
|
msgstr "保存小组收件箱时出错。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when a reply cannot be saved.
|
#. TRANS: Server exception thrown when a reply cannot be saved.
|
||||||
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
|
||||||
#: classes/Notice.php:1126
|
#: classes/Notice.php:1127
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Could not save reply for %1$d, %2$d."
|
msgid "Could not save reply for %1$d, %2$d."
|
||||||
msgstr "无法保存回复,%1$d 对 %2$d。"
|
msgstr "无法保存回复,%1$d 对 %2$d。"
|
||||||
|
|
||||||
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
||||||
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
||||||
#: classes/Notice.php:1645
|
#: classes/Notice.php:1646
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "RT @%1$s %2$s"
|
msgid "RT @%1$s %2$s"
|
||||||
msgstr "RT @%1$s %2$s"
|
msgstr "RT @%1$s %2$s"
|
||||||
|
|
||||||
#. TRANS: Full name of a profile or group followed by nickname in parens
|
#. TRANS: Full name of a profile or group followed by nickname in parens
|
||||||
#: classes/Profile.php:172 classes/User_group.php:247
|
#: classes/Profile.php:172 classes/User_group.php:242
|
||||||
#, php-format
|
#, php-format
|
||||||
msgctxt "FANCYNAME"
|
msgctxt "FANCYNAME"
|
||||||
msgid "%1$s (%2$s)"
|
msgid "%1$s (%2$s)"
|
||||||
@ -6151,14 +6356,14 @@ msgstr "%1$s (%2$s)"
|
|||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:798
|
#: classes/Profile.php:765
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
|
||||||
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,不存在。"
|
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,不存在。"
|
||||||
|
|
||||||
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
|
||||||
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
|
||||||
#: classes/Profile.php:807
|
#: classes/Profile.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
|
||||||
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,数据库错误。"
|
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,数据库错误。"
|
||||||
@ -6228,32 +6433,32 @@ msgid "Welcome to %1$s, @%2$s!"
|
|||||||
msgstr "欢迎来到 %1$s,@%2$s!"
|
msgstr "欢迎来到 %1$s,@%2$s!"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:923
|
#: classes/User.php:918
|
||||||
msgid "No single user defined for single-user mode."
|
msgid "No single user defined for single-user mode."
|
||||||
msgstr "没有单独的用户被定义为单用户模式。"
|
msgstr "没有单独的用户被定义为单用户模式。"
|
||||||
|
|
||||||
#. TRANS: Server exception.
|
#. TRANS: Server exception.
|
||||||
#: classes/User.php:927
|
#: classes/User.php:922
|
||||||
msgid "Single-user mode code called when not enabled."
|
msgid "Single-user mode code called when not enabled."
|
||||||
msgstr "没启用单用户模式的代码。"
|
msgstr "没启用单用户模式的代码。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when creating a group failed.
|
#. TRANS: Server exception thrown when creating a group failed.
|
||||||
#: classes/User_group.php:511
|
#: classes/User_group.php:516
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "无法创建小组。"
|
msgstr "无法创建小组。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when updating a group URI failed.
|
#. TRANS: Server exception thrown when updating a group URI failed.
|
||||||
#: classes/User_group.php:521
|
#: classes/User_group.php:526
|
||||||
msgid "Could not set group URI."
|
msgid "Could not set group URI."
|
||||||
msgstr "无法设置小组 URI。"
|
msgstr "无法设置小组 URI。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when setting group membership failed.
|
#. TRANS: Server exception thrown when setting group membership failed.
|
||||||
#: classes/User_group.php:544
|
#: classes/User_group.php:549
|
||||||
msgid "Could not set group membership."
|
msgid "Could not set group membership."
|
||||||
msgstr "无法设置小组成员。"
|
msgstr "无法设置小组成员。"
|
||||||
|
|
||||||
#. TRANS: Server exception thrown when saving local group information failed.
|
#. TRANS: Server exception thrown when saving local group information failed.
|
||||||
#: classes/User_group.php:559
|
#: classes/User_group.php:564
|
||||||
msgid "Could not save local group info."
|
msgid "Could not save local group info."
|
||||||
msgstr "无法保存本地小组信息。"
|
msgstr "无法保存本地小组信息。"
|
||||||
|
|
||||||
@ -6587,10 +6792,56 @@ msgstr "之前"
|
|||||||
msgid "Expecting a root feed element but got a whole XML document."
|
msgid "Expecting a root feed element but got a whole XML document."
|
||||||
msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。"
|
msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。"
|
||||||
|
|
||||||
#: lib/activity.php:360
|
#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
|
||||||
|
#: lib/activityimporter.php:81
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "Unknown verb: \"%s\"."
|
||||||
|
msgstr "未知的语言“%s”"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
|
||||||
|
#: lib/activityimporter.php:107
|
||||||
|
msgid "Cannot force subscription for untrusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
|
||||||
|
#: lib/activityimporter.php:117
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Post"
|
msgid "Cannot force remote user to subscribe."
|
||||||
msgstr "相片"
|
msgstr "指定要关注的用户名。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
|
||||||
|
#: lib/activityimporter.php:132
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Unknown profile."
|
||||||
|
msgstr "未知文件类型"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
|
||||||
|
#: lib/activityimporter.php:138
|
||||||
|
msgid "This activity seems unrelated to our user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
|
||||||
|
#: lib/activityimporter.php:154
|
||||||
|
msgid "Remote profile is not a group!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
|
||||||
|
#: lib/activityimporter.php:163
|
||||||
|
#, fuzzy
|
||||||
|
msgid "User is already a member of this group."
|
||||||
|
msgstr "你已经是该小组成员。"
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
|
||||||
|
#: lib/activityimporter.php:207
|
||||||
|
msgid "Not overwriting author info for non-trusted user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Client exception thrown when trying to import a notice without content.
|
||||||
|
#. TRANS: %s is the notice URI.
|
||||||
|
#: lib/activityimporter.php:223
|
||||||
|
#, fuzzy, php-format
|
||||||
|
msgid "No content for notice %s."
|
||||||
|
msgstr "搜索消息内容"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when there is no source attribute.
|
#. TRANS: Client exception thrown when there is no source attribute.
|
||||||
#: lib/activityutils.php:200
|
#: lib/activityutils.php:200
|
||||||
@ -6869,10 +7120,17 @@ msgctxt "BUTTON"
|
|||||||
msgid "Revoke"
|
msgid "Revoke"
|
||||||
msgstr "取消"
|
msgstr "取消"
|
||||||
|
|
||||||
#: lib/atom10feed.php:112
|
#: lib/atom10feed.php:113
|
||||||
msgid "author element must contain a name element."
|
#, fuzzy
|
||||||
|
msgid "Author element must contain a name element."
|
||||||
msgstr "作者元素必须包含一个名称元素。"
|
msgstr "作者元素必须包含一个名称元素。"
|
||||||
|
|
||||||
|
#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
|
||||||
|
#: lib/atom10feed.php:160
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Do not use this method!"
|
||||||
|
msgstr "不要删除这个小组"
|
||||||
|
|
||||||
#. TRANS: DT element label in attachment list item.
|
#. TRANS: DT element label in attachment list item.
|
||||||
#: lib/attachmentlist.php:294
|
#: lib/attachmentlist.php:294
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
@ -7292,24 +7550,24 @@ msgstr ""
|
|||||||
"tracking - 尚未实现。\n"
|
"tracking - 尚未实现。\n"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:147
|
#: lib/common.php:150
|
||||||
msgid "No configuration file found."
|
msgid "No configuration file found."
|
||||||
msgstr "没有找到配置文件。"
|
msgstr "没有找到配置文件。"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
|
||||||
#: lib/common.php:150
|
#: lib/common.php:153
|
||||||
msgid "I looked for configuration files in the following places:"
|
msgid "I looked for configuration files in the following places:"
|
||||||
msgstr "我在以下位置查找了配置文件:"
|
msgstr "我在以下位置查找了配置文件:"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#: lib/common.php:153
|
#: lib/common.php:156
|
||||||
msgid "You may wish to run the installer to fix this."
|
msgid "You may wish to run the installer to fix this."
|
||||||
msgstr "或许你想运行安装程序来解决这个问题。"
|
msgstr "或许你想运行安装程序来解决这个问题。"
|
||||||
|
|
||||||
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
|
||||||
#. TRANS: The text is link text that leads to the installer page.
|
#. TRANS: The text is link text that leads to the installer page.
|
||||||
#: lib/common.php:157
|
#: lib/common.php:160
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "去安装程序。"
|
msgstr "去安装程序。"
|
||||||
|
|
||||||
@ -7409,6 +7667,19 @@ msgstr "Atom"
|
|||||||
msgid "FOAF"
|
msgid "FOAF"
|
||||||
msgstr "FOAF"
|
msgstr "FOAF"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:75
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Not an atom feed."
|
||||||
|
msgstr "所有成员"
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:82
|
||||||
|
msgid "No author in the feed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/feedimporter.php:89
|
||||||
|
msgid "Can't import without a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Header for feed links (h2).
|
#. TRANS: Header for feed links (h2).
|
||||||
#: lib/feedlist.php:66
|
#: lib/feedlist.php:66
|
||||||
msgid "Feeds"
|
msgid "Feeds"
|
||||||
@ -7585,11 +7856,6 @@ msgstr "文件太大。文件大小限制在%s以下。"
|
|||||||
msgid "Partial upload."
|
msgid "Partial upload."
|
||||||
msgstr "部分上传。"
|
msgstr "部分上传。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
|
|
||||||
#: lib/imagefile.php:103 lib/mediafile.php:228
|
|
||||||
msgid "System error uploading file."
|
|
||||||
msgstr "上传文件时出错。"
|
|
||||||
|
|
||||||
#: lib/imagefile.php:111
|
#: lib/imagefile.php:111
|
||||||
msgid "Not an image or corrupt file."
|
msgid "Not an image or corrupt file."
|
||||||
msgstr "不是图片文件或文件已损坏。"
|
msgstr "不是图片文件或文件已损坏。"
|
||||||
@ -8003,7 +8269,7 @@ msgstr ""
|
|||||||
"你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户"
|
"你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户"
|
||||||
"发给你你私信只有你看得到。"
|
"发给你你私信只有你看得到。"
|
||||||
|
|
||||||
#: lib/mailbox.php:228 lib/noticelist.php:521
|
#: lib/mailbox.php:228 lib/noticelist.php:522
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr "通过"
|
msgstr "通过"
|
||||||
|
|
||||||
@ -8033,38 +8299,6 @@ msgstr "不支持的信息格式:%s"
|
|||||||
msgid "There was a database error while saving your file. Please try again."
|
msgid "There was a database error while saving your file. Please try again."
|
||||||
msgstr "保存你的文件时数据库出现了一个错误。请重试。"
|
msgstr "保存你的文件时数据库出现了一个错误。请重试。"
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
|
|
||||||
#: lib/mediafile.php:194
|
|
||||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
|
||||||
msgstr "上传文件大小超过了 php.ini 中 upload_max_filesize 的设置限制。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:200
|
|
||||||
msgid ""
|
|
||||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
|
||||||
"the HTML form."
|
|
||||||
msgstr "上传文件大小超过了 HTML 表单中 MAX_FILE_SIZE 的设置限制。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception.
|
|
||||||
#: lib/mediafile.php:206
|
|
||||||
msgid "The uploaded file was only partially uploaded."
|
|
||||||
msgstr "上传的文件只有部分被上传。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
|
|
||||||
#: lib/mediafile.php:214
|
|
||||||
msgid "Missing a temporary folder."
|
|
||||||
msgstr "缺少一个临时文件夹。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
|
|
||||||
#: lib/mediafile.php:218
|
|
||||||
msgid "Failed to write file to disk."
|
|
||||||
msgstr "写入磁盘失败。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
|
|
||||||
#: lib/mediafile.php:222
|
|
||||||
msgid "File upload stopped by extension."
|
|
||||||
msgstr "文件上传被扩展停止了。"
|
|
||||||
|
|
||||||
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
|
||||||
#: lib/mediafile.php:238 lib/mediafile.php:281
|
#: lib/mediafile.php:238 lib/mediafile.php:281
|
||||||
msgid "File exceeds user's quota."
|
msgid "File exceeds user's quota."
|
||||||
@ -8085,7 +8319,7 @@ msgstr "无法判断文件的 MIME 类型。"
|
|||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
|
||||||
#. TRANS: the MIME type that was denied.
|
#. TRANS: the MIME type that was denied.
|
||||||
#: lib/mediafile.php:394
|
#: lib/mediafile.php:396
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
|
||||||
@ -8094,7 +8328,7 @@ msgstr "此服务器不支持 “%1$s” 的文件格式,试下使用其他的
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
|
||||||
#. TRANS: %s is the file type that was denied.
|
#. TRANS: %s is the file type that was denied.
|
||||||
#: lib/mediafile.php:399
|
#: lib/mediafile.php:401
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "\"%s\" is not a supported file type on this server."
|
msgid "\"%s\" is not a supported file type on this server."
|
||||||
msgstr "这个服务器不支持 %s 的文件格式。"
|
msgstr "这个服务器不支持 %s 的文件格式。"
|
||||||
@ -8127,17 +8361,17 @@ msgid "Send"
|
|||||||
msgstr "发布"
|
msgstr "发布"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:163
|
#: lib/nickname.php:165
|
||||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr "昵称只能使用小写字母和数字且不能使用空格。"
|
msgstr "昵称只能使用小写字母和数字且不能使用空格。"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:176
|
#: lib/nickname.php:178
|
||||||
msgid "Nickname cannot be empty."
|
msgid "Nickname cannot be empty."
|
||||||
msgstr "昵称不能为空。"
|
msgstr "昵称不能为空。"
|
||||||
|
|
||||||
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
#. TRANS: Validation error in form for registration, profile and group settings, etc.
|
||||||
#: lib/nickname.php:189
|
#: lib/nickname.php:191
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Nickname cannot be more than %d character long."
|
msgid "Nickname cannot be more than %d character long."
|
||||||
msgid_plural "Nickname cannot be more than %d characters long."
|
msgid_plural "Nickname cannot be more than %d characters long."
|
||||||
@ -8175,55 +8409,55 @@ msgid ""
|
|||||||
msgstr "抱歉,获取你的地理位置时间过长,请稍候重试"
|
msgstr "抱歉,获取你的地理位置时间过长,请稍候重试"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of north
|
#. TRANS: Used in coordinates as abbreviation of north
|
||||||
#: lib/noticelist.php:451
|
#: lib/noticelist.php:452
|
||||||
msgid "N"
|
msgid "N"
|
||||||
msgstr "N"
|
msgstr "N"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of south
|
#. TRANS: Used in coordinates as abbreviation of south
|
||||||
#: lib/noticelist.php:453
|
#: lib/noticelist.php:454
|
||||||
msgid "S"
|
msgid "S"
|
||||||
msgstr "S"
|
msgstr "S"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of east
|
#. TRANS: Used in coordinates as abbreviation of east
|
||||||
#: lib/noticelist.php:455
|
#: lib/noticelist.php:456
|
||||||
msgid "E"
|
msgid "E"
|
||||||
msgstr "E"
|
msgstr "E"
|
||||||
|
|
||||||
#. TRANS: Used in coordinates as abbreviation of west
|
#. TRANS: Used in coordinates as abbreviation of west
|
||||||
#: lib/noticelist.php:457
|
#: lib/noticelist.php:458
|
||||||
msgid "W"
|
msgid "W"
|
||||||
msgstr "W"
|
msgstr "W"
|
||||||
|
|
||||||
#: lib/noticelist.php:459
|
#: lib/noticelist.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||||
|
|
||||||
#: lib/noticelist.php:468
|
#: lib/noticelist.php:469
|
||||||
msgid "at"
|
msgid "at"
|
||||||
msgstr "位于"
|
msgstr "位于"
|
||||||
|
|
||||||
#: lib/noticelist.php:517
|
#: lib/noticelist.php:518
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "网页"
|
msgstr "网页"
|
||||||
|
|
||||||
#: lib/noticelist.php:583
|
#: lib/noticelist.php:584
|
||||||
msgid "in context"
|
msgid "in context"
|
||||||
msgstr "查看对话"
|
msgstr "查看对话"
|
||||||
|
|
||||||
#: lib/noticelist.php:618
|
#: lib/noticelist.php:619
|
||||||
msgid "Repeated by"
|
msgid "Repeated by"
|
||||||
msgstr "转发来自"
|
msgstr "转发来自"
|
||||||
|
|
||||||
#: lib/noticelist.php:645
|
#: lib/noticelist.php:646
|
||||||
msgid "Reply to this notice"
|
msgid "Reply to this notice"
|
||||||
msgstr "回复"
|
msgstr "回复"
|
||||||
|
|
||||||
#: lib/noticelist.php:646
|
#: lib/noticelist.php:647
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr "回复"
|
msgstr "回复"
|
||||||
|
|
||||||
#: lib/noticelist.php:690
|
#: lib/noticelist.php:691
|
||||||
msgid "Notice repeated"
|
msgid "Notice repeated"
|
||||||
msgstr "消息已转发"
|
msgstr "消息已转发"
|
||||||
|
|
||||||
@ -8377,7 +8611,7 @@ msgid "Revoke the \"%s\" role from this user"
|
|||||||
msgstr "取消这个用户的\"%s\"权限"
|
msgstr "取消这个用户的\"%s\"权限"
|
||||||
|
|
||||||
#. TRANS: Client error on action trying to visit a non-existing page.
|
#. TRANS: Client error on action trying to visit a non-existing page.
|
||||||
#: lib/router.php:957
|
#: lib/router.php:974
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "没有找到页面。"
|
msgstr "没有找到页面。"
|
||||||
|
|
||||||
@ -8717,19 +8951,7 @@ msgid "Invalid XML, missing XRD root."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
|
||||||
#: scripts/restoreuser.php:61
|
#: scripts/restoreuser.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Getting backup from file '%s'."
|
msgid "Getting backup from file '%s'."
|
||||||
msgstr "从文件'%s'获取备份。"
|
msgstr "从文件'%s'获取备份。"
|
||||||
|
|
||||||
#. TRANS: Commandline script output.
|
|
||||||
#: scripts/restoreuser.php:91
|
|
||||||
msgid "No user specified; using backup user."
|
|
||||||
msgstr "没有用户被指定;使用备份用户。"
|
|
||||||
|
|
||||||
#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
|
|
||||||
#: scripts/restoreuser.php:98
|
|
||||||
#, php-format
|
|
||||||
msgid "%d entry in backup."
|
|
||||||
msgid_plural "%d entries in backup."
|
|
||||||
msgstr[0] "备份中有 %d 个条目。"
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - APC to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - APC to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -9,14 +9,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - APC\n"
|
"Project-Id-Version: StatusNet - APC\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:43+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:57+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-apc\n"
|
"X-Message-Group: #out-statusnet-plugin-apc\n"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - Adsense to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - Adsense to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -10,14 +10,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Adsense\n"
|
"Project-Id-Version: StatusNet - Adsense\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:23+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:40+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:56+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Adsense\n"
|
"Project-Id-Version: StatusNet - Adsense\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:40+0000\n"
|
||||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:56+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: gl\n"
|
"X-Language-Code: gl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
||||||
@ -78,7 +78,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: adsenseadminpanel.php:188
|
#: adsenseadminpanel.php:188
|
||||||
msgid "Leaderboard"
|
msgid "Leaderboard"
|
||||||
msgstr ""
|
msgstr "Taboleiro de logros"
|
||||||
|
|
||||||
#: adsenseadminpanel.php:189
|
#: adsenseadminpanel.php:189
|
||||||
msgid "Leaderboard slot code"
|
msgid "Leaderboard slot code"
|
||||||
|
101
plugins/Adsense/locale/he/LC_MESSAGES/Adsense.po
Normal file
101
plugins/Adsense/locale/he/LC_MESSAGES/Adsense.po
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# Translation of StatusNet - Adsense to Hebrew (עברית)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: YaronSh
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Adsense\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-15 00:20+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-15 00:23:05+0000\n"
|
||||||
|
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:25+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: he\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. TRANS: Menu item title/tooltip
|
||||||
|
#: AdsensePlugin.php:194
|
||||||
|
msgid "AdSense configuration"
|
||||||
|
msgstr "תצורת AdSense"
|
||||||
|
|
||||||
|
#. TRANS: Menu item for site administration
|
||||||
|
#: AdsensePlugin.php:196
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: AdsensePlugin.php:209
|
||||||
|
msgid "Plugin to add Google AdSense to StatusNet sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:52
|
||||||
|
msgctxt "TITLE"
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:62
|
||||||
|
msgid "AdSense settings for this StatusNet site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:164
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:165
|
||||||
|
msgid "Google client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:170
|
||||||
|
msgid "Ad script URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:171
|
||||||
|
msgid "Script URL (advanced)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:176
|
||||||
|
msgid "Medium rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:177
|
||||||
|
msgid "Medium rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:182
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:183
|
||||||
|
msgid "Rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:188
|
||||||
|
msgid "Leaderboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:189
|
||||||
|
msgid "Leaderboard slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:194
|
||||||
|
msgid "Skyscraper"
|
||||||
|
msgstr "גורד שחקים"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:195
|
||||||
|
msgid "Wide skyscraper slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "שמירה"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save AdSense settings"
|
||||||
|
msgstr ""
|
101
plugins/Adsense/locale/lb/LC_MESSAGES/Adsense.po
Normal file
101
plugins/Adsense/locale/lb/LC_MESSAGES/Adsense.po
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# Translation of StatusNet - Adsense to Luxembourgish (Lëtzebuergesch)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Robby
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Adsense\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 10:32:40+0000\n"
|
||||||
|
"Language-Team: Luxembourgish <http://translatewiki.net/wiki/Portal:lb>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-10 18:25:56+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: lb\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#. TRANS: Menu item title/tooltip
|
||||||
|
#: AdsensePlugin.php:194
|
||||||
|
msgid "AdSense configuration"
|
||||||
|
msgstr "AdSense Astellungen"
|
||||||
|
|
||||||
|
#. TRANS: Menu item for site administration
|
||||||
|
#: AdsensePlugin.php:196
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: AdsensePlugin.php:209
|
||||||
|
msgid "Plugin to add Google AdSense to StatusNet sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:52
|
||||||
|
msgctxt "TITLE"
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:62
|
||||||
|
msgid "AdSense settings for this StatusNet site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:164
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:165
|
||||||
|
msgid "Google client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:170
|
||||||
|
msgid "Ad script URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:171
|
||||||
|
msgid "Script URL (advanced)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:176
|
||||||
|
msgid "Medium rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:177
|
||||||
|
msgid "Medium rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:182
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr "Rechteck"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:183
|
||||||
|
msgid "Rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:188
|
||||||
|
msgid "Leaderboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:189
|
||||||
|
msgid "Leaderboard slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:194
|
||||||
|
msgid "Skyscraper"
|
||||||
|
msgstr "Vertikale Banner"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:195
|
||||||
|
msgid "Wide skyscraper slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Späicheren"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save AdSense settings"
|
||||||
|
msgstr "AdSense-Astellunge späicheren"
|
102
plugins/Adsense/locale/pl/LC_MESSAGES/Adsense.po
Normal file
102
plugins/Adsense/locale/pl/LC_MESSAGES/Adsense.po
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
# Translation of StatusNet - Adsense to Polish (Polski)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Raven
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Adsense\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-15 00:20+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-15 00:23:05+0000\n"
|
||||||
|
"Language-Team: Polish <http://translatewiki.net/wiki/Portal:pl>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:25+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: pl\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-adsense\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && "
|
||||||
|
"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
|
#. TRANS: Menu item title/tooltip
|
||||||
|
#: AdsensePlugin.php:194
|
||||||
|
msgid "AdSense configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Menu item for site administration
|
||||||
|
#: AdsensePlugin.php:196
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr "AdSense"
|
||||||
|
|
||||||
|
#: AdsensePlugin.php:209
|
||||||
|
msgid "Plugin to add Google AdSense to StatusNet sites."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:52
|
||||||
|
msgctxt "TITLE"
|
||||||
|
msgid "AdSense"
|
||||||
|
msgstr "AdSense"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:62
|
||||||
|
msgid "AdSense settings for this StatusNet site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:164
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:165
|
||||||
|
msgid "Google client ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:170
|
||||||
|
msgid "Ad script URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:171
|
||||||
|
msgid "Script URL (advanced)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:176
|
||||||
|
msgid "Medium rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:177
|
||||||
|
msgid "Medium rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:182
|
||||||
|
msgid "Rectangle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:183
|
||||||
|
msgid "Rectangle slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:188
|
||||||
|
msgid "Leaderboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:189
|
||||||
|
msgid "Leaderboard slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:194
|
||||||
|
msgid "Skyscraper"
|
||||||
|
msgstr "Skyscraper"
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:195
|
||||||
|
msgid "Wide skyscraper slot code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: adsenseadminpanel.php:208
|
||||||
|
msgid "Save AdSense settings"
|
||||||
|
msgstr ""
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - AnonymousFave to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - AnonymousFave to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -10,14 +10,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - AnonymousFave\n"
|
"Project-Id-Version: StatusNet - AnonymousFave\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:42+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:56+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
|
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - AutoSandbox to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - AutoSandbox to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -9,14 +9,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - AutoSandbox\n"
|
"Project-Id-Version: StatusNet - AutoSandbox\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:30+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:44+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-29 19:38:24+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:57+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
|
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - Autocomplete to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - Autocomplete to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -9,14 +9,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Autocomplete\n"
|
"Project-Id-Version: StatusNet - Autocomplete\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:30+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:43+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-29 19:38:23+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:57+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
|
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
|
||||||
|
@ -53,7 +53,7 @@ class AwesomenessPlugin extends Plugin
|
|||||||
'homepage' => 'http://status.net/wiki/Plugin:Awesomeness',
|
'homepage' => 'http://status.net/wiki/Plugin:Awesomeness',
|
||||||
// TRANS: Plugin description for a sample plugin.
|
// TRANS: Plugin description for a sample plugin.
|
||||||
'rawdescription' => _m(
|
'rawdescription' => _m(
|
||||||
'The Awesomeness plugin adds aditional awesomeness ' .
|
'The Awesomeness plugin adds additional awesomeness ' .
|
||||||
'to a StatusNet installation.'
|
'to a StatusNet installation.'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,7 +16,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: AwesomenessPlugin.php:55
|
#: AwesomenessPlugin.php:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
"installation."
|
"installation."
|
||||||
|
@ -0,0 +1,31 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: EugeneZelenko
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: be-tarask\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"Дапаўненьне Awesomeness дадае незвычайныя магчымасьці ў усталяваньне "
|
||||||
|
"StatusNet."
|
30
plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po
Normal file
30
plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to French (Français)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Sherbrooke
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: fr\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"Le plugin Awesomeness ajoute des suppléments impressionnants à une "
|
||||||
|
"installation de StatusNet."
|
30
plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po
Normal file
30
plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Interlingua (Interlingua)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: McDutchie
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: ia\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"Le plug-in Awesomeness rende un installation de StatusNet plus "
|
||||||
|
"impressionante."
|
30
plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po
Normal file
30
plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Macedonian (Македонски)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Bjankuloski06
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: mk\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"Приклучокот „Феноменалност“ ѝ дава дополнителна феноменалност на "
|
||||||
|
"инсталацијата на StatusNet."
|
30
plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po
Normal file
30
plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Dutch (Nederlands)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Siebrand
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: nl\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"De Awesomenessplug-in voegt extra awesomeness toe aan een "
|
||||||
|
"StatusNetinstallatie."
|
29
plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po
Normal file
29
plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Russian (Русский)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Александр Сигачёв
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: ru\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||||
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr "Потрясающий плагин добавляет потрясающие вещи в StatusNet."
|
31
plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po
Normal file
31
plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Ukrainian (Українська)
|
||||||
|
# Expored from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Boogie
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-01-14 23:35:35+0000\n"
|
||||||
|
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-01-14 13:18:30+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: uk\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||||
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"Напрочуд дивовижний додаток додає додаткову напрочуд дивовижну "
|
||||||
|
"функціональність до вашої інсталяції StatusNet."
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - BitlyUrl to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - BitlyUrl to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -10,14 +10,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:32+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:46+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:26+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:32+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:46+0000\n"
|
||||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:26+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: gl\n"
|
"X-Language-Code: gl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
@ -29,6 +29,8 @@ msgstr ""
|
|||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Emprega o servizo de abreviación de enderezos URL <a href=\"http://%1$s/\">%1"
|
||||||
|
"$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:216
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#
|
#
|
||||||
# Author: Eleferen
|
# Author: Eleferen
|
||||||
# Author: Lockal
|
# Author: Lockal
|
||||||
|
# Author: Александр Сигачёв
|
||||||
# --
|
# --
|
||||||
# This file is distributed under the same license as the StatusNet package.
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
#
|
#
|
||||||
@ -10,13 +11,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:32+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:46+0000\n"
|
||||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:26+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ru\n"
|
"X-Language-Code: ru\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
@ -25,7 +26,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:48
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr ""
|
msgstr "Вы должны указать serviceUrl для bit.ly сокращений."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:175
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:32+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:46+0000\n"
|
||||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 20:40:26+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: uk\n"
|
"X-Language-Code: uk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - Blacklist to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - Blacklist to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -10,14 +10,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Blacklist\n"
|
"Project-Id-Version: StatusNet - Blacklist\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:48+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:24+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
|
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - Blacklist\n"
|
"Project-Id-Version: StatusNet - Blacklist\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:48+0000\n"
|
||||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:24+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: br\n"
|
"X-Language-Code: br\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
|
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
|
||||||
@ -59,13 +59,13 @@ msgstr ""
|
|||||||
#: BlacklistPlugin.php:381
|
#: BlacklistPlugin.php:381
|
||||||
msgctxt "MENU"
|
msgctxt "MENU"
|
||||||
msgid "Blacklist"
|
msgid "Blacklist"
|
||||||
msgstr ""
|
msgstr "Roll zu"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item in admin panel.
|
#. TRANS: Tooltip for menu item in admin panel.
|
||||||
#: BlacklistPlugin.php:383
|
#: BlacklistPlugin.php:383
|
||||||
msgctxt "TOOLTIP"
|
msgctxt "TOOLTIP"
|
||||||
msgid "Blacklist configuration"
|
msgid "Blacklist configuration"
|
||||||
msgstr ""
|
msgstr "Kefluniadur ar roll zu"
|
||||||
|
|
||||||
#. TRANS: Checkbox with text label in the delete user form.
|
#. TRANS: Checkbox with text label in the delete user form.
|
||||||
#: BlacklistPlugin.php:410
|
#: BlacklistPlugin.php:410
|
||||||
@ -92,13 +92,13 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname.
|
#. TRANS: Client exception thrown trying to subscribe to a person with a blocked nickname. %s is the blocked nickname.
|
||||||
#: BlacklistPlugin.php:545
|
#: BlacklistPlugin.php:545
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Can't subscribe to nickname \"%s\"."
|
msgid "Can't subscribe to nickname \"%s\"."
|
||||||
msgstr "Ne c'hellit ket implij al lesanv \"%s\"."
|
msgstr "Ne c'hellit ket en em enskrivañ gant al lesanv \"%s\"."
|
||||||
|
|
||||||
#: blacklistadminpanel.php:52
|
#: blacklistadminpanel.php:52
|
||||||
msgid "Blacklist"
|
msgid "Blacklist"
|
||||||
msgstr ""
|
msgstr "Roll zu"
|
||||||
|
|
||||||
#: blacklistadminpanel.php:62
|
#: blacklistadminpanel.php:62
|
||||||
msgid "Blacklisted URLs and nicknames"
|
msgid "Blacklisted URLs and nicknames"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Translation of StatusNet - BlankAd to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
# Translation of StatusNet - BlankAd to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
|
||||||
# Expored from translatewiki.net
|
# Expored from translatewiki.net
|
||||||
#
|
#
|
||||||
# Author: EugeneZelenko
|
# Author: EugeneZelenko
|
||||||
@ -9,14 +9,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: br\n"
|
"X-Language-Code: br\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: de\n"
|
"X-Language-Code: de\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:34+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: es\n"
|
"X-Language-Code: es\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: fr\n"
|
"X-Language-Code: fr\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: he\n"
|
"X-Language-Code: he\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ia\n"
|
"X-Language-Code: ia\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: mk\n"
|
"X-Language-Code: mk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: no\n"
|
"X-Language-Code: no\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: nl\n"
|
"X-Language-Code: nl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: pt\n"
|
"X-Language-Code: pt\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ru\n"
|
"X-Language-Code: ru\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: tl\n"
|
"X-Language-Code: tl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: uk\n"
|
"X-Language-Code: uk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
@ -9,14 +9,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BlankAd\n"
|
"Project-Id-Version: StatusNet - BlankAd\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||||
"PO-Revision-Date: 2010-12-16 15:11:35+0000\n"
|
"PO-Revision-Date: 2011-01-14 10:32:49+0000\n"
|
||||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||||
"hans>\n"
|
"hans>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2010-11-30 17:54:25+0000\n"
|
"X-POT-Import-Date: 2011-01-10 18:25:58+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: zh-hans\n"
|
"X-Language-Code: zh-hans\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
"X-Message-Group: #out-statusnet-plugin-blankad\n"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user