Merge branch '0.9.x' into testing
This commit is contained in:
commit
621a7cb36d
|
@ -217,7 +217,7 @@ class AtompubmembershipfeedAction extends ApiAuthAction
|
|||
$this->auth_user->id != $this->_profile->id) {
|
||||
// TRANS: Client exception thrown when trying subscribe someone else to a group.
|
||||
throw new ClientException(_("Cannot add someone else's".
|
||||
" membership"), 403);
|
||||
" membership."), 403);
|
||||
}
|
||||
|
||||
$xml = file_get_contents('php://input');
|
||||
|
|
|
@ -149,7 +149,7 @@ class AtompubshowfavoriteAction extends ApiAuthAction
|
|||
$this->auth_user->id != $this->_profile->id) {
|
||||
// TRANS: Client exception thrown when trying to remove a favorite notice of another user.
|
||||
throw new ClientException(_("Cannot delete someone else's".
|
||||
" favorite"), 403);
|
||||
" favorite."), 403);
|
||||
}
|
||||
|
||||
$this->_fave->delete();
|
||||
|
|
|
@ -78,7 +78,7 @@ class AtompubshowmembershipAction extends ApiAuthAction
|
|||
|
||||
if (empty($this->_group)) {
|
||||
// TRANS: Client exception thrown when referencing a non-existing group.
|
||||
throw new ClientException(_('No such group'), 404);
|
||||
throw new ClientException(_('No such group.'), 404);
|
||||
}
|
||||
|
||||
$kv = array('group_id' => $groupId,
|
||||
|
@ -88,7 +88,7 @@ class AtompubshowmembershipAction extends ApiAuthAction
|
|||
|
||||
if (empty($this->_membership)) {
|
||||
// TRANS: Client exception thrown when trying to show membership of a non-subscribed group
|
||||
throw new ClientException(_('Not a member'), 404);
|
||||
throw new ClientException(_('Not a member.'), 404);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
@ -113,7 +113,7 @@ class AtompubshowmembershipAction extends ApiAuthAction
|
|||
break;
|
||||
default:
|
||||
// TRANS: Client exception thrown when using an unsupported HTTP method.
|
||||
throw new ClientException(_('HTTP method not supported'), 405);
|
||||
throw new ClientException(_('HTTP method not supported.'), 405);
|
||||
break;
|
||||
}
|
||||
return;
|
||||
|
@ -149,7 +149,7 @@ class AtompubshowmembershipAction extends ApiAuthAction
|
|||
$this->auth_user->id != $this->_profile->id) {
|
||||
// TRANS: Client exception thrown when deleting someone else's membership.
|
||||
throw new ClientException(_("Cannot delete someone else's".
|
||||
" membership"), 403);
|
||||
" membership."), 403);
|
||||
}
|
||||
|
||||
if (Event::handle('StartLeaveGroup', array($this->_group, $this->auth_user))) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Copyright (C) 2010, StatusNet, Inc.
|
||||
*
|
||||
* Download a backup of your own account to the browser
|
||||
*
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
|
@ -48,17 +48,16 @@ if (!defined('STATUSNET')) {
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class BackupaccountAction extends Action
|
||||
{
|
||||
/**
|
||||
* Returns the title of the page
|
||||
*
|
||||
*
|
||||
* @return string page title
|
||||
*/
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title for backup account page.
|
||||
return _("Backup account");
|
||||
}
|
||||
|
||||
|
@ -69,7 +68,6 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return boolean true
|
||||
*/
|
||||
|
||||
function prepare($argarray)
|
||||
{
|
||||
parent::prepare($argarray);
|
||||
|
@ -77,10 +75,12 @@ class BackupaccountAction extends Action
|
|||
$cur = common_current_user();
|
||||
|
||||
if (empty($cur)) {
|
||||
// TRANS: Client exception thrown when trying to backup an account while not logged in.
|
||||
throw new ClientException(_('Only logged-in users can backup their account.'), 403);
|
||||
}
|
||||
|
||||
if (!$cur->hasRight(Right::BACKUPACCOUNT)) {
|
||||
// TRANS: Client exception thrown when trying to backup an account without having backup rights.
|
||||
throw new ClientException(_('You may not backup your account.'), 403);
|
||||
}
|
||||
|
||||
|
@ -94,7 +94,6 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($argarray=null)
|
||||
{
|
||||
parent::handle($argarray);
|
||||
|
@ -109,7 +108,7 @@ class BackupaccountAction extends Action
|
|||
|
||||
/**
|
||||
* Send a feed of the user's activities to the browser
|
||||
*
|
||||
*
|
||||
* Uses the UserActivityStream class; may take a long time!
|
||||
*
|
||||
* @return void
|
||||
|
@ -118,7 +117,7 @@ class BackupaccountAction extends Action
|
|||
function sendFeed()
|
||||
{
|
||||
$cur = common_current_user();
|
||||
|
||||
|
||||
$stream = new UserActivityStream($cur);
|
||||
|
||||
header('Content-Disposition: attachment; filename='.$cur->nickname.'.atom');
|
||||
|
@ -132,13 +131,13 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
|
||||
function showContent()
|
||||
{
|
||||
$form = new BackupAccountForm($this);
|
||||
$form->show();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Return true if read only.
|
||||
*
|
||||
|
@ -148,7 +147,6 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return boolean is read only action?
|
||||
*/
|
||||
|
||||
function isReadOnly($args)
|
||||
{
|
||||
return false;
|
||||
|
@ -161,7 +159,6 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return string last modified http header
|
||||
*/
|
||||
|
||||
function lastModified()
|
||||
{
|
||||
// For comparison with If-Last-Modified
|
||||
|
@ -176,7 +173,6 @@ class BackupaccountAction extends Action
|
|||
*
|
||||
* @return string etag http header
|
||||
*/
|
||||
|
||||
function etag()
|
||||
{
|
||||
return null;
|
||||
|
@ -193,7 +189,6 @@ class BackupaccountAction extends Action
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class BackupAccountForm extends Form
|
||||
{
|
||||
/**
|
||||
|
@ -201,7 +196,6 @@ class BackupAccountForm extends Form
|
|||
*
|
||||
* @return string the form's class
|
||||
*/
|
||||
|
||||
function formClass()
|
||||
{
|
||||
return 'form_profile_backup';
|
||||
|
@ -212,7 +206,6 @@ class BackupAccountForm extends Form
|
|||
*
|
||||
* @return string the form's action URL
|
||||
*/
|
||||
|
||||
function action()
|
||||
{
|
||||
return common_local_url('backupaccount');
|
||||
|
@ -220,18 +213,18 @@ class BackupAccountForm extends Form
|
|||
|
||||
/**
|
||||
* Output form data
|
||||
*
|
||||
*
|
||||
* Really, just instructions for doing a backup.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formData()
|
||||
{
|
||||
$msg =
|
||||
// TRANS: Information displayed on the backup account page.
|
||||
_('You can backup your account data in '.
|
||||
'<a href="http://activitystrea.ms/">Activity Streams</a> '.
|
||||
'format. This is an experimental feature and provides an '.
|
||||
'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 '.
|
||||
|
@ -243,18 +236,19 @@ class BackupAccountForm extends Form
|
|||
|
||||
/**
|
||||
* Buttons for the form
|
||||
*
|
||||
*
|
||||
* In this case, a single submit button
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit',
|
||||
// TRANS: Submit button to backup an account on the backup account page.
|
||||
_m('BUTTON', 'Backup'),
|
||||
'submit',
|
||||
null,
|
||||
// TRANS: Title for submit button to backup an account on the backup account page.
|
||||
_('Backup your account'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class DeleteuserAction extends ProfileFormAction
|
||||
{
|
||||
var $user = null;
|
||||
|
@ -52,7 +51,6 @@ class DeleteuserAction extends ProfileFormAction
|
|||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
if (!parent::prepare($args)) {
|
||||
|
@ -64,6 +62,7 @@ class DeleteuserAction extends ProfileFormAction
|
|||
assert(!empty($cur)); // checked by parent
|
||||
|
||||
if (!$cur->hasRight(Right::DELETEUSER)) {
|
||||
// TRANS: Client error displayed when trying to delete a user without having the right to delete users.
|
||||
$this->clientError(_('You cannot delete users.'));
|
||||
return false;
|
||||
}
|
||||
|
@ -71,6 +70,7 @@ class DeleteuserAction extends ProfileFormAction
|
|||
$this->user = User::staticGet('id', $this->profile->id);
|
||||
|
||||
if (empty($this->user)) {
|
||||
// TRANS: Client error displayed when trying to delete a non-local user.
|
||||
$this->clientError(_('You can only delete local users.'));
|
||||
return false;
|
||||
}
|
||||
|
@ -87,7 +87,6 @@ class DeleteuserAction extends ProfileFormAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
|
@ -107,7 +106,8 @@ class DeleteuserAction extends ProfileFormAction
|
|||
}
|
||||
|
||||
function title() {
|
||||
return _('Delete user');
|
||||
// TRANS: Title of delete user page.
|
||||
return _m('TITLE','Delete user');
|
||||
}
|
||||
|
||||
function showNoticeForm() {
|
||||
|
@ -130,9 +130,11 @@ class DeleteuserAction extends ProfileFormAction
|
|||
'action' => common_local_url('deleteuser')));
|
||||
$this->elementStart('fieldset');
|
||||
$this->hidden('token', common_session_token());
|
||||
// TRANS: Fieldset legend on delete user page.
|
||||
$this->element('legend', _('Delete user'));
|
||||
if (Event::handle('StartDeleteUserForm', array($this, $this->user))) {
|
||||
$this->element('p', null,
|
||||
// TRANS: Information text to request if a user is certain that the described action has to be performed.
|
||||
_('Are you sure you want to delete this user? '.
|
||||
'This will clear all data about the user from the '.
|
||||
'database, without a backup.'));
|
||||
|
@ -153,7 +155,7 @@ class DeleteuserAction extends ProfileFormAction
|
|||
'submit form_action-primary',
|
||||
'no',
|
||||
// TRANS: Submit button title for 'No' when deleting a user.
|
||||
_('Do not block this user'));
|
||||
_('Do not delete this user'));
|
||||
$this->submit('form_action-yes',
|
||||
// TRANS: Button label on the delete user form.
|
||||
_m('BUTTON','Yes'),
|
||||
|
@ -170,7 +172,6 @@ class DeleteuserAction extends ProfileFormAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handlePost()
|
||||
{
|
||||
if (Event::handle('StartDeleteUser', array($this, $this->user))) {
|
||||
|
|
|
@ -44,10 +44,8 @@ if (!defined('STATUSNET')) {
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class DesignadminpanelAction extends AdminPanelAction
|
||||
{
|
||||
|
||||
/* The default site design */
|
||||
var $design = null;
|
||||
|
||||
|
@ -56,7 +54,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return string page title
|
||||
*/
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Message used as title for design settings for the site.
|
||||
|
@ -68,9 +65,9 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return string instructions
|
||||
*/
|
||||
|
||||
function getInstructions()
|
||||
{
|
||||
// TRANS: Instructions for design adminsitration panel.
|
||||
return _('Design settings for this StatusNet site');
|
||||
}
|
||||
|
||||
|
@ -79,7 +76,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showForm()
|
||||
{
|
||||
$this->design = Design::siteDesign();
|
||||
|
@ -93,7 +89,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function saveSettings()
|
||||
{
|
||||
if ($this->arg('save')) {
|
||||
|
@ -101,6 +96,7 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
} else if ($this->arg('defaults')) {
|
||||
$this->restoreDefaults();
|
||||
} else {
|
||||
// TRANS: Client error displayed when the submitted form contains unexpected data.
|
||||
$this->clientError(_('Unexpected form submission.'));
|
||||
}
|
||||
}
|
||||
|
@ -110,7 +106,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function saveDesignSettings()
|
||||
{
|
||||
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
||||
|
@ -225,11 +220,10 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
}
|
||||
|
||||
/**
|
||||
* Restore the default design
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
* Restore the default design
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function restoreDefaults()
|
||||
{
|
||||
$this->deleteSetting('site', 'logo');
|
||||
|
@ -257,7 +251,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return string $filename the filename of the image
|
||||
*/
|
||||
|
||||
function saveBackgroundImage()
|
||||
{
|
||||
$filename = null;
|
||||
|
@ -302,7 +295,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
* @throws ClientException for invalid theme archives
|
||||
* @throws ServerException if trouble saving the theme files
|
||||
*/
|
||||
|
||||
function saveCustomTheme()
|
||||
{
|
||||
if (common_config('theme_upload', 'enabled') &&
|
||||
|
@ -327,20 +319,23 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function validate(&$values)
|
||||
{
|
||||
if (!empty($values['logo']) &&
|
||||
!Validate::uri($values['logo'], array('allowed_schemes' => array('http', 'https')))) {
|
||||
// TRANS: Client error displayed when a logo URL does is not valid.
|
||||
$this->clientError(_('Invalid logo URL.'));
|
||||
}
|
||||
|
||||
if (!empty($values['ssllogo']) &&
|
||||
!Validate::uri($values['ssllogo'], array('allowed_schemes' => array('https')))) {
|
||||
// TRANS: Client error displayed when an SSL logo URL is invalid.
|
||||
$this->clientError(_('Invalid SSL logo URL.'));
|
||||
}
|
||||
|
||||
if (!in_array($values['theme'], Theme::listAvailable())) {
|
||||
// TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
|
||||
// TRANS: %s is the chosen unavailable theme.
|
||||
$this->clientError(sprintf(_("Theme not available: %s."), $values['theme']));
|
||||
}
|
||||
}
|
||||
|
@ -350,7 +345,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showStylesheets()
|
||||
{
|
||||
parent::showStylesheets();
|
||||
|
@ -362,7 +356,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showScripts()
|
||||
{
|
||||
parent::showScripts();
|
||||
|
@ -383,7 +376,6 @@ class DesignAdminPanelForm extends AdminForm
|
|||
*
|
||||
* @return int ID of the form
|
||||
*/
|
||||
|
||||
function id()
|
||||
{
|
||||
return 'form_design_admin_panel';
|
||||
|
@ -394,7 +386,6 @@ class DesignAdminPanelForm extends AdminForm
|
|||
*
|
||||
* @return string class of the form
|
||||
*/
|
||||
|
||||
function formClass()
|
||||
{
|
||||
return 'form_settings';
|
||||
|
@ -408,7 +399,6 @@ class DesignAdminPanelForm extends AdminForm
|
|||
*
|
||||
* @return string the method to use for submitting
|
||||
*/
|
||||
|
||||
function method()
|
||||
{
|
||||
$this->enctype = 'multipart/form-data';
|
||||
|
@ -421,7 +411,6 @@ class DesignAdminPanelForm extends AdminForm
|
|||
*
|
||||
* @return string URL of the action
|
||||
*/
|
||||
|
||||
function action()
|
||||
{
|
||||
return common_local_url('designadminpanel');
|
||||
|
@ -432,7 +421,6 @@ class DesignAdminPanelForm extends AdminForm
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formData()
|
||||
{
|
||||
$this->showLogo();
|
||||
|
@ -445,16 +433,25 @@ class DesignAdminPanelForm extends AdminForm
|
|||
function showLogo()
|
||||
{
|
||||
$this->out->elementStart('fieldset', array('id' => 'settings_design_logo'));
|
||||
// TRANS: Fieldset legend for form to change logo.
|
||||
$this->out->element('legend', null, _('Change logo'));
|
||||
|
||||
$this->out->elementStart('ul', 'form_data');
|
||||
|
||||
$this->li();
|
||||
$this->input('logo', _('Site logo'), 'Logo for the site (full URL)');
|
||||
$this->input('logo',
|
||||
// TRANS: Field label for StatusNet site logo.
|
||||
_('Site logo'),
|
||||
// TRANS: Title for field label for StatusNet site logo.
|
||||
'Logo for the site (full URL)');
|
||||
$this->unli();
|
||||
|
||||
$this->li();
|
||||
$this->input('ssllogo', _('SSL logo'), 'Logo to show on SSL pages');
|
||||
$this->input('ssllogo',
|
||||
// TRANS: Field label for SSL StatusNet site logo.
|
||||
_('SSL logo'),
|
||||
// TRANS: Title for field label for SSL StatusNet site logo.
|
||||
'Logo to show on SSL pages');
|
||||
$this->unli();
|
||||
|
||||
$this->out->elementEnd('ul');
|
||||
|
@ -466,6 +463,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
function showTheme()
|
||||
{
|
||||
$this->out->elementStart('fieldset', array('id' => 'settings_design_theme'));
|
||||
// TRANS: Fieldset legend for form change StatusNet site's theme.
|
||||
$this->out->element('legend', null, _('Change theme'));
|
||||
|
||||
$this->out->elementStart('ul', 'form_data');
|
||||
|
@ -483,17 +481,21 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$themes = array_combine($themes, $themes);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for dropdown to choose site theme.
|
||||
$this->out->dropdown('theme', _('Site theme'),
|
||||
// TRANS: Title for field label for dropdown to choose site theme.
|
||||
$themes, _('Theme for the site.'),
|
||||
false, $this->value('theme'));
|
||||
$this->unli();
|
||||
|
||||
if (common_config('theme_upload', 'enabled')) {
|
||||
$this->li();
|
||||
// TRANS: Field label for uploading a cutom theme.
|
||||
$this->out->element('label', array('for' => 'design_upload_theme'), _('Custom theme'));
|
||||
$this->out->element('input', array('id' => 'design_upload_theme',
|
||||
'name' => 'design_upload_theme',
|
||||
'type' => 'file'));
|
||||
// TRANS: Form instructions for uploading a cutom StatusNet theme.
|
||||
$this->out->element('p', 'form_guide', _('You can upload a custom StatusNet theme as a .ZIP archive.'));
|
||||
$this->unli();
|
||||
}
|
||||
|
@ -509,16 +511,19 @@ class DesignAdminPanelForm extends AdminForm
|
|||
|
||||
$this->out->elementStart('fieldset', array('id' =>
|
||||
'settings_design_background-image'));
|
||||
// TRANS: Fieldset legend for theme background image.
|
||||
$this->out->element('legend', null, _('Change background image'));
|
||||
$this->out->elementStart('ul', 'form_data');
|
||||
|
||||
$this->li();
|
||||
$this->out->element('label', array('for' => 'design_background-image_file'),
|
||||
// TRANS: Field label for background image on theme designer page.
|
||||
_('Background'));
|
||||
$this->out->element('input', array('name' => 'design_background-image_file',
|
||||
'type' => 'file',
|
||||
'id' => 'design_background-image_file'));
|
||||
$this->out->element('p', 'form_guide',
|
||||
// TRANS: Form guide for background image upload form on theme designer page.
|
||||
sprintf(_('You can upload a background image for the site. ' .
|
||||
'The maximum file size is %1$s.'), ImageFile::maxFileSize()));
|
||||
$this->out->element('input', array('name' => 'MAX_FILE_SIZE',
|
||||
|
@ -568,11 +573,13 @@ class DesignAdminPanelForm extends AdminForm
|
|||
'class' => 'radio'),
|
||||
// TRANS: Used as radio button label to not add a background image.
|
||||
_('Off'));
|
||||
// TRANS: Form guide for turning background image on or off on theme designer page.
|
||||
$this->out->element('p', 'form_guide', _('Turn background image on or off.'));
|
||||
$this->unli();
|
||||
|
||||
$this->li();
|
||||
$this->out->checkbox('design_background-image_repeat',
|
||||
// TRANS: Checkbox label to title background image on theme designer page.
|
||||
_('Tile background image'),
|
||||
($design->disposition & BACKGROUND_TILE) ? true : false);
|
||||
$this->unli();
|
||||
|
@ -587,7 +594,8 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$design = $this->out->design;
|
||||
|
||||
$this->out->elementStart('fieldset', array('id' => 'settings_design_color'));
|
||||
$this->out->element('legend', null, _('Change colours'));
|
||||
// TRANS: Fieldset legend for theme colors.
|
||||
$this->out->element('legend', null, _('Change colors'));
|
||||
|
||||
$this->out->elementStart('ul', 'form_data');
|
||||
|
||||
|
@ -597,6 +605,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$bgcolor = new WebColor($design->backgroundcolor);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for background color selector.
|
||||
$this->out->element('label', array('for' => 'swatch-1'), _('Background'));
|
||||
$this->out->element('input', array('name' => 'design_background',
|
||||
'type' => 'text',
|
||||
|
@ -610,6 +619,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$ccolor = new WebColor($design->contentcolor);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for content color selector.
|
||||
$this->out->element('label', array('for' => 'swatch-2'), _('Content'));
|
||||
$this->out->element('input', array('name' => 'design_content',
|
||||
'type' => 'text',
|
||||
|
@ -623,6 +633,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$sbcolor = new WebColor($design->sidebarcolor);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for sidebar color selector.
|
||||
$this->out->element('label', array('for' => 'swatch-3'), _('Sidebar'));
|
||||
$this->out->element('input', array('name' => 'design_sidebar',
|
||||
'type' => 'text',
|
||||
|
@ -636,6 +647,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$tcolor = new WebColor($design->textcolor);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for text color selector.
|
||||
$this->out->element('label', array('for' => 'swatch-4'), _('Text'));
|
||||
$this->out->element('input', array('name' => 'design_text',
|
||||
'type' => 'text',
|
||||
|
@ -649,6 +661,7 @@ class DesignAdminPanelForm extends AdminForm
|
|||
$lcolor = new WebColor($design->linkcolor);
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for link color selector.
|
||||
$this->out->element('label', array('for' => 'swatch-5'), _('Links'));
|
||||
$this->out->element('input', array('name' => 'design_links',
|
||||
'type' => 'text',
|
||||
|
@ -674,10 +687,12 @@ class DesignAdminPanelForm extends AdminForm
|
|||
{
|
||||
if (common_config('custom_css', 'enabled')) {
|
||||
$this->out->elementStart('fieldset', array('id' => 'settings_design_advanced'));
|
||||
// TRANS: Fieldset legend for advanced theme design settings.
|
||||
$this->out->element('legend', null, _('Advanced'));
|
||||
$this->out->elementStart('ul', 'form_data');
|
||||
|
||||
$this->li();
|
||||
// TRANS: Field label for custom CSS.
|
||||
$this->out->element('label', array('for' => 'css'), _('Custom CSS'));
|
||||
$this->out->element('textarea', array('name' => 'css',
|
||||
'id' => 'css',
|
||||
|
@ -699,17 +714,25 @@ class DesignAdminPanelForm extends AdminForm
|
|||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('defaults', _('Use defaults'), 'submit form_action-default',
|
||||
// TRANS: Button text for resetting theme settings.
|
||||
$this->out->submit('defaults', _m('BUTTON','Use defaults'), 'submit form_action-default',
|
||||
// TRANS: Title for button for resetting theme settings.
|
||||
'defaults', _('Restore default designs'));
|
||||
|
||||
$this->out->element('input', array('id' => 'settings_design_reset',
|
||||
'type' => 'reset',
|
||||
// TRANS: Button text for resetting theme settings.
|
||||
'value' => 'Reset',
|
||||
'class' => 'submit form_action-primary',
|
||||
// TRANS: Title for button for resetting theme settings.
|
||||
'title' => _('Reset back to default')));
|
||||
|
||||
$this->out->submit('save', _('Save'), 'submit form_action-secondary',
|
||||
'save', _('Save design'));
|
||||
$this->out->submit('save',
|
||||
// TRANS: Button text for saving theme settings.
|
||||
_m('BUTTON','Save'),
|
||||
'submit form_action-secondary',
|
||||
'save',
|
||||
// TRANS: Title for button for saving theme settings.
|
||||
_('Save design'));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -58,6 +58,7 @@ class DisfavorAction extends Action
|
|||
{
|
||||
parent::handle($args);
|
||||
if (!common_logged_in()) {
|
||||
// TRANS: Client error displayed when trying to remove a favorite while not logged in.
|
||||
$this->clientError(_('Not logged in.'));
|
||||
return;
|
||||
}
|
||||
|
@ -71,6 +72,7 @@ class DisfavorAction extends Action
|
|||
$notice = Notice::staticGet($id);
|
||||
$token = $this->trimmed('token-'.$notice->id);
|
||||
if (!$token || $token != common_session_token()) {
|
||||
// TRANS: Client error displayed when the session token does not match or is not given.
|
||||
$this->clientError(_('There was a problem with your session token. Try again, please.'));
|
||||
return;
|
||||
}
|
||||
|
@ -78,12 +80,14 @@ class DisfavorAction extends Action
|
|||
$fave->user_id = $user->id;
|
||||
$fave->notice_id = $notice->id;
|
||||
if (!$fave->find(true)) {
|
||||
// TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
|
||||
$this->clientError(_('This notice is not a favorite!'));
|
||||
return;
|
||||
}
|
||||
$result = $fave->delete();
|
||||
if (!$result) {
|
||||
common_log_db_error($fave, 'DELETE', __FILE__);
|
||||
// TRANS: Server error displayed when removing a favorite from the database fails.
|
||||
$this->serverError(_('Could not delete favorite.'));
|
||||
return;
|
||||
}
|
||||
|
@ -91,6 +95,7 @@ class DisfavorAction extends Action
|
|||
if ($this->boolean('ajax')) {
|
||||
$this->startHTML('text/xml;charset=utf-8');
|
||||
$this->elementStart('head');
|
||||
// TRANS: Title for page on which favorites can be added.
|
||||
$this->element('title', null, _('Add to favorites'));
|
||||
$this->elementEnd('head');
|
||||
$this->elementStart('body');
|
||||
|
@ -105,4 +110,3 @@ class DisfavorAction extends Action
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Documentation action.
|
||||
*
|
||||
|
@ -83,7 +82,6 @@ class DocAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showPageTitle()
|
||||
{
|
||||
$this->element('h1', array('class' => 'entry-title'), $this->title());
|
||||
|
@ -96,7 +94,6 @@ class DocAction extends Action
|
|||
*
|
||||
* @return void.
|
||||
*/
|
||||
|
||||
function showContentBlock()
|
||||
{
|
||||
$this->elementStart('div', array('id' => 'content', 'class' => 'hentry'));
|
||||
|
@ -117,7 +114,6 @@ class DocAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showContent()
|
||||
{
|
||||
$this->raw($this->output);
|
||||
|
@ -142,7 +138,6 @@ class DocAction extends Action
|
|||
*
|
||||
* @return boolean read-only flag (false)
|
||||
*/
|
||||
|
||||
function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
|
@ -155,7 +150,9 @@ class DocAction extends Action
|
|||
$this->filename = $this->getFilename();
|
||||
|
||||
if (empty($this->filename)) {
|
||||
throw new ClientException(sprintf(_('No such document "%s"'), $this->title), 404);
|
||||
// TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
|
||||
// TRANS: %s is the non-existing document.
|
||||
throw new ClientException(sprintf(_('No such document "%s".'), $this->title), 404);
|
||||
}
|
||||
|
||||
$c = file_get_contents($this->filename);
|
||||
|
|
|
@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class JoingroupAction extends Action
|
||||
{
|
||||
var $group = null;
|
||||
|
@ -51,12 +50,12 @@ class JoingroupAction extends Action
|
|||
/**
|
||||
* Prepare to run
|
||||
*/
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
||||
if (!common_logged_in()) {
|
||||
// TRANS: Client error displayed when trying to join a group while not logged in.
|
||||
$this->clientError(_('You must be logged in to join a group.'));
|
||||
return false;
|
||||
}
|
||||
|
@ -79,17 +78,20 @@ class JoingroupAction extends Action
|
|||
$local = Local_group::staticGet('nickname', $nickname);
|
||||
|
||||
if (!$local) {
|
||||
// TRANS: Client error displayed when trying to join a non-local group.
|
||||
$this->clientError(_('No such group.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->group = User_group::staticGet('id', $local->group_id);
|
||||
} else {
|
||||
// TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
|
||||
$this->clientError(_('No nickname or ID.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!$this->group) {
|
||||
// TRANS: Client error displayed when trying to join a non-existing group.
|
||||
$this->clientError(_('No such group.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
@ -97,11 +99,13 @@ class JoingroupAction extends Action
|
|||
$cur = common_current_user();
|
||||
|
||||
if ($cur->isMember($this->group)) {
|
||||
// TRANS: Client error displayed when trying to join a group while already a member.
|
||||
$this->clientError(_('You are already a member of that group.'), 403);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (Group_block::isBlocked($this->group, $cur->getProfile())) {
|
||||
// TRANS: Client error displayed when trying to join a group while being blocked form joining it.
|
||||
$this->clientError(_('You have been blocked from that group by the admin.'), 403);
|
||||
return false;
|
||||
}
|
||||
|
@ -118,7 +122,6 @@ class JoingroupAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
parent::handle($args);
|
||||
|
@ -131,6 +134,8 @@ class JoingroupAction extends Action
|
|||
Event::handle('EndJoinGroup', array($this->group, $cur));
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
// TRANS: Server error displayed when joining a group failed in the database.
|
||||
// TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
|
||||
$this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'),
|
||||
$cur->nickname, $this->group->nickname));
|
||||
}
|
||||
|
@ -138,7 +143,8 @@ class JoingroupAction extends Action
|
|||
if ($this->boolean('ajax')) {
|
||||
$this->startHTML('text/xml;charset=utf-8');
|
||||
$this->elementStart('head');
|
||||
$this->element('title', null, sprintf(_('%1$s joined group %2$s'),
|
||||
// TRANS: Title for join group page after joining.
|
||||
$this->element('title', null, sprintf(_m('TITLE','%1$s joined group %2$s'),
|
||||
$cur->nickname,
|
||||
$this->group->nickname));
|
||||
$this->elementEnd('head');
|
||||
|
@ -153,4 +159,4 @@ class JoingroupAction extends Action
|
|||
303);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class LeavegroupAction extends Action
|
||||
{
|
||||
var $group = null;
|
||||
|
@ -51,12 +50,12 @@ class LeavegroupAction extends Action
|
|||
/**
|
||||
* Prepare to run
|
||||
*/
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
||||
if (!common_logged_in()) {
|
||||
// TRANS: Client error displayed when trying to leave a group while not logged in.
|
||||
$this->clientError(_('You must be logged in to leave a group.'));
|
||||
return false;
|
||||
}
|
||||
|
@ -79,17 +78,20 @@ class LeavegroupAction extends Action
|
|||
$local = Local_group::staticGet('nickname', $nickname);
|
||||
|
||||
if (!$local) {
|
||||
// TRANS: Client error displayed when trying to leave a non-local group.
|
||||
$this->clientError(_('No such group.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->group = User_group::staticGet('id', $local->group_id);
|
||||
} else {
|
||||
// TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
|
||||
$this->clientError(_('No nickname or ID.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!$this->group) {
|
||||
// TRANS: Client error displayed when trying to leave a non-existing group.
|
||||
$this->clientError(_('No such group.'), 404);
|
||||
return false;
|
||||
}
|
||||
|
@ -97,6 +99,7 @@ class LeavegroupAction extends Action
|
|||
$cur = common_current_user();
|
||||
|
||||
if (!$cur->isMember($this->group)) {
|
||||
// TRANS: Client error displayed when trying to join a group while already a member.
|
||||
$this->clientError(_('You are not a member of that group.'), 403);
|
||||
return false;
|
||||
}
|
||||
|
@ -113,7 +116,6 @@ class LeavegroupAction extends Action
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
parent::handle($args);
|
||||
|
@ -126,6 +128,8 @@ class LeavegroupAction extends Action
|
|||
Event::handle('EndLeaveGroup', array($this->group, $cur));
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
// TRANS: Server error displayed when leaving a group failed in the database.
|
||||
// TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
|
||||
$this->serverError(sprintf(_('Could not remove user %1$s from group %2$s.'),
|
||||
$cur->nickname, $this->group->nickname));
|
||||
return;
|
||||
|
@ -134,7 +138,8 @@ class LeavegroupAction extends Action
|
|||
if ($this->boolean('ajax')) {
|
||||
$this->startHTML('text/xml;charset=utf-8');
|
||||
$this->elementStart('head');
|
||||
$this->element('title', null, sprintf(_('%1$s left group %2$s'),
|
||||
// TRANS: Title for leave group page after leaving.
|
||||
$this->element('title', null, sprintf(_m('TITLE','%1$s left group %2$s'),
|
||||
$cur->nickname,
|
||||
$this->group->nickname));
|
||||
$this->elementEnd('head');
|
||||
|
|
|
@ -213,6 +213,7 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||
// CSRF protection
|
||||
$token = $this->trimmed('token');
|
||||
if (!$token || $token != common_session_token()) {
|
||||
// TRANS: Form validation error.
|
||||
$this->showForm(_('There was a problem with your session token. '.
|
||||
'Try again, please.'));
|
||||
return;
|
||||
|
@ -462,6 +463,7 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||
$this->elementStart('li');
|
||||
$this->element('a',
|
||||
array('href' => common_local_url('backupaccount')),
|
||||
// TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
|
||||
_('Backup account'));
|
||||
$this->elementEnd('li');
|
||||
}
|
||||
|
@ -469,6 +471,7 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||
$this->elementStart('li');
|
||||
$this->element('a',
|
||||
array('href' => common_local_url('deleteaccount')),
|
||||
// TRANS: Option in profile settings to delete the account of the currently logged in user.
|
||||
_('Delete account'));
|
||||
$this->elementEnd('li');
|
||||
}
|
||||
|
@ -476,6 +479,7 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||
$this->elementStart('li');
|
||||
$this->element('a',
|
||||
array('href' => common_local_url('restoreaccount')),
|
||||
// TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
|
||||
_('Restore account'));
|
||||
$this->elementEnd('li');
|
||||
}
|
||||
|
|
|
@ -33,6 +33,7 @@ class RecoverpasswordAction extends Action
|
|||
{
|
||||
parent::handle($args);
|
||||
if (common_logged_in()) {
|
||||
// TRANS: Client error displayed trying to recover password while already logged in.
|
||||
$this->clientError(_('You are already logged in!'));
|
||||
return;
|
||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
|
@ -41,6 +42,7 @@ class RecoverpasswordAction extends Action
|
|||
} else if ($this->arg('reset')) {
|
||||
$this->resetPassword();
|
||||
} else {
|
||||
// TRANS: Client error displayed when unexpected data is posted in the password recovery form.
|
||||
$this->clientError(_('Unexpected form submission.'));
|
||||
}
|
||||
} else {
|
||||
|
@ -54,15 +56,16 @@ class RecoverpasswordAction extends Action
|
|||
|
||||
function checkCode()
|
||||
{
|
||||
|
||||
$code = $this->trimmed('code');
|
||||
$confirm = Confirm_address::staticGet('code', $code);
|
||||
|
||||
if (!$confirm) {
|
||||
// TRANS: Client error displayed when password recovery code is not correct.
|
||||
$this->clientError(_('No such recovery code.'));
|
||||
return;
|
||||
}
|
||||
if ($confirm->address_type != 'recover') {
|
||||
// TRANS: Client error displayed when no proper password recovery code was submitted.
|
||||
$this->clientError(_('Not a recovery code.'));
|
||||
return;
|
||||
}
|
||||
|
@ -70,6 +73,7 @@ class RecoverpasswordAction extends Action
|
|||
$user = User::staticGet($confirm->user_id);
|
||||
|
||||
if (!$user) {
|
||||
// TRANS: Server error displayed trying to recover password without providing a user.
|
||||
$this->serverError(_('Recovery code for unknown user.'));
|
||||
return;
|
||||
}
|
||||
|
@ -83,6 +87,7 @@ class RecoverpasswordAction extends Action
|
|||
|
||||
if (!$result) {
|
||||
common_log_db_error($confirm, 'DELETE', __FILE__);
|
||||
// TRANS: Server error displayed removing a password recovery code from the database.
|
||||
$this->serverError(_('Error with confirmation code.'));
|
||||
return;
|
||||
}
|
||||
|
@ -94,6 +99,7 @@ class RecoverpasswordAction extends Action
|
|||
common_log(LOG_WARNING,
|
||||
'Attempted redemption on recovery code ' .
|
||||
'that is ' . $touched . ' seconds old. ');
|
||||
// TRANS: Client error displayed trying to recover password with too old a recovery code.
|
||||
$this->clientError(_('This confirmation code is too old. ' .
|
||||
'Please start again.'));
|
||||
return;
|
||||
|
@ -108,6 +114,7 @@ class RecoverpasswordAction extends Action
|
|||
$result = $user->updateKeys($orig);
|
||||
if (!$result) {
|
||||
common_log_db_error($user, 'UPDATE', __FILE__);
|
||||
// TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
|
||||
$this->serverError(_('Could not update user with confirmed email address.'));
|
||||
return;
|
||||
}
|
||||
|
@ -149,14 +156,16 @@ class RecoverpasswordAction extends Action
|
|||
$this->elementStart('div', 'instructions');
|
||||
if ($this->mode == 'recover') {
|
||||
$this->element('p', null,
|
||||
// TRANS: Page notice for password recovery page.
|
||||
_('If you have forgotten or lost your' .
|
||||
' password, you can get a new one sent to' .
|
||||
' the email address you have stored' .
|
||||
' in your account.'));
|
||||
} else if ($this->mode == 'reset') {
|
||||
// TRANS: Page notice for password change page.
|
||||
$this->element('p', null,
|
||||
_('You have been identified. Enter a' .
|
||||
' new password below. '));
|
||||
' new password below.'));
|
||||
}
|
||||
$this->elementEnd('div');
|
||||
}
|
||||
|
@ -185,19 +194,24 @@ class RecoverpasswordAction extends Action
|
|||
'class' => 'form_settings',
|
||||
'action' => common_local_url('recoverpassword')));
|
||||
$this->elementStart('fieldset');
|
||||
// TRANS: Fieldset legend for password recovery page.
|
||||
$this->element('legend', null, _('Password recovery'));
|
||||
$this->elementStart('ul', 'form_data');
|
||||
$this->elementStart('li');
|
||||
// TRANS: Field label on password recovery page.
|
||||
$this->input('nicknameoremail', _('Nickname or email address'),
|
||||
$this->trimmed('nicknameoremail'),
|
||||
// TRANS: Title for field label on password recovery page.
|
||||
_('Your nickname on this server, ' .
|
||||
'or your registered email address.'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
$this->element('input', array('name' => 'recover',
|
||||
'type' => 'hidden',
|
||||
// TRANS: Field label on password recovery page.
|
||||
'value' => _('Recover')));
|
||||
$this->submit('recover', _('Recover'));
|
||||
// TRANS: Button text on password recovery page.
|
||||
$this->submit('recover', _m('BUTTON','Recover'));
|
||||
$this->elementEnd('fieldset');
|
||||
$this->elementEnd('form');
|
||||
}
|
||||
|
@ -205,11 +219,16 @@ class RecoverpasswordAction extends Action
|
|||
function title()
|
||||
{
|
||||
switch ($this->mode) {
|
||||
// TRANS: Title for password recovery page in password reset mode.
|
||||
case 'reset': return _('Reset password');
|
||||
// TRANS: Title for password recovery page in password recover mode.
|
||||
case 'recover': return _('Recover password');
|
||||
// TRANS: Title for password recovery page in email sent mode.
|
||||
case 'sent': return _('Password recovery requested');
|
||||
// TRANS: Title for password recovery page in password saved mode.
|
||||
case 'saved': return _('Password saved.');
|
||||
default:
|
||||
// TRANS: Title for password recovery page when an unknown action has been specified.
|
||||
return _('Unknown action');
|
||||
}
|
||||
}
|
||||
|
@ -228,19 +247,25 @@ class RecoverpasswordAction extends Action
|
|||
'class' => 'form_settings',
|
||||
'action' => common_local_url('recoverpassword')));
|
||||
$this->elementStart('fieldset');
|
||||
// TRANS: Fieldset legend for password reset form.
|
||||
$this->element('legend', null, _('Password change'));
|
||||
$this->hidden('token', common_session_token());
|
||||
$this->elementStart('ul', 'form_data');
|
||||
$this->elementStart('li');
|
||||
// TRANS: Field label for password reset form.
|
||||
$this->password('newpassword', _('New password'),
|
||||
_('6 or more characters, and don\'t forget it!'));
|
||||
// TRANS: Title for field label for password reset form.
|
||||
_('6 or more characters, and do not forget it!'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementStart('li');
|
||||
// TRANS: Field label for password reset form where the password has to be typed again.
|
||||
$this->password('confirm', _('Confirm'),
|
||||
_('Same as password above'));
|
||||
// TRANS: Ttile for field label for password reset form where the password has to be typed again.
|
||||
_('Same as password above.'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
$this->submit('reset', _('Reset'));
|
||||
// TRANS: Button text for password reset form.
|
||||
$this->submit('reset', _m('BUTTON','Reset'));
|
||||
$this->elementEnd('fieldset');
|
||||
$this->elementEnd('form');
|
||||
}
|
||||
|
@ -249,6 +274,7 @@ class RecoverpasswordAction extends Action
|
|||
{
|
||||
$nore = $this->trimmed('nicknameoremail');
|
||||
if (!$nore) {
|
||||
// TRANS: Form instructions for password recovery form.
|
||||
$this->showForm(_('Enter a nickname or email address.'));
|
||||
return;
|
||||
}
|
||||
|
@ -279,6 +305,7 @@ class RecoverpasswordAction extends Action
|
|||
}
|
||||
|
||||
if (!$user) {
|
||||
// TRANS: Information on password recovery form if no known username or e-mail address was specified.
|
||||
$this->showForm(_('No user with that email address or username.'));
|
||||
return;
|
||||
}
|
||||
|
@ -296,6 +323,7 @@ class RecoverpasswordAction extends Action
|
|||
}
|
||||
|
||||
if (!$user->email && !$confirm_email) {
|
||||
// TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
|
||||
$this->clientError(_('No registered email address for that user.'));
|
||||
return;
|
||||
}
|
||||
|
@ -310,10 +338,12 @@ class RecoverpasswordAction extends Action
|
|||
|
||||
if (!$confirm->insert()) {
|
||||
common_log_db_error($confirm, 'INSERT', __FILE__);
|
||||
// TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
|
||||
$this->serverError(_('Error saving address confirmation.'));
|
||||
return;
|
||||
}
|
||||
|
||||
// @todo FIXME: needs i18n.
|
||||
$body = "Hey, $user->nickname.";
|
||||
$body .= "\n\n";
|
||||
$body .= 'Someone just asked for a new password ' .
|
||||
|
@ -332,9 +362,11 @@ class RecoverpasswordAction extends Action
|
|||
$body .= "\n";
|
||||
|
||||
$headers = _mail_prepare_headers('recoverpassword', $user->nickname, $user->nickname);
|
||||
// TRANS: Subject for password recovery e-mail.
|
||||
mail_to_user($user, _('Password recovery requested'), $body, $headers, $confirm->address);
|
||||
|
||||
$this->mode = 'sent';
|
||||
// TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
|
||||
$this->msg = _('Instructions for recovering your password ' .
|
||||
'have been sent to the email address registered to your ' .
|
||||
'account.');
|
||||
|
@ -347,6 +379,7 @@ class RecoverpasswordAction extends Action
|
|||
# CSRF protection
|
||||
$token = $this->trimmed('token');
|
||||
if (!$token || $token != common_session_token()) {
|
||||
// TRANS: Form validation error message.
|
||||
$this->showForm(_('There was a problem with your session token. Try again, please.'));
|
||||
return;
|
||||
}
|
||||
|
@ -354,6 +387,7 @@ class RecoverpasswordAction extends Action
|
|||
$user = $this->getTempUser();
|
||||
|
||||
if (!$user) {
|
||||
// TRANS: Client error displayed when trying to reset as password without providing a user.
|
||||
$this->clientError(_('Unexpected password reset.'));
|
||||
return;
|
||||
}
|
||||
|
@ -362,10 +396,12 @@ class RecoverpasswordAction extends Action
|
|||
$confirm = $this->trimmed('confirm');
|
||||
|
||||
if (!$newpassword || strlen($newpassword) < 6) {
|
||||
// TRANS: Reset password form validation error message.
|
||||
$this->showPasswordForm(_('Password must be 6 characters or more.'));
|
||||
return;
|
||||
}
|
||||
if ($newpassword != $confirm) {
|
||||
// TRANS: Reset password form validation error message.
|
||||
$this->showPasswordForm(_('Password and confirmation do not match.'));
|
||||
return;
|
||||
}
|
||||
|
@ -378,13 +414,15 @@ class RecoverpasswordAction extends Action
|
|||
|
||||
if (!$user->update($original)) {
|
||||
common_log_db_error($user, 'UPDATE', __FILE__);
|
||||
$this->serverError(_('Can\'t save new password.'));
|
||||
// TRANS: Reset password form validation error message.
|
||||
$this->serverError(_('Cannot save new password.'));
|
||||
return;
|
||||
}
|
||||
|
||||
$this->clearTempUser();
|
||||
|
||||
if (!common_set_user($user->nickname)) {
|
||||
// TRANS: Server error displayed when something does wrong with the user object during password reset.
|
||||
$this->serverError(_('Error setting user.'));
|
||||
return;
|
||||
}
|
||||
|
@ -392,6 +430,7 @@ class RecoverpasswordAction extends Action
|
|||
common_real_login(true);
|
||||
|
||||
$this->mode = 'saved';
|
||||
// TRANS: Success message for user after password reset.
|
||||
$this->msg = _('New password successfully saved. ' .
|
||||
'You are now logged in.');
|
||||
$this->success = true;
|
||||
|
|
|
@ -430,16 +430,15 @@ class RegisterAction extends Action
|
|||
if (Event::handle('StartRegistrationFormData', array($this))) {
|
||||
$this->elementStart('li');
|
||||
$this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
|
||||
_('1-64 lowercase letters or numbers, '.
|
||||
'no punctuation or spaces. Required.'));
|
||||
_('1-64 lowercase letters or numbers, no punctuation or spaces.'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementStart('li');
|
||||
$this->password('password', _('Password'),
|
||||
_('6 or more characters. Required.'));
|
||||
_('6 or more characters.'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementStart('li');
|
||||
$this->password('confirm', _('Confirm'),
|
||||
_('Same as password above. Required.'));
|
||||
_('Same as password above.'));
|
||||
$this->elementEnd('li');
|
||||
$this->elementStart('li');
|
||||
if ($this->invite && $this->invite->address_type == 'email') {
|
||||
|
|
|
@ -41,7 +41,6 @@ if (!defined('STATUSNET')) {
|
|||
* @link http://status.net/
|
||||
*
|
||||
*/
|
||||
|
||||
class DeleteUserForm extends ProfileActionForm
|
||||
{
|
||||
/**
|
||||
|
@ -49,7 +48,6 @@ class DeleteUserForm extends ProfileActionForm
|
|||
*
|
||||
* @return string Name of the action, lowercased.
|
||||
*/
|
||||
|
||||
function target()
|
||||
{
|
||||
return 'deleteuser';
|
||||
|
@ -60,9 +58,9 @@ class DeleteUserForm extends ProfileActionForm
|
|||
*
|
||||
* @return string Title of the form, internationalized
|
||||
*/
|
||||
|
||||
function title()
|
||||
{
|
||||
// TRANS: Title of form for deleting a user.
|
||||
return _('Delete');
|
||||
}
|
||||
|
||||
|
@ -71,9 +69,9 @@ class DeleteUserForm extends ProfileActionForm
|
|||
*
|
||||
* @return string description of the form, internationalized
|
||||
*/
|
||||
|
||||
function description()
|
||||
{
|
||||
// TRANS: Description of form for deleting a user.
|
||||
return _('Delete this user');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php';
|
|||
*
|
||||
* @see UnsubscribeForm
|
||||
*/
|
||||
|
||||
class GroupEditForm extends Form
|
||||
{
|
||||
/**
|
||||
* group for user to join
|
||||
*/
|
||||
|
||||
var $group = null;
|
||||
|
||||
/**
|
||||
|
@ -61,7 +59,6 @@ class GroupEditForm extends Form
|
|||
* @param Action $out output channel
|
||||
* @param User_group $group group to join
|
||||
*/
|
||||
|
||||
function __construct($out=null, $group=null)
|
||||
{
|
||||
parent::__construct($out);
|
||||
|
@ -74,7 +71,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return string ID of the form
|
||||
*/
|
||||
|
||||
function id()
|
||||
{
|
||||
if ($this->group) {
|
||||
|
@ -89,7 +85,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return string of the form class
|
||||
*/
|
||||
|
||||
function formClass()
|
||||
{
|
||||
return 'form_settings';
|
||||
|
@ -100,7 +95,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return string URL of the action
|
||||
*/
|
||||
|
||||
function action()
|
||||
{
|
||||
if ($this->group) {
|
||||
|
@ -116,7 +110,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formLegend()
|
||||
{
|
||||
$this->out->element('legend', null, _('Create a new group'));
|
||||
|
@ -127,7 +120,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formData()
|
||||
{
|
||||
if ($this->group) {
|
||||
|
@ -151,7 +143,7 @@ class GroupEditForm extends Form
|
|||
$this->out->hidden('groupid', $id);
|
||||
$this->out->input('nickname', _('Nickname'),
|
||||
($this->out->arg('nickname')) ? $this->out->arg('nickname') : $nickname,
|
||||
_('1-64 lowercase letters or numbers, no punctuation or spaces'));
|
||||
_('1-64 lowercase letters or numbers, no punctuation or spaces.'));
|
||||
$this->out->elementEnd('li');
|
||||
$this->out->elementStart('li');
|
||||
$this->out->input('fullname', _('Full name'),
|
||||
|
@ -167,8 +159,8 @@ class GroupEditForm extends Form
|
|||
if ($desclimit == 0) {
|
||||
$descinstr = _('Describe the group or topic');
|
||||
} else {
|
||||
$descinstr = sprintf(_m('Describe the group or topic in %d character or less',
|
||||
'Describe the group or topic in %d characters or less',
|
||||
$descinstr = sprintf(_m('Describe the group or topic in %d character or less.',
|
||||
'Describe the group or topic in %d characters or less.',
|
||||
$desclimit),
|
||||
$desclimit);
|
||||
}
|
||||
|
@ -201,7 +193,6 @@ class GroupEditForm extends Form
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function formActions()
|
||||
{
|
||||
$this->out->submit('submit', _m('BUTTON','Save'));
|
||||
|
|
|
@ -45,7 +45,6 @@ class WebColor {
|
|||
*
|
||||
* @return nothing
|
||||
*/
|
||||
|
||||
function __construct($color = null)
|
||||
{
|
||||
if (isset($color)) {
|
||||
|
@ -77,7 +76,9 @@ class WebColor {
|
|||
if (preg_match('/(#([0-9A-Fa-f]{3,6})\b)/u', $color) > 0) {
|
||||
$this->setHexColor($color);
|
||||
} else {
|
||||
$errmsg = _('%s is not a valid color!');
|
||||
// TRANS: Web color exception thrown when a hexadecimal color code does not validate.
|
||||
// TRANS: %s is the provided (invalid) color code.
|
||||
$errmsg = _('%s is not a valid color! Use 3 or 6 hex characters.');
|
||||
throw new WebColorException(sprintf($errmsg, $color));
|
||||
}
|
||||
}
|
||||
|
@ -115,8 +116,8 @@ class WebColor {
|
|||
$hexcolor[1].$hexcolor[1],
|
||||
$hexcolor[2].$hexcolor[2]);
|
||||
} else {
|
||||
// TRANS: Validation error for a web colour.
|
||||
// TRANS: %s is the provided (invalid) text for colour.
|
||||
// TRANS: Web color exception thrown when a hexadecimal color code does not validate.
|
||||
// TRANS: %s is the provided (invalid) color code.
|
||||
$errmsg = _('%s is not a valid color! Use 3 or 6 hex characters.');
|
||||
throw new WebColorException(sprintf($errmsg, $hexcolor));
|
||||
}
|
||||
|
|
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
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
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
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
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
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
File diff suppressed because it is too large
Load Diff
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -129,28 +129,28 @@ msgstr ""
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -10,14 +10,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:05+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59: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-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -154,28 +154,28 @@ msgstr "Злучыць"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Рэгістрацыя не дазволеная."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Няслушны код запрашэньня."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Мянушка забароненая."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Мянушка ўжо выкарыстоўваецца. Паспрабуйце іншую."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Памылка далучэньня карыстальніка да Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Няслушнае імя карыстальніка ці пароль."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:35+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -138,28 +138,28 @@ msgstr "Kevreañ"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "N'eo ket aotreet krouiñ kontoù."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "N'eo ket reizh ar c'hod pedadenn."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Lesanv nann-aotreet."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Implijet eo dija al lesanv-se. Klaskit unan all."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Anv implijer pe ger-tremen direizh."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:35+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -158,28 +158,28 @@ msgstr "Verbinden"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registrierung nicht erlaubt."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Kein gültiger Einladungscode."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Benutzername nicht erlaubt."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Fehler beim Verbinden des Benutzers mit Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Benutzername oder Passwort falsch."
|
||||
|
||||
|
|
|
@ -11,13 +11,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+0000\n"
|
||||
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: es\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -153,28 +153,28 @@ msgstr "Conectar"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registro de usuario no permitido."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "No es un código de invitación válido."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Nombre de usuario no autorizado."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "El nombre de usuario ya existe. Prueba con otro."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Error de conexión del usuario a Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nombre de usuario o contraseña inválidos."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+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-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -157,28 +157,28 @@ msgstr "Connexion"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Inscription non autorisée."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le code d’invitation n’est pas valide."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonyme non autorisé."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonyme déjà utilisé. Essayez-en un autre."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Erreur de connexion de l’utilisateur à Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nom d’utilisateur ou mot de passe incorrect."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+0000\n"
|
||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: gl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -139,28 +139,28 @@ msgstr "Conectar"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Non se permite o rexistro."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "O código da invitación é incorrecto."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Ese alcume xa está en uso. Probe con outro."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "O nome de usuario ou contrasinal non son correctos."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+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-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -152,28 +152,28 @@ msgstr "Connecter"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Creation de conto non permittite."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le codice de invitation es invalide."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonymo non permittite."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonymo ja in uso. Proba un altere."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Error durante le connexion del usator a Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nomine de usator o contrasigno invalide."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+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-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -152,28 +152,28 @@ msgstr "Поврзи се"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Регистрацијата не е дозволена."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Ова не е важечки код за покана."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Прекарот не е дозволен."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Прекарот е зафатен. Одберете друг."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Грешка при поврзувањето на корисникот со Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Неважечко корисничко име или лозинка."
|
||||
|
||||
|
@ -201,7 +201,7 @@ msgstr "Расположиви знаци"
|
|||
#: facebooknoticeform.php:196
|
||||
msgctxt "BUTTON"
|
||||
msgid "Send"
|
||||
msgstr "Прати"
|
||||
msgstr "Испрати"
|
||||
|
||||
#: facebookhome.php:103
|
||||
msgid "Server error: Couldn't get user!"
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:37+0000\n"
|
||||
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: no\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -134,28 +134,28 @@ msgstr "Koble til"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registrering ikke tillatt."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Ikke en gyldig invitasjonskode."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Kallenavn er ikke tillatt."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Kallenavnet er allerede i bruk. Prøv et annet."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ugyldig brukernavn eller passord."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 23:32+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 23:35:59+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:36+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:21:15+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -157,29 +157,29 @@ msgstr "Koppelen"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registratie is niet toegestaan."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "De uitnodigingscode is ongeldig."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Gebruikersnaam niet toegestaan."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Fout bij het verbinden van de gebruiker met Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
||||
|
||||
|
|
|
@ -10,14 +10,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:37+0000\n"
|
||||
"Language-Team: Brazilian Portuguese <http://translatewiki.net/wiki/Portal:pt-"
|
||||
"br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt-br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -136,28 +136,28 @@ msgstr "Conectar"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Não é permitido o registro."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "O código de convite é inválido."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Apelido não permitido."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Este apelido já está em uso. Tente outro."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Erro ao conectar o usuário ao Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:37+0000\n"
|
||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -158,28 +158,28 @@ msgstr "Umugnay"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Hindi pinapahintulutan ang pagpapatala."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Hindi isang tanggap na kodigo ng paanyaya."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Hindi pinapahintulutan ang palayaw."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Ginagamit na ang palayaw. Subukan ang iba."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "May kamalian sa pag-ugnay ng tagagamit sa Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:07+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:37+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-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n"
|
||||
|
@ -154,28 +154,28 @@ msgstr "Під’єднати"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Реєстрацію не дозволено."
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Це не дійсний код запрошення."
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Нікнейм не допускається."
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Цей нікнейм вже використовується. Спробуйте інший."
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "Помилка при підключенні до Facebook."
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Невірне ім’я або пароль."
|
||||
|
||||
|
|
|
@ -10,14 +10,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - Facebook\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:33:07+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 14:59:38+0000\n"
|
||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||
"hans>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hans\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebook\n"
|
||||
|
@ -148,28 +148,28 @@ msgstr "连接"
|
|||
|
||||
#. TRANS: Client error trying to register with registrations not allowed.
|
||||
#. TRANS: Client error trying to register with registrations 'invite only'.
|
||||
#: FBConnectAuth.php:237 FBConnectAuth.php:247
|
||||
#: FBConnectAuth.php:241 FBConnectAuth.php:251
|
||||
msgid "Registration not allowed."
|
||||
msgstr "不允许注册。"
|
||||
|
||||
#. TRANS: Client error trying to register with an invalid invitation code.
|
||||
#: FBConnectAuth.php:255
|
||||
#: FBConnectAuth.php:259
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "对不起,无效的邀请码。"
|
||||
|
||||
#: FBConnectAuth.php:267
|
||||
#: FBConnectAuth.php:271
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "昵称不被允许。"
|
||||
|
||||
#: FBConnectAuth.php:272
|
||||
#: FBConnectAuth.php:276
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "昵称已被使用,换一个吧。"
|
||||
|
||||
#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344
|
||||
#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350
|
||||
msgid "Error connecting user to Facebook."
|
||||
msgstr "连接用户至Facebook时发生错误。"
|
||||
|
||||
#: FBConnectAuth.php:310
|
||||
#: FBConnectAuth.php:316
|
||||
msgid "Invalid username or password."
|
||||
msgstr "用户名或密码不正确。"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -447,43 +447,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:28+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:48+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-openid\n"
|
||||
|
@ -454,43 +454,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "N'eo ket aotreet krouiñ kontoù."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "N'eo ket reizh ar c'hod pedadenn."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Lesanv nann-aotreet."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Implijet eo dija al lesanv-se. Klaskit unan all."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:28+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:48+0000\n"
|
||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ca\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-openid\n"
|
||||
|
@ -465,44 +465,44 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "No es permet el registre."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "No és un codi d'invitació vàlid."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "No es permet el sobrenom."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "El sobrenom ja és en ús. Proveu-ne un altre."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "No s'ha trobat la connexió OpenID emmagatzemada."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr ""
|
||||
"S'està creant un compte nou per a una connexió OpenID que ja té un usuari."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "El nom d'usuari o la contrasenya no són vàlids."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "S'ha produït un error en connectar l'usuari amb la connexió OpenID."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:29+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-openid\n"
|
||||
|
@ -489,43 +489,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registrierung nicht erlaubt."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Kein gültiger Einladungscode."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Benutzername nicht erlaubt."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Benutzername oder Passwort falsch."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:29+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+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: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n"
|
||||
|
@ -499,43 +499,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Inscription non autorisée."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le code d’invitation n’est pas valide."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonyme non autorisé."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonyme déjà utilisé. Essayez-en un autre."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "OpenID stocké non trouvé."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr "Créer un nouveau compte pour OpenID qui a déjà un utilisateur."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nom d’utilisateur ou mot de passe incorrect."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "Erreur de connexion de l’utilisateur à OpenID."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:29+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+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: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n"
|
||||
|
@ -489,43 +489,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Creation de conto non permittite."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le codice de invitation es invalide."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonymo non permittite."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonymo ja in uso. Proba un altere."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "Le OpenID immagazinate non esseva trovate."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr "Tentativa de crear un nove conto pro un OpenID que ha jam un usator."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nomine de usator o contrasigno invalide."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "Error durante le connexion del usator a OpenID."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:30+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+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: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n"
|
||||
|
@ -485,43 +485,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Регистрацијата не е дозволена."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Ова не е важечки код за покана."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Прекарот не е дозволен."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Прекарот е зафатен. Одберете друг."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "Складираниот OpenID не е пронајден."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr "Создавање на сметка за OpenID што веќе има корисник."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Неважечко корисничко име или лозинка."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "Грешка при поврзувањето на корисникот со OpenID."
|
||||
|
||||
|
|
|
@ -10,16 +10,16 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:30+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+0000\n"
|
||||
"Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\n"
|
||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n"
|
||||
|
@ -491,43 +491,43 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registreren is niet mogelijk."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "De uitnodigingscode is niet geldig."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Deze gebruikersnaam is niet toegestaan."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "Het opgeslagen OpenID is niet aangetroffen."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr "Poging tot aanmaken van een OpenID-account dat al een gebruiker heeft."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "Fout bij het koppelen met OpenID."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:30+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+0000\n"
|
||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-openid\n"
|
||||
|
@ -502,44 +502,44 @@ msgstr ""
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Hindi pinayagan ang pagpapatala."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Hindi isang tanggap na kodigo ng paanyaya."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Hindi pinayagan ang palayaw."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Ginagamit na ang palayaw. Sumubok ng iba."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "Hindi natagpuan ang nakalagak na OpenID."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr ""
|
||||
"Nililikha ang bagong akawnt para sa OpenID na mayroon nang isang tagagamit."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "May kamalian sa pag-ugnay ng tagagamit sa OpenID."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - OpenID\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:31+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:00:49+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: 2010-11-30 20:43:49+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n"
|
||||
|
@ -492,43 +492,43 @@ msgstr "Автентифікацію за OpenID перервано: ви не
|
|||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site.
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided.
|
||||
#: finishopenidlogin.php:267 finishopenidlogin.php:277
|
||||
#: finishopenidlogin.php:271 finishopenidlogin.php:281
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Реєстрацію не дозволено."
|
||||
|
||||
#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid.
|
||||
#: finishopenidlogin.php:285
|
||||
#: finishopenidlogin.php:289
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Це не дійсний код запрошення."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is blacklisted.
|
||||
#: finishopenidlogin.php:299
|
||||
#: finishopenidlogin.php:303
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Нікнейм не допускається."
|
||||
|
||||
#. TRANS: OpenID plugin message. The entered new user name is already used.
|
||||
#: finishopenidlogin.php:305
|
||||
#: finishopenidlogin.php:309
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Цей нікнейм вже використовується. Спробуйте інший."
|
||||
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved.
|
||||
#. TRANS: OpenID plugin server error. A stored OpenID cannot be found.
|
||||
#: finishopenidlogin.php:313 finishopenidlogin.php:400
|
||||
#: finishopenidlogin.php:317 finishopenidlogin.php:407
|
||||
msgid "Stored OpenID not found."
|
||||
msgstr "Збережений OpenID не знайдено."
|
||||
|
||||
#. TRANS: OpenID plugin server error.
|
||||
#: finishopenidlogin.php:323
|
||||
#: finishopenidlogin.php:327
|
||||
msgid "Creating new account for OpenID that already has a user."
|
||||
msgstr "Створення нового акаунту для OpenID користувачем, який вже існує."
|
||||
|
||||
#. TRANS: OpenID plugin message.
|
||||
#: finishopenidlogin.php:388
|
||||
#: finishopenidlogin.php:395
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Невірне ім’я або пароль."
|
||||
|
||||
#. TRANS: OpenID plugin server error. The user or user profile could not be saved.
|
||||
#: finishopenidlogin.php:408
|
||||
#: finishopenidlogin.php:415
|
||||
msgid "Error connecting user to OpenID."
|
||||
msgstr "Помилка при підключенні користувача до OpenID."
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -16,7 +16,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr ""
|
||||
|
||||
|
@ -28,10 +28,6 @@ msgstr ""
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr ""
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr ""
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr ""
|
||||
|
|
|
@ -9,19 +9,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Kann IP-Addresse nicht finden."
|
||||
|
||||
|
@ -34,10 +34,9 @@ msgstr ""
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Ein gesperrter Benutzer hat sich von dieser Adresse registriert."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Kann Benutzer nach erfolgreicher Registrierung nicht finden."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Drosselt exzessive Registrierungen einer einzelnen IP-Adresse."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Kann Benutzer nach erfolgreicher Registrierung nicht finden."
|
||||
|
|
|
@ -10,19 +10,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+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: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Impossible de trouver l’adresse IP."
|
||||
|
||||
|
@ -36,10 +36,9 @@ msgstr ""
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Un utilisateur banni s’est inscrit depuis cette adresse."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Impossible de trouver l’utilisateur après un enregistrement réussi."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Évite les inscriptions excessives depuis une même adresse IP."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Impossible de trouver l’utilisateur après un enregistrement réussi."
|
||||
|
|
|
@ -9,19 +9,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+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: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Non pote trovar adresse IP."
|
||||
|
||||
|
@ -33,10 +33,9 @@ msgstr "Troppo de registrationes. Face un pausa e reproba plus tarde."
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Un usator bannite se ha registrate ab iste adresse."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Non pote trovar usator post registration succedite."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Inhibi le creation de contos excessive ab un sol adresse IP."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Non pote trovar usator post registration succedite."
|
||||
|
|
|
@ -9,19 +9,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+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: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Не можам да ја пронајдам IP-адресата."
|
||||
|
||||
|
@ -33,10 +33,9 @@ msgstr "Премногу регистрации. Направете пауза
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Од оваа адреса се регистрирал забранет корисник."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Не можам да го пронајдам корисникот по успешната регистрација."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Истиснува прекумерни регистрации од една IP-адреса."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Не можам да го пронајдам корисникот по успешната регистрација."
|
||||
|
|
|
@ -10,19 +10,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+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: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Het IP-adres kon niet gevonden worden."
|
||||
|
||||
|
@ -34,10 +34,9 @@ msgstr "Te veel registraties. Wacht even en probeer het later opnieuw."
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Er is een geblokkeerde gebruiker die vanaf dit adres is geregistreerd."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Het was niet mogelijk de gebruiker te vinden na registratie."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Beperkt excessieve aantallen registraties vanaf één IP-adres."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Het was niet mogelijk de gebruiker te vinden na registratie."
|
||||
|
|
|
@ -9,19 +9,19 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+0000\n"
|
||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-registerthrottle\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Hindi matagpuan ang tirahan ng IP."
|
||||
|
||||
|
@ -33,12 +33,12 @@ msgstr "Napakaraming mga pagpapatala. Magpahinga muna at subukan uli mamaya."
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr ""
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Hindi matagpuan ang tagagamit pagkatapos ng matagumpay na pagpapatala."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr ""
|
||||
"Naglilipat-lipat ng labis na pagpapatala mula sa isang nag-iisang tirahan ng "
|
||||
"IP."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr ""
|
||||
#~ "Hindi matagpuan ang tagagamit pagkatapos ng matagumpay na pagpapatala."
|
||||
|
|
|
@ -10,20 +10,20 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - RegisterThrottle\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 15:12:50+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:21+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: 2010-11-30 20:43:52+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\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"
|
||||
|
||||
#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185
|
||||
#: RegisterThrottlePlugin.php:134
|
||||
msgid "Cannot find IP address."
|
||||
msgstr "Не вдається знайти IP-адресу."
|
||||
|
||||
|
@ -35,10 +35,9 @@ msgstr "Забагато реєстрацій. Випийте поки що ка
|
|||
msgid "A banned user has registered from this address."
|
||||
msgstr "Заблокований користувач був зареєстрований з цієї адреси."
|
||||
|
||||
#: RegisterThrottlePlugin.php:191
|
||||
msgid "Cannot find user after successful registration."
|
||||
msgstr "Не вдається знайти користувача після успішної реєстрації."
|
||||
|
||||
#: RegisterThrottlePlugin.php:224
|
||||
#: RegisterThrottlePlugin.php:220
|
||||
msgid "Throttles excessive registration from a single IP address."
|
||||
msgstr "Цей додаток обмежує кількість реєстрацій з певної IP-адреси."
|
||||
|
||||
#~ msgid "Cannot find user after successful registration."
|
||||
#~ msgstr "Не вдається знайти користувача після успішної реєстрації."
|
||||
|
|
28
plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po
Normal file
28
plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Translation of StatusNet - SQLProfile 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 - SQLProfile\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:33+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-20 20:16:03+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-sqlprofile\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"
|
||||
|
||||
#: SQLProfilePlugin.php:41
|
||||
msgid "Debug tool to watch for poorly indexed DB queries."
|
||||
msgstr ""
|
||||
"Отладочный инструмент для наблюдения плохо индексированных запросов к БД."
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TabFocus\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:06+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:49+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:38+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:22:18+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-tabfocus\n"
|
||||
|
@ -28,5 +28,5 @@ msgid ""
|
|||
"Twitter."
|
||||
msgstr ""
|
||||
"TabFocus го менува поведението на образецот за забелешки: со пристискање на "
|
||||
"копчето Tab во местото за текст се означува копчето „Прати“, така "
|
||||
"копчето Tab во местото за текст се означува копчето „Испрати“, така "
|
||||
"поситоветувајќи се со поведението на Twitter."
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -242,32 +242,32 @@ msgstr ""
|
|||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:13+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
|
||||
|
@ -247,32 +247,32 @@ msgstr "Ger-tremen"
|
|||
msgid "Connect"
|
||||
msgstr "Kevreañ"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "N'eo ket aotreet krouiñ kontoù."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Lesanv nann-aotreet."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Implijet eo dija al lesanv-se. Klaskit unan all."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr ""
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Anv implijer pe ger-tremen direizh."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:14+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+0000\n"
|
||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ca\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
|
||||
|
@ -275,32 +275,32 @@ msgstr "Contrasenya"
|
|||
msgid "Connect"
|
||||
msgstr "Connecta"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "No es permet el registre."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "No és un codi d'invitació vàlid."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "El sobrenom no és permès."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "El sobrenom ja és en ús. Proveu-ne un altre."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Error en registrar l'usuari."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Error en connectar l'usuari al Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nom d'usuari o contrasenya no vàlida."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:14+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+0000\n"
|
||||
"Language-Team: Persian <http://translatewiki.net/wiki/Portal:fa>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fa\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
|
||||
|
@ -247,32 +247,32 @@ msgstr "رمز عبور"
|
|||
msgid "Connect"
|
||||
msgstr "اتصال"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "اجازهٔ ثبتنام داده نشده است."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "کد دعوت نامعتبر است."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "نام مستعار مجاز نیست."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "این نام مستعار در حال حاضر مورد استفاده است. یکی دیگر را بیازمایید."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "خطا در ثبت نام کاربر."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "خطا در اتصال کاربر به توییتر."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "نام کاربری یا رمز عبور اشتباه است."
|
||||
|
||||
|
|
|
@ -10,13 +10,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:14+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n"
|
||||
|
@ -279,32 +279,32 @@ msgstr "Mot de passe"
|
|||
msgid "Connect"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Inscription non autorisée."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le code d’invitation n’est pas valide."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonyme non autorisé."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonyme déjà utilisé. Essayez-en un autre."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Erreur lors de l’inscription de l’utilisateur."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Erreur de connexion de l’utilisateur à Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nom d’utilisateur ou mot de passe incorrect."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:14+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n"
|
||||
|
@ -270,32 +270,32 @@ msgstr "Contrasigno"
|
|||
msgid "Connect"
|
||||
msgstr "Connecter"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Creation de conto non permittite."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Le codice de invitation es invalide."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Pseudonymo non permittite."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonymo ja in uso. Proba un altere."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Error durante le registration del usator."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Error durante le connexion del usator a Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Nomine de usator o contrasigno invalide."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:15+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n"
|
||||
|
@ -272,32 +272,32 @@ msgstr "Лозинка"
|
|||
msgid "Connect"
|
||||
msgstr "Поврзи се"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Регистрацијата не е дозволена."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Ова не е важечки код за покана."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Прекарот не е дозволен."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Прекарот е зафатен. Одберете друг."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Грешка при регистрирање на корисникот."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Грешка при поврзувањето на корисникот со Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Неважечко корисничко име или лозинка."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:15+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n"
|
||||
|
@ -277,33 +277,33 @@ msgstr "Wachtwoord"
|
|||
msgid "Connect"
|
||||
msgstr "Koppelen"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Registratie is niet toegestaan."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "De uitnodigingscode is ongeldig."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Gebruikersnaam niet toegestaan."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Fout bij het registreren van de gebruiker."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Fout bij het verbinden van de gebruiker met Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:15+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+0000\n"
|
||||
"Language-Team: Turkish <http://translatewiki.net/wiki/Portal:tr>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tr\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
|
||||
|
@ -256,32 +256,32 @@ msgstr "Parola"
|
|||
msgid "Connect"
|
||||
msgstr "Bağlan"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Kayıt yapılmasına izin verilmiyor."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Geçerli bir davet kodu değil."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Bu kullanıcı adına izin verilmiyor."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Kullanıcı adı halihazırda kullanılıyor. Başka bir tane deneyin."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Kullanıcı kayıt hatası."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Twitter'a kullanıcı bağlama hatası."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Geçersiz kullanıcı adı veya parola."
|
||||
|
||||
|
|
|
@ -9,13 +9,13 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:15+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+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-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n"
|
||||
|
@ -274,32 +274,32 @@ msgstr "Пароль"
|
|||
msgid "Connect"
|
||||
msgstr "Під’єднати"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "Реєстрацію не дозволено."
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Це не дійсний код запрошення."
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "Нікнейм не допускається."
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Цей нікнейм вже використовується. Спробуйте інший."
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "Помилка при реєстрації користувача."
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "Помилка при підключенні користувача до Twitter."
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Недійсне ім’я або пароль."
|
||||
|
||||
|
|
|
@ -10,14 +10,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - TwitterBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-14 10:29+0000\n"
|
||||
"PO-Revision-Date: 2011-01-14 10:34:15+0000\n"
|
||||
"POT-Creation-Date: 2011-01-22 14:50+0000\n"
|
||||
"PO-Revision-Date: 2011-01-22 15:01:47+0000\n"
|
||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||
"hans>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hans\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-twitterbridge\n"
|
||||
|
@ -264,32 +264,32 @@ msgstr "密码"
|
|||
msgid "Connect"
|
||||
msgstr "关联"
|
||||
|
||||
#: twitterauthorization.php:423 twitterauthorization.php:432
|
||||
#: twitterauthorization.php:427 twitterauthorization.php:436
|
||||
msgid "Registration not allowed."
|
||||
msgstr "不允许注册。"
|
||||
|
||||
#: twitterauthorization.php:439
|
||||
#: twitterauthorization.php:443
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "无效的邀请码。"
|
||||
|
||||
#: twitterauthorization.php:452
|
||||
#: twitterauthorization.php:456
|
||||
msgid "Nickname not allowed."
|
||||
msgstr "昵称不被允许。"
|
||||
|
||||
#: twitterauthorization.php:457
|
||||
#: twitterauthorization.php:461
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "昵称已被使用,换一个吧。"
|
||||
|
||||
#: twitterauthorization.php:472
|
||||
#: twitterauthorization.php:476
|
||||
msgid "Error registering user."
|
||||
msgstr "注册用户出错。"
|
||||
|
||||
#: twitterauthorization.php:483 twitterauthorization.php:521
|
||||
#: twitterauthorization.php:541
|
||||
#: twitterauthorization.php:487 twitterauthorization.php:527
|
||||
#: twitterauthorization.php:547
|
||||
msgid "Error connecting user to Twitter."
|
||||
msgstr "关联用户到 Twitter 出错。"
|
||||
|
||||
#: twitterauthorization.php:503
|
||||
#: twitterauthorization.php:509
|
||||
msgid "Invalid username or password."
|
||||
msgstr "用户名或密码不正确。"
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user