From 38916972220b3bc328e3109df8e24288277e33a7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Jun 2011 17:19:36 +0200 Subject: [PATCH 01/31] Fix FIXME: removed patchwork message. Using Markdown now. Update translator documentation. Update whitespace. i18n fixes. --- plugins/TwitterBridge/twittersettings.php | 59 +++++++++++++++-------- 1 file changed, 40 insertions(+), 19 deletions(-) diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index 763a586079..4264d2c4ca 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -54,6 +54,7 @@ class TwittersettingsAction extends ProfileSettingsAction function title() { + // TRANS: Title for page with Twitter integration settings. return _m('Twitter settings'); } @@ -106,57 +107,63 @@ class TwittersettingsAction extends ProfileSettingsAction $this->elementStart('ul', 'form_data'); $this->elementStart('li', array('id' => 'settings_twitter_login_button')); $this->element('a', array('href' => common_local_url('twitterauthorization')), + // TRANS: Link description to connect to a Twitter account. 'Connect my Twitter account'); $this->elementEnd('li'); $this->elementEnd('ul'); $this->elementEnd('fieldset'); } else { + // TRANS: Fieldset legend. $this->element('legend', null, _m('Twitter account')); $this->elementStart('p', array('id' => 'form_confirmed')); $this->element('a', array('href' => $fuser->uri), $fuser->nickname); $this->elementEnd('p'); $this->element('p', 'form_note', + // TRANS: Form note when a Twitter account has been connected. _m('Connected Twitter account')); $this->elementEnd('fieldset'); $this->elementStart('fieldset'); + // TRANS: Fieldset legend. $this->element('legend', null, _m('Disconnect my account from Twitter')); if (!$user->password) { - $this->elementStart('p', array('class' => 'form_guide')); - // @todo FIXME: Bad i18n (patchwork in three parts). - $this->text(_m('Disconnecting your Twitter ' . - 'could make it impossible to log in! Please ')); - $this->element('a', - array('href' => common_local_url('passwordsettings')), - _m('set a password')); - - $this->text(_m(' first.')); + // TRANS: Form guide. %s is a URL to the password settings. + // TRANS: This message contains a Markdown link in the form [description](link). + $message = sprintf(_m('Disconnecting your Twitter account ' . + 'could make it impossible to log in! Please ' . + '[set a password](%s) first.'), + common_local_url('passwordsettings')); + $message = common_markup_to_html($message); + $this->text($message); $this->elementEnd('p'); } else { - // TRANS: %1$s is the current website name. + // TRANS: Form instructions. %s is a URL to the password settings. + // TRANS: %1$s is the StatusNet sitename. $note = _m('Keep your %1$s account but disconnect from Twitter. ' . 'You can use your %1$s password to log in.'); - $site = common_config('site', 'name'); $this->element('p', 'instructions', sprintf($note, $site)); - $this->submit('disconnect', _m('Disconnect')); + // TRANS: Button text for disconnecting a Twitter account. + $this->submit('disconnect', _m('BUTTON','Disconnect')); } $this->elementEnd('fieldset'); $this->elementStart('fieldset', array('id' => 'settings_twitter_preferences')); + // TRANS: Fieldset legend. $this->element('legend', null, _m('Preferences')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->checkbox('noticesend', + // TRANS: Checkbox label. _m('Automatically send my notices to Twitter.'), ($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND) : @@ -164,6 +171,7 @@ class TwittersettingsAction extends ProfileSettingsAction $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('replysync', + // TRANS: Checkbox label. _m('Send local "@" replies to Twitter.'), ($flink) ? ($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : @@ -171,6 +179,7 @@ class TwittersettingsAction extends ProfileSettingsAction $this->elementEnd('li'); $this->elementStart('li'); $this->checkbox('friendsync', + // TRANS: Checkbox label. _m('Subscribe to my Twitter friends here.'), ($flink) ? ($flink->friendsync & FOREIGN_FRIEND_RECV) : @@ -180,6 +189,7 @@ class TwittersettingsAction extends ProfileSettingsAction if (common_config('twitterimport','enabled')) { $this->elementStart('li'); $this->checkbox('noticerecv', + // TRANS: Checkbox label. _m('Import my friends timeline.'), ($flink) ? ($flink->noticesync & FOREIGN_NOTICE_RECV) : @@ -196,9 +206,11 @@ class TwittersettingsAction extends ProfileSettingsAction $this->elementEnd('ul'); if ($flink) { - $this->submit('save', _m('Save')); + // TRANS: Button text for saving Twitter integration settings. + $this->submit('save', _m('BUTTON','Save')); } else { - $this->submit('add', _m('Add')); + // TRANS: Button text for adding Twitter integration. + $this->submit('add', _m('BUTTON','Add')); } $this->elementEnd('fieldset'); @@ -222,6 +234,7 @@ class TwittersettingsAction extends ProfileSettingsAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_m('There was a problem with your session token. '. 'Try again, please.')); return; @@ -232,6 +245,7 @@ class TwittersettingsAction extends ProfileSettingsAction } else if ($this->arg('disconnect')) { $this->removeTwitterAccount(); } else { + // TRANS: Client error displayed when the submitted form contains unexpected data. $this->showForm(_m('Unexpected form submission.')); } } @@ -247,6 +261,7 @@ class TwittersettingsAction extends ProfileSettingsAction $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); if (empty($flink)) { + // TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. $this->clientError(_m('No Twitter connection to remove.')); return; } @@ -255,10 +270,12 @@ class TwittersettingsAction extends ProfileSettingsAction if (empty($result)) { common_log_db_error($flink, 'DELETE', __FILE__); - $this->serverError(_m('Couldn\'t remove Twitter user.')); + // TRANS: Server error displayed when trying to remove a connected Twitter account fails. + $this->serverError(_m('Could not remove Twitter user.')); return; } + // TRANS: Success message displayed after disconnecting a Twitter account. $this->showForm(_m('Twitter account disconnected.'), true); } @@ -279,7 +296,9 @@ class TwittersettingsAction extends ProfileSettingsAction if (empty($flink)) { common_log_db_error($flink, 'SELECT', __FILE__); - $this->showForm(_m('Couldn\'t save Twitter preferences.')); + // @todo FIXME: Shouldn't this be a serverError()? + // TRANS: Server error displayed when saving Twitter integration preferences fails. + $this->showForm(_m('Could not save Twitter preferences.')); return; } @@ -290,7 +309,9 @@ class TwittersettingsAction extends ProfileSettingsAction if ($result === false) { common_log_db_error($flink, 'UPDATE', __FILE__); - $this->showForm(_m('Couldn\'t save Twitter preferences.')); + // @todo FIXME: Shouldn't this be a serverError()? + // TRANS: Server error displayed when saving Twitter integration preferences fails. + $this->showForm(_m('Could not save Twitter preferences.')); return; } @@ -298,6 +319,7 @@ class TwittersettingsAction extends ProfileSettingsAction $this->notifyDaemon($flink->foreign_id, $noticerecv); } + // TRANS: Success message after saving Twitter integration preferences. $this->showForm(_m('Twitter preferences saved.'), true); } @@ -306,7 +328,6 @@ class TwittersettingsAction extends ProfileSettingsAction */ function notifyDaemon($twitterUserId, $receiving) { - // todo... should use control signals rather than queues + // @todo... should use control signals rather than queues } - } From 199404c74aa7e8152a5a9d3c03a503d5459ff12e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Jun 2011 17:20:36 +0200 Subject: [PATCH 02/31] Update translator documentation. Update whitespace. i18n/L10n fixes. --- plugins/TwitterBridge/Notice_to_status.php | 6 --- plugins/TwitterBridge/TwitterBridgePlugin.php | 14 ++++-- .../TwitterBridge/Twitter_synch_status.php | 1 - plugins/TwitterBridge/jsonstreamreader.php | 22 ++++++--- plugins/TwitterBridge/twitter.php | 1 - plugins/TwitterBridge/twitteradminpanel.php | 42 +++++++++++----- .../TwitterBridge/twitterauthorization.php | 49 ++++++++++++++++--- plugins/TwitterBridge/twitterimport.php | 2 +- plugins/TwitterBridge/twitterlogin.php | 6 ++- plugins/TwitterBridge/twitterstreamreader.php | 4 +- 10 files changed, 105 insertions(+), 42 deletions(-) diff --git a/plugins/TwitterBridge/Notice_to_status.php b/plugins/TwitterBridge/Notice_to_status.php index 3b8f816cfc..313adaeafc 100644 --- a/plugins/TwitterBridge/Notice_to_status.php +++ b/plugins/TwitterBridge/Notice_to_status.php @@ -71,7 +71,6 @@ class Notice_to_status extends Memcached_DataObject * @return Notice_to_status object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Notice_to_status', $k, $v); @@ -85,7 +84,6 @@ class Notice_to_status extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -102,7 +100,6 @@ class Notice_to_status extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -120,7 +117,6 @@ class Notice_to_status extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('notice_id' => 'K', 'status_id' => 'U'); @@ -136,7 +132,6 @@ class Notice_to_status extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); @@ -151,7 +146,6 @@ class Notice_to_status extends Memcached_DataObject * * @return Notice_to_status new object for this value */ - static function saveNew($notice_id, $status_id) { if (empty($notice_id)) { diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index 29192cf53b..754dabd780 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -148,8 +148,10 @@ class TwitterBridgePlugin extends Plugin if (self::hasKeys() && common_config('twitter', 'signin')) { $action->menuItem( common_local_url('twitterlogin'), - _m('Twitter'), - _m('Login or register using Twitter'), + // TRANS: Menu item in login navigation. + _m('MENU','Twitter'), + // TRANS: Title for menu item in login navigation. + _m('Login or register using Twitter.'), 'twitterlogin' === $action_name ); } @@ -171,7 +173,9 @@ class TwitterBridgePlugin extends Plugin $action->menuItem( common_local_url('twittersettings'), - _m('Twitter'), + // TRANS: Menu item in connection settings navigation. + _m('MENU','Twitter'), + // TRANS: Title for menu item in connection settings navigation. _m('Twitter integration options'), $action_name === 'twittersettings' ); @@ -323,8 +327,8 @@ class TwitterBridgePlugin extends Plugin 'version' => self::VERSION, 'author' => 'Zach Copley, Julien C', 'homepage' => 'http://status.net/wiki/Plugin:TwitterBridge', - 'rawdescription' => _m( - 'The Twitter "bridge" plugin allows integration ' . + // TRANS: Plugin description. + 'rawdescription' => _m('The Twitter "bridge" plugin allows integration ' . 'of a StatusNet instance with ' . 'Twitter.' ) diff --git a/plugins/TwitterBridge/Twitter_synch_status.php b/plugins/TwitterBridge/Twitter_synch_status.php index a8337862c8..9c61e7e7e0 100644 --- a/plugins/TwitterBridge/Twitter_synch_status.php +++ b/plugins/TwitterBridge/Twitter_synch_status.php @@ -64,7 +64,6 @@ class Twitter_synch_status extends Memcached_DataObject * @param mixed $v Value to lookup * * @return Twitter_synch_status object found, or null for no hits - * */ function staticGet($k, $v=null) { diff --git a/plugins/TwitterBridge/jsonstreamreader.php b/plugins/TwitterBridge/jsonstreamreader.php index f6572c9eef..d5852c93e3 100644 --- a/plugins/TwitterBridge/jsonstreamreader.php +++ b/plugins/TwitterBridge/jsonstreamreader.php @@ -63,7 +63,8 @@ abstract class JsonStreamReader } else if ($scheme == 'https') { $rawScheme = 'ssl'; } else { - throw new ServerException('Invalid URL scheme for HTTP stream reader'); + // TRANS: Server exception thrown when an invalid URL scheme is detected. + throw new ServerException(_m('Invalid URL scheme for HTTP stream reader.')); } $host = parse_url($url, PHP_URL_HOST); @@ -180,7 +181,8 @@ abstract class JsonStreamReader public function handleInput($socket) { if ($this->socket !== $socket) { - throw new Exception('Got input from unexpected socket!'); + // TRANS: Exception thrown when input from an inexpected socket is encountered. + throw new Exception(_m('Got input from unexpected socket!')); } try { @@ -210,7 +212,9 @@ abstract class JsonStreamReader $this->handleLineActive($line); break; default: - throw new Exception('Invalid state in handleLine: ' . $this->state); + // TRANS: Exception thrown when an invalid state is encountered in handleLine. + // TRANS: %s is the invalid state. + throw new Exception(sprintf(_m('Invalid state in handleLine: %s.'),$this->state)); } } @@ -222,15 +226,21 @@ abstract class JsonStreamReader { $bits = explode(' ', $line, 3); if (count($bits) != 3) { - throw new Exception("Invalid HTTP response line: $line"); + // TRANS: Exception thrown when an invalid response line is encountered. + // TRANS: %s is the invalid line. + throw new Exception(sprintf(_m('Invalid HTTP response line: %s.'),$line)); } list($http, $status, $text) = $bits; if (substr($http, 0, 5) != 'HTTP/') { - throw new Exception("Invalid HTTP response line chunk '$http': $line"); + // TRANS: Exception thrown when an invalid response line part is encountered. + // TRANS: %1$s is the chunk, %2$s is the line. + throw new Exception(sprintf(_m('Invalid HTTP response line chunk "%1$s": %2$s.'),$http, $line)); } if ($status != '200') { - throw new Exception("Bad HTTP response code $status: $line"); + // TRANS: Exception thrown when an invalid response code is encountered. + // TRANS: %1$s is the response code, %2$s is the line. + throw new Exception(sprintf(_m('Bad HTTP response code %1$s: %2$s.'),$status,$line)); } common_log(LOG_DEBUG, "$this->id $line"); $this->state = 'headers'; diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 396de22b09..b9105e33cb 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -71,7 +71,6 @@ function save_twitter_user($twitter_id, $screen_name) $fuser = Foreign_user::getForeignUser($twitter_id, TWITTER_SERVICE); if (!empty($fuser)) { - // Delete old record if Twitter user changed screen name if ($fuser->nickname != $screen_name) { diff --git a/plugins/TwitterBridge/twitteradminpanel.php b/plugins/TwitterBridge/twitteradminpanel.php index 1a83b47d56..9ace4e4a97 100644 --- a/plugins/TwitterBridge/twitteradminpanel.php +++ b/plugins/TwitterBridge/twitteradminpanel.php @@ -49,7 +49,8 @@ class TwitteradminpanelAction extends AdminPanelAction */ function title() { - return _m('Twitter'); + // TRANS: Page title for Twitter administration panel. + return _m('TITLE','Twitter'); } /** @@ -59,6 +60,7 @@ class TwitteradminpanelAction extends AdminPanelAction */ function getInstructions() { + // TRANS: Instructions for Twitter bridge administration page. return _m('Twitter bridge settings'); } @@ -147,13 +149,15 @@ class TwitteradminpanelAction extends AdminPanelAction if (mb_strlen($values['twitter']['consumer_key']) > 255) { $this->clientError( - _m("Invalid consumer key. Max length is 255 characters.") + // TRANS: Client error displayed when a consumer key is invalid because it is too long. + _m('Invalid consumer key. Maximum length is 255 characters.') ); } if (mb_strlen($values['twitter']['consumer_secret']) > 255) { $this->clientError( - _m("Invalid consumer secret. Max length is 255 characters.") + // TRANS: Client error displayed when a consumer secret is invalid because it is too long. + _m('Invalid consumer secret. Maximum length is 255 characters.') ); } } @@ -209,14 +213,17 @@ class TwitterAdminPanelForm extends AdminForm 'fieldset', array('id' => 'settings_twitter-application') ); + // TRANS: Fieldset legend for Twitter application settings. $this->out->element('legend', null, _m('Twitter application settings')); $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input( 'consumer_key', + // TRANS: Field label for Twitter assigned consumer key. _m('Consumer key'), - _m('Consumer key assigned by Twitter'), + // TRANS: Field title for Twitter assigned consumer key. + _m('The consumer key assigned by Twitter.'), 'twitter' ); $this->unli(); @@ -224,8 +231,10 @@ class TwitterAdminPanelForm extends AdminForm $this->li(); $this->input( 'consumer_secret', - _m('Consumer secret'), - _m('Consumer secret assigned by Twitter'), + // TRANS: Field label for Twitter assigned consumer secret. + _m('Consumer secret'), + // TRANS: Field title for Twitter assigned consumer secret. + _m('The consumer secret assigned by Twitter.'), 'twitter' ); $this->unli(); @@ -235,15 +244,18 @@ class TwitterAdminPanelForm extends AdminForm if (!empty($globalConsumerKey) && !empty($globalConsumerSec)) { $this->li(); - $this->out->element('p', 'form_guide', _m('Note: a global consumer key and secret are set.')); + // TRANS: Form guide displayed when two required fields have already been provided. + $this->out->element('p', 'form_guide', _m('Note: A global consumer key and secret are set.')); $this->unli(); } $this->li(); $this->input( 'source', - _m('Integration source'), - _m('Name of your Twitter application'), + // TRANS: Field label for Twitter application name. + _m('Integration source'), + // TRANS: Field title for Twitter application name. + _m('The name of your Twitter application.'), 'integration' ); $this->unli(); @@ -255,6 +267,7 @@ class TwitterAdminPanelForm extends AdminForm 'fieldset', array('id' => 'settings_twitter-options') ); + // TRANS: Fieldset legend for Twitter integration options. $this->out->element('legend', null, _m('Options')); $this->out->elementStart('ul', 'form_data'); @@ -262,17 +275,21 @@ class TwitterAdminPanelForm extends AdminForm $this->li(); $this->out->checkbox( + // TRANS: Checkbox label for global setting. 'signin', _m('Enable "Sign-in with Twitter"'), (bool) $this->value('signin', 'twitter'), - _m('Allow users to login with their Twitter credentials') + // TRANS: Checkbox title. + _m('This allow users to login with their Twitter credentials.') ); $this->unli(); if (Event::handle('TwitterBridgeAdminImportControl')) { $this->li(); $this->out->checkbox( + // TRANS: Checkbox label for global setting. 'enabled', _m('Enable Twitter import'), (bool) $this->value('enabled', 'twitterimport'), + // TRANS: Checkbox title for global setting. _m('Allow users to import their Twitter friends\' timelines. Requires daemons to be manually configured.') ); $this->unli(); @@ -290,6 +307,9 @@ class TwitterAdminPanelForm extends AdminForm */ function formActions() { - $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Twitter settings')); + // TRANS: Button text for saving the administrative Twitter bridge settings. + $this->out->submit('submit', _m('BUTTON','Save'), 'submit', null, + // TRANS: Button title for saving the administrative Twitter bridge settings. + _m('Save the Twitter bridge settings.')); } } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index e45b677e17..22d7a7fbdc 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -117,12 +117,14 @@ class TwitterauthorizationAction extends Action $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_m('There was a problem with your session token. Try again, please.')); return; } if ($this->arg('create')) { if (!$this->boolean('license')) { + // TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. $this->showForm(_m('You cannot register if you do not agree to the license.'), $this->trimmed('newname')); return; @@ -132,6 +134,7 @@ class TwitterauthorizationAction extends Action $this->connectNewUser(); } else { common_debug('Twitter bridge - ' . print_r($this->args, true)); + // TRANS: Form validation error displayed when an unhandled error occurs. $this->showForm(_m('Something weird happened.'), $this->trimmed('newname')); } @@ -157,7 +160,6 @@ class TwitterauthorizationAction extends Action function authorizeRequestToken() { try { - // Get a new request token and authorize it $client = new TwitterOAuthClient(); @@ -169,7 +171,6 @@ class TwitterauthorizationAction extends Action $_SESSION['twitter_request_token_secret'] = $req_tok->secret; $auth_link = $client->getAuthorizeLink($req_tok, $this->signin); - } catch (OAuthClientException $e) { $msg = sprintf( 'OAuth client error - code: %1s, msg: %2s', @@ -178,6 +179,7 @@ class TwitterauthorizationAction extends Action ); common_log(LOG_INFO, 'Twitter bridge - ' . $msg); $this->serverError( + // TRANS: Server error displayed when linking to a Twitter account fails. _m('Could not link your Twitter account.') ); } @@ -198,7 +200,8 @@ class TwitterauthorizationAction extends Action if ($_SESSION['twitter_request_token'] != $this->oauth_token) { $this->serverError( - _m('Couldn\'t link your Twitter account: oauth_token mismatch.') + // TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. + _m('Could not link your Twitter account: oauth_token mismatch.') ); } @@ -226,7 +229,8 @@ class TwitterauthorizationAction extends Action ); common_log(LOG_INFO, 'Twitter bridge - ' . $msg); $this->serverError( - _m('Couldn\'t link your Twitter account.') + // TRANS: Server error displayed when linking to a Twitter account fails. + _m('Could not link your Twitter account.') ); } @@ -297,7 +301,8 @@ class TwitterauthorizationAction extends Action if (empty($flink_id)) { common_log_db_error($flink, 'INSERT', __FILE__); - $this->serverError(_m('Couldn\'t link your Twitter account.')); + // TRANS: Server error displayed when linking to a Twitter account fails. + $this->serverError(_m('Could not link your Twitter account.')); } return $flink_id; @@ -309,12 +314,14 @@ class TwitterauthorizationAction extends Action $this->element('div', array('class' => 'error'), $this->error); } else { $this->element('div', 'instructions', - sprintf(_m('This is the first time you\'ve logged into %s so we must connect your Twitter account to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name'))); + // TRANS: Page instruction. %s is the StatusNet sitename. + sprintf(_m('This is the first time you have logged into %s so we must connect your Twitter account to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name'))); } } function title() { + // TRANS: Page title. return _m('Twitter Account Setup'); } @@ -348,6 +355,7 @@ class TwitterauthorizationAction extends Action 'class' => 'form_settings', 'action' => common_local_url('twitterauthorization'))); $this->elementStart('fieldset', array('id' => 'settings_twitter_connect_options')); + // TRANS: Fieldset legend. $this->element('legend', null, _m('Connection options')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); @@ -357,6 +365,8 @@ class TwitterauthorizationAction extends Action 'name' => 'license', 'value' => 'true')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); + // TRANS: Text for license agreement checkbox. + // TRANS: %s is the license as configured for the StatusNet site. $message = _m('My text and files are available under %s ' . 'except this private data: password, ' . 'email address, IM address, and phone number.'); @@ -378,8 +388,10 @@ class TwitterauthorizationAction extends Action $this->elementStart('fieldset'); $this->hidden('token', common_session_token()); $this->element('legend', null, + // TRANS: Fieldset legend. _m('Create new account')); $this->element('p', null, + // TRANS: Sub form introduction text. _m('Create a new user with this nickname.')); $this->elementStart('ul', 'form_data'); @@ -387,12 +399,16 @@ class TwitterauthorizationAction extends Action Event::handle('StartRegistrationFormData', array($this)); $this->elementStart('li'); + // TRANS: Field label. $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', + // TRANS: Field title for nickname field. _m('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->elementEnd('li'); $this->elementStart('li'); + // TRANS: Field label. $this->input('email', _m('LABEL','Email'), $this->getEmail(), + // TRANS: Field title for e-mail address field. _m('Used only for updates, announcements, '. 'and password recovery')); $this->elementEnd('li'); @@ -401,23 +417,29 @@ class TwitterauthorizationAction extends Action Event::handle('EndRegistrationFormData', array($this)); $this->elementEnd('ul'); - $this->submit('create', _m('Create')); + // TRANS: Button text for creating a new StatusNet account in the Twitter connect page. + $this->submit('create', _m('BUTTON','Create')); $this->elementEnd('fieldset'); $this->elementStart('fieldset'); $this->element('legend', null, + // TRANS: Fieldset legend. _m('Connect existing account')); $this->element('p', null, + // TRANS: Sub form introduction text. _m('If you already have an account, login with your username and password to connect it to your Twitter account.')); $this->elementStart('ul', 'form_data'); $this->elementStart('li'); + // TRANS: Field label. $this->input('nickname', _m('Existing nickname')); $this->elementEnd('li'); $this->elementStart('li'); + // TRANS: Field label. $this->password('password', _m('Password')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('connect', _m('Connect')); + // TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. + $this->submit('connect', _m('BUTTON','Connect')); $this->elementEnd('fieldset'); $this->elementEnd('fieldset'); @@ -463,6 +485,7 @@ class TwitterauthorizationAction extends Action } if (common_config('site', 'closed')) { + // TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. $this->clientError(_m('Registration not allowed.')); return; } @@ -472,6 +495,7 @@ class TwitterauthorizationAction extends Action if (common_config('site', 'inviteonly')) { $code = $_SESSION['invitecode']; if (empty($code)) { + // TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. $this->clientError(_m('Registration not allowed.')); return; } @@ -479,6 +503,7 @@ class TwitterauthorizationAction extends Action $invite = Invitation::staticGet($code); if (empty($invite)) { + // TRANS: Client error displayed when trying to create a new user with an invalid invitation code. $this->clientError(_m('Not a valid invitation code.')); return; } @@ -492,11 +517,13 @@ class TwitterauthorizationAction extends Action } if (!User::allowed_nickname($nickname)) { + // TRANS: Client error displayed when trying to create a new user with an invalid username. $this->showForm(_m('Nickname not allowed.')); return; } if (User::staticGet('nickname', $nickname)) { + // TRANS: Client error displayed when trying to create a new user with a username that is already in use. $this->showForm(_m('Nickname already in use. Try another one.')); return; } @@ -517,6 +544,7 @@ class TwitterauthorizationAction extends Action $user = User::register($args); if (empty($user)) { + // TRANS: Server error displayed when creating a new user has failed. $this->serverError(_m('Error registering user.')); return; } @@ -528,6 +556,7 @@ class TwitterauthorizationAction extends Action save_twitter_user($this->twuid, $this->tw_fields['screen_name']); if (!$result) { + // TRANS: Server error displayed when connecting a user to a Twitter user has failed. $this->serverError(_m('Error connecting user to Twitter.')); return; } @@ -550,6 +579,8 @@ class TwitterauthorizationAction extends Action $password = $this->trimmed('password'); if (!common_check_user($nickname, $password)) { + // TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because + // TRANS: the provided username and/or password are incorrect. $this->showForm(_m('Invalid username or password.')); return; } @@ -568,6 +599,7 @@ class TwitterauthorizationAction extends Action save_twitter_user($this->twuid, $this->tw_fields['screen_name']); if (!$result) { + // TRANS: Server error displayed connecting a user to a Twitter user has failed. $this->serverError(_m('Error connecting user to Twitter.')); return; } @@ -588,6 +620,7 @@ class TwitterauthorizationAction extends Action $result = $this->flinkUser($user->id, $this->twuid); if (empty($result)) { + // TRANS: Server error displayed connecting a user to a Twitter user has failed. $this->serverError(_m('Error connecting user to Twitter.')); return; } diff --git a/plugins/TwitterBridge/twitterimport.php b/plugins/TwitterBridge/twitterimport.php index 0eacfcd62c..1c362d6fe8 100644 --- a/plugins/TwitterBridge/twitterimport.php +++ b/plugins/TwitterBridge/twitterimport.php @@ -700,4 +700,4 @@ class TwitterImport } } } -} \ No newline at end of file +} diff --git a/plugins/TwitterBridge/twitterlogin.php b/plugins/TwitterBridge/twitterlogin.php index 062c781f77..379e136045 100644 --- a/plugins/TwitterBridge/twitterlogin.php +++ b/plugins/TwitterBridge/twitterlogin.php @@ -53,6 +53,7 @@ class TwitterloginAction extends Action parent::handle($args); if (common_is_real_login()) { + // TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. $this->clientError(_m('Already logged in.')); } @@ -61,11 +62,13 @@ class TwitterloginAction extends Action function title() { - return _m('Twitter Login'); + // TRANS: Title for login using Twitter page. + return _m('TITLE','Twitter Login'); } function getInstructions() { + // TRANS: Instructions for login using Twitter page. return _m('Login with your Twitter account'); } @@ -84,6 +87,7 @@ class TwitterloginAction extends Action null, array('signin' => true)))); $this->element('img', array('src' => Plugin::staticPath('TwitterBridge', 'Sign-in-with-Twitter-lighter.png'), + // TRANS: Alternative text for "sign in with Twitter" image. 'alt' => _m('Sign in with Twitter'))); $this->elementEnd('a'); } diff --git a/plugins/TwitterBridge/twitterstreamreader.php b/plugins/TwitterBridge/twitterstreamreader.php index 5b0613bc40..f55fca40ae 100644 --- a/plugins/TwitterBridge/twitterstreamreader.php +++ b/plugins/TwitterBridge/twitterstreamreader.php @@ -54,7 +54,7 @@ abstract class TwitterStreamReader extends JsonStreamReader * * @param string $url * @param array $params - * @return string + * @return string */ protected function oAuthUrl($url, $params=array()) { @@ -136,7 +136,7 @@ abstract class TwitterStreamReader extends JsonStreamReader /** * Call event handler callbacks for the given event. - * + * * @param string $event * @param mixed $arg1 ... one or more params to pass on */ From 33ce46f074e450232043c0b2f54c5bcb25d81a08 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Jun 2011 17:58:54 +0200 Subject: [PATCH 03/31] Add new POT files. --- .../EmailReminder/locale/EmailReminder.pot | 37 +++++++++++++++++++ plugins/Spotify/locale/Spotify.pot | 22 +++++++++++ 2 files changed, 59 insertions(+) create mode 100644 plugins/EmailReminder/locale/EmailReminder.pot create mode 100644 plugins/Spotify/locale/Spotify.pot diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot new file mode 100644 index 0000000000..e93cd41b62 --- /dev/null +++ b/plugins/EmailReminder/locale/EmailReminder.pot @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: EmailReminderPlugin.php:204 +msgid "Send email reminders for various things." +msgstr "" + +#: classes/Email_reminder.php:100 +msgid "Database error inserting reminder record." +msgstr "" + +#: lib/userconfirmregreminderhandler.php:84 +msgid "Reminder - please confirm your registration!" +msgstr "" + +#: lib/userconfirmregreminderhandler.php:97 +msgid "Second reminder - please confirm your registration!" +msgstr "" + +#: lib/userconfirmregreminderhandler.php:111 +msgid "Final reminder - please confirm your registration!" +msgstr "" diff --git a/plugins/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot new file mode 100644 index 0000000000..39765b1c6d --- /dev/null +++ b/plugins/Spotify/locale/Spotify.pot @@ -0,0 +1,22 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Plugin description. +#: SpotifyPlugin.php:84 +msgid "Create pretty Spotify URLs." +msgstr "" From 89aebb4ef050700623dcf00829097c3875c1929f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 18 Jun 2011 18:14:28 +0200 Subject: [PATCH 04/31] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 611 +- locale/bg/LC_MESSAGES/statusnet.po | 620 +- locale/br/LC_MESSAGES/statusnet.po | 615 +- locale/ca/LC_MESSAGES/statusnet.po | 640 +- locale/cs/LC_MESSAGES/statusnet.po | 649 +- locale/de/LC_MESSAGES/statusnet.po | 645 +- locale/en_GB/LC_MESSAGES/statusnet.po | 624 +- locale/eo/LC_MESSAGES/statusnet.po | 641 +- locale/es/LC_MESSAGES/statusnet.po | 642 +- locale/eu/LC_MESSAGES/statusnet.po | 9652 +++++++++++++++++ locale/fa/LC_MESSAGES/statusnet.po | 647 +- locale/fi/LC_MESSAGES/statusnet.po | 1101 +- locale/fr/LC_MESSAGES/statusnet.po | 644 +- locale/fur/LC_MESSAGES/statusnet.po | 568 +- locale/gl/LC_MESSAGES/statusnet.po | 810 +- locale/he/LC_MESSAGES/statusnet.po | 8562 ++++++++------- locale/hsb/LC_MESSAGES/statusnet.po | 616 +- locale/hu/LC_MESSAGES/statusnet.po | 612 +- locale/ia/LC_MESSAGES/statusnet.po | 648 +- locale/it/LC_MESSAGES/statusnet.po | 659 +- locale/ja/LC_MESSAGES/statusnet.po | 645 +- locale/ka/LC_MESSAGES/statusnet.po | 644 +- locale/ko/LC_MESSAGES/statusnet.po | 623 +- locale/mk/LC_MESSAGES/statusnet.po | 647 +- locale/ml/LC_MESSAGES/statusnet.po | 600 +- locale/nb/LC_MESSAGES/statusnet.po | 653 +- locale/nl/LC_MESSAGES/statusnet.po | 636 +- locale/pl/LC_MESSAGES/statusnet.po | 636 +- locale/pt/LC_MESSAGES/statusnet.po | 639 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 642 +- locale/ru/LC_MESSAGES/statusnet.po | 632 +- locale/sr-ec/LC_MESSAGES/statusnet.po | 545 +- locale/statusnet.pot | 843 +- locale/sv/LC_MESSAGES/statusnet.po | 643 +- locale/te/LC_MESSAGES/statusnet.po | 612 +- locale/tl/LC_MESSAGES/statusnet.po | 654 +- locale/uk/LC_MESSAGES/statusnet.po | 646 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 617 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 8 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 30 + plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 8 +- .../locale/de/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 8 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 8 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 8 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 8 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 8 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 8 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 8 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 9 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 8 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 8 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 45 + plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 45 + plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 8 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 8 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 8 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 8 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 26 + .../locale/nl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 8 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 8 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 8 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 8 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 8 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 8 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 8 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 8 +- .../locale/de/LC_MESSAGES/Blacklist.po | 8 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 8 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 8 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 8 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 8 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 8 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 8 +- .../locale/de/LC_MESSAGES/Bookmark.po | 8 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 8 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 8 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 8 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 8 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 8 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 8 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 8 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 8 +- .../locale/br/LC_MESSAGES/CacheLog.po | 8 +- .../locale/de/LC_MESSAGES/CacheLog.po | 8 +- .../locale/es/LC_MESSAGES/CacheLog.po | 8 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 8 +- .../locale/he/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 8 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 8 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 8 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 8 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 8 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 8 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 8 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 8 +- .../br/LC_MESSAGES/CasAuthentication.po | 8 +- .../de/LC_MESSAGES/CasAuthentication.po | 8 +- .../es/LC_MESSAGES/CasAuthentication.po | 8 +- .../fr/LC_MESSAGES/CasAuthentication.po | 8 +- .../hu/LC_MESSAGES/CasAuthentication.po | 8 +- .../ia/LC_MESSAGES/CasAuthentication.po | 8 +- .../mk/LC_MESSAGES/CasAuthentication.po | 8 +- .../nl/LC_MESSAGES/CasAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 8 +- .../ru/LC_MESSAGES/CasAuthentication.po | 8 +- .../tl/LC_MESSAGES/CasAuthentication.po | 8 +- .../uk/LC_MESSAGES/CasAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 8 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 8 +- .../de/LC_MESSAGES/ClientSideShorten.po | 8 +- .../es/LC_MESSAGES/ClientSideShorten.po | 8 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 8 +- .../he/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 8 +- .../id/LC_MESSAGES/ClientSideShorten.po | 8 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 8 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 8 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 8 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 8 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 8 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 8 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 8 +- .../locale/DirectionDetector.pot | 2 +- .../LC_MESSAGES/DirectionDetector.po | 8 +- .../br/LC_MESSAGES/DirectionDetector.po | 8 +- .../de/LC_MESSAGES/DirectionDetector.po | 8 +- .../es/LC_MESSAGES/DirectionDetector.po | 8 +- .../fi/LC_MESSAGES/DirectionDetector.po | 8 +- .../fr/LC_MESSAGES/DirectionDetector.po | 8 +- .../he/LC_MESSAGES/DirectionDetector.po | 8 +- .../ia/LC_MESSAGES/DirectionDetector.po | 8 +- .../id/LC_MESSAGES/DirectionDetector.po | 8 +- .../ja/LC_MESSAGES/DirectionDetector.po | 8 +- .../lb/LC_MESSAGES/DirectionDetector.po | 8 +- .../mk/LC_MESSAGES/DirectionDetector.po | 8 +- .../nb/LC_MESSAGES/DirectionDetector.po | 8 +- .../nl/LC_MESSAGES/DirectionDetector.po | 8 +- .../pt/LC_MESSAGES/DirectionDetector.po | 8 +- .../ru/LC_MESSAGES/DirectionDetector.po | 8 +- .../tl/LC_MESSAGES/DirectionDetector.po | 8 +- .../uk/LC_MESSAGES/DirectionDetector.po | 8 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 8 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 8 +- .../locale/ca/LC_MESSAGES/Directory.po | 8 +- .../locale/de/LC_MESSAGES/Directory.po | 8 +- .../locale/fi/LC_MESSAGES/Directory.po | 8 +- .../locale/fr/LC_MESSAGES/Directory.po | 8 +- .../locale/ia/LC_MESSAGES/Directory.po | 16 +- .../locale/mk/LC_MESSAGES/Directory.po | 26 +- .../locale/nl/LC_MESSAGES/Directory.po | 12 +- .../locale/sv/LC_MESSAGES/Directory.po | 8 +- .../locale/tl/LC_MESSAGES/Directory.po | 30 +- .../locale/uk/LC_MESSAGES/Directory.po | 16 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 8 +- .../locale/br/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 8 +- .../locale/de/LC_MESSAGES/DiskCache.po | 8 +- .../locale/es/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 8 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 8 +- .../locale/he/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 8 +- .../locale/id/LC_MESSAGES/DiskCache.po | 8 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 8 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 8 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 8 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 8 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 8 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 8 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 8 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 8 +- .../locale/DomainStatusNetwork.pot | 4 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 28 + .../fr/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 8 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 31 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 33 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 31 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 8 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 8 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 8 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 8 +- .../br/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 8 +- .../de/LC_MESSAGES/EmailAuthentication.po | 8 +- .../es/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 8 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 8 +- .../he/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 8 +- .../id/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 8 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 8 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 8 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 8 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 8 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 8 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 8 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 8 +- .../locale/EmailRegistration.pot | 16 +- .../ar/LC_MESSAGES/EmailRegistration.po | 20 +- .../ca/LC_MESSAGES/EmailRegistration.po | 20 +- .../de/LC_MESSAGES/EmailRegistration.po | 22 +- .../fr/LC_MESSAGES/EmailRegistration.po | 20 +- .../ia/LC_MESSAGES/EmailRegistration.po | 33 +- .../mk/LC_MESSAGES/EmailRegistration.po | 22 +- .../nl/LC_MESSAGES/EmailRegistration.po | 22 +- .../sv/LC_MESSAGES/EmailRegistration.po | 20 +- .../tl/LC_MESSAGES/EmailRegistration.po | 33 +- .../uk/LC_MESSAGES/EmailRegistration.po | 31 +- plugins/EmailSummary/locale/EmailSummary.pot | 10 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 8 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 8 +- plugins/Event/locale/Event.pot | 2 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/hu/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 8 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 8 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../FacebookBridge/locale/FacebookBridge.pot | 8 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 8 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 8 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 8 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 8 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 8 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 8 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 8 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 8 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/de/LC_MESSAGES/Geonames.po | 8 +- .../locale/fi/LC_MESSAGES/Geonames.po | 8 +- .../locale/fr/LC_MESSAGES/Geonames.po | 8 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/sv/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 30 + .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 8 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 8 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 8 +- .../locale/de/LC_MESSAGES/Gravatar.po | 8 +- .../locale/es/LC_MESSAGES/Gravatar.po | 8 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 8 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 8 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 8 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 8 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 8 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 8 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ca/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 8 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 8 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 8 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 8 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 8 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 8 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 8 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 8 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 8 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 8 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 8 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 8 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 8 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 8 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 8 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 8 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 8 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 8 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 8 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 8 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 8 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 8 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 8 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 8 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 8 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ca/LC_MESSAGES/Linkback.po | 8 +- .../locale/de/LC_MESSAGES/Linkback.po | 8 +- .../locale/es/LC_MESSAGES/Linkback.po | 8 +- .../locale/fi/LC_MESSAGES/Linkback.po | 8 +- .../locale/fr/LC_MESSAGES/Linkback.po | 8 +- .../locale/he/LC_MESSAGES/Linkback.po | 8 +- .../locale/ia/LC_MESSAGES/Linkback.po | 8 +- .../locale/id/LC_MESSAGES/Linkback.po | 8 +- .../locale/mk/LC_MESSAGES/Linkback.po | 8 +- .../locale/nb/LC_MESSAGES/Linkback.po | 8 +- .../locale/nl/LC_MESSAGES/Linkback.po | 8 +- .../locale/pt/LC_MESSAGES/Linkback.po | 8 +- .../locale/ru/LC_MESSAGES/Linkback.po | 8 +- .../locale/tl/LC_MESSAGES/Linkback.po | 8 +- .../locale/uk/LC_MESSAGES/Linkback.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 8 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 8 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 8 +- .../locale/he/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 8 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 8 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 8 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 8 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 8 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 8 +- .../locale/es/LC_MESSAGES/Memcache.po | 8 +- .../locale/fi/LC_MESSAGES/Memcache.po | 8 +- .../locale/fr/LC_MESSAGES/Memcache.po | 8 +- .../locale/he/LC_MESSAGES/Memcache.po | 8 +- .../locale/ia/LC_MESSAGES/Memcache.po | 8 +- .../locale/mk/LC_MESSAGES/Memcache.po | 8 +- .../locale/nb/LC_MESSAGES/Memcache.po | 8 +- .../locale/nl/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt/LC_MESSAGES/Memcache.po | 8 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 8 +- .../locale/ru/LC_MESSAGES/Memcache.po | 8 +- .../locale/tl/LC_MESSAGES/Memcache.po | 8 +- .../locale/uk/LC_MESSAGES/Memcache.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 8 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 8 +- .../locale/es/LC_MESSAGES/Memcached.po | 8 +- .../locale/fi/LC_MESSAGES/Memcached.po | 8 +- .../locale/fr/LC_MESSAGES/Memcached.po | 8 +- .../locale/he/LC_MESSAGES/Memcached.po | 8 +- .../locale/ia/LC_MESSAGES/Memcached.po | 8 +- .../locale/id/LC_MESSAGES/Memcached.po | 8 +- .../locale/ja/LC_MESSAGES/Memcached.po | 8 +- .../locale/mk/LC_MESSAGES/Memcached.po | 8 +- .../locale/nb/LC_MESSAGES/Memcached.po | 8 +- .../locale/nl/LC_MESSAGES/Memcached.po | 8 +- .../locale/pt/LC_MESSAGES/Memcached.po | 8 +- .../locale/ru/LC_MESSAGES/Memcached.po | 8 +- .../locale/tl/LC_MESSAGES/Memcached.po | 8 +- .../locale/uk/LC_MESSAGES/Memcached.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 8 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 8 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 8 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 8 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 8 +- .../MobileProfile/locale/MobileProfile.pot | 8 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 8 +- .../locale/es/LC_MESSAGES/ModHelper.po | 8 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 8 +- .../locale/he/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 8 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 8 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 8 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 8 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 8 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 8 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 8 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 8 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 8 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 8 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 8 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 8 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 8 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 8 +- plugins/OStatus/locale/OStatus.pot | 5 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 10 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 9 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 12 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 10 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 8 +- plugins/OpenID/locale/OpenID.pot | 72 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/ko/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 38 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/tl/LC_MESSAGES/OpenID.po | 36 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 36 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 8 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 8 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 8 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 8 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 8 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 8 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 8 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 8 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 8 +- .../locale/es/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 8 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 8 +- .../locale/he/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 8 +- .../locale/id/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 8 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 8 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 8 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 8 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 8 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 8 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 32 + .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 8 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 8 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 10 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 8 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 41 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 12 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 12 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 53 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 47 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 17 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 17 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 17 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 22 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 17 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 8 +- .../locale/ar/LC_MESSAGES/Realtime.po | 8 +- .../locale/br/LC_MESSAGES/Realtime.po | 8 +- .../locale/ca/LC_MESSAGES/Realtime.po | 8 +- .../locale/de/LC_MESSAGES/Realtime.po | 8 +- .../locale/fr/LC_MESSAGES/Realtime.po | 8 +- .../locale/ia/LC_MESSAGES/Realtime.po | 8 +- .../locale/lv/LC_MESSAGES/Realtime.po | 8 +- .../locale/mk/LC_MESSAGES/Realtime.po | 8 +- .../locale/ne/LC_MESSAGES/Realtime.po | 8 +- .../locale/nl/LC_MESSAGES/Realtime.po | 8 +- .../locale/sv/LC_MESSAGES/Realtime.po | 8 +- .../locale/tl/LC_MESSAGES/Realtime.po | 8 +- .../locale/tr/LC_MESSAGES/Realtime.po | 8 +- .../locale/uk/LC_MESSAGES/Realtime.po | 8 +- plugins/Recaptcha/locale/Recaptcha.pot | 9 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 9 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 8 +- .../locale/RequireValidatedEmail.pot | 2 +- .../de/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 8 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 13 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 11 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 11 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 15 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 11 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- .../ReverseUsernameAuthentication.po | 8 +- plugins/SQLProfile/locale/SQLProfile.pot | 5 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 9 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 9 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 8 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 8 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 8 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 8 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 8 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 8 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 8 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 8 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 69 + .../Sample/locale/ar/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 8 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 8 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/de/LC_MESSAGES/SearchSub.po | 11 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 11 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 23 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 23 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 23 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 23 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 23 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 8 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 10 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 10 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 13 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 8 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 8 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 8 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 8 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 8 +- .../locale/StrictTransportSecurity.pot | 5 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 9 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 9 +- plugins/SubMirror/locale/SubMirror.pot | 89 +- .../locale/de/LC_MESSAGES/SubMirror.po | 54 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 54 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 54 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 54 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 54 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 54 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 54 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 8 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 8 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 8 +- .../locale/de/LC_MESSAGES/TabFocus.po | 8 +- .../locale/es/LC_MESSAGES/TabFocus.po | 8 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 8 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/he/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 8 +- .../locale/id/LC_MESSAGES/TabFocus.po | 8 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 8 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 8 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 8 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 8 +- plugins/TagSub/locale/TagSub.pot | 37 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 29 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/ms/LC_MESSAGES/TagSub.po | 31 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 31 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 33 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 33 +- plugins/TightUrl/locale/TightUrl.pot | 10 +- .../locale/de/LC_MESSAGES/TightUrl.po | 13 +- .../locale/es/LC_MESSAGES/TightUrl.po | 13 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 13 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 13 +- .../locale/he/LC_MESSAGES/TightUrl.po | 13 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 13 +- .../locale/id/LC_MESSAGES/TightUrl.po | 13 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 13 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 13 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 13 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 13 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 13 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 13 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 13 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 13 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 13 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 13 +- plugins/TinyMCE/locale/TinyMCE.pot | 3 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 9 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 9 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 9 +- .../TwitterBridge/locale/TwitterBridge.pot | 343 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 197 +- .../locale/br/LC_MESSAGES/TwitterBridge.po | 205 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/fa/LC_MESSAGES/TwitterBridge.po | 209 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 195 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 217 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 215 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 216 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 216 +- plugins/UserFlag/locale/UserFlag.pot | 24 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 18 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 22 +- .../locale/de/LC_MESSAGES/UserFlag.po | 22 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 22 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 22 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 22 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 22 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 22 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 22 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 22 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 22 +- plugins/UserLimit/locale/UserLimit.pot | 20 +- .../locale/br/LC_MESSAGES/UserLimit.po | 21 +- .../locale/de/LC_MESSAGES/UserLimit.po | 24 +- .../locale/es/LC_MESSAGES/UserLimit.po | 21 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 20 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 21 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 25 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 21 +- .../locale/he/LC_MESSAGES/UserLimit.po | 21 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 25 +- .../locale/id/LC_MESSAGES/UserLimit.po | 20 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 21 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 22 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 25 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 22 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 21 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 24 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 21 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 21 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 26 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 24 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 20 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 28 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 22 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/fr/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 19 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 19 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 23 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 21 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 21 +- plugins/XCache/locale/XCache.pot | 5 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 9 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 9 +- plugins/Xmpp/locale/Xmpp.pot | 74 +- plugins/Xmpp/locale/ca/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/fr/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po | 63 +- plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po | 63 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 8 +- .../locale/de/LC_MESSAGES/YammerImport.po | 8 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 8 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ms/LC_MESSAGES/YammerImport.po | 8 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ru/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 8 +- 1385 files changed, 35508 insertions(+), 23661 deletions(-) create mode 100644 locale/eu/LC_MESSAGES/statusnet.po create mode 100644 plugins/APC/locale/ms/LC_MESSAGES/APC.po create mode 100644 plugins/Aim/locale/fi/LC_MESSAGES/Aim.po create mode 100644 plugins/Aim/locale/ms/LC_MESSAGES/Aim.po create mode 100644 plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po create mode 100644 plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po create mode 100644 plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po create mode 100644 plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po create mode 100644 plugins/Sample/locale/af/LC_MESSAGES/Sample.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 5114ca6072..a27b0eaf9b 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:59+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "Ø­ÙØ¸ إعدادت الوصول" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "Ø­ÙØ¸ إعدادت الوصول" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -195,7 +193,6 @@ msgstr "لا ØµÙØ­Ø© كهذه." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -359,7 +356,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "تعذّر تحديث المستخدم." @@ -374,7 +370,6 @@ msgstr "لم يمكن Ø­ÙØ¸ الملÙ." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -389,24 +384,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "تعذّر Ø­ÙØ¸ إعدادات تصميمك." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "تعذّر تحديث تصميمك." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -500,6 +477,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "لا يمكن أن ترسل رسائل مباشرة إلى مستخدمين ليسوا أصدقاءك." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "لا ترسل رسالة Ù„Ù†ÙØ³ÙƒØ› حسبك أن تقولها ÙÙŠ سرك." @@ -736,7 +715,6 @@ msgstr "مجموعات %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "يجب أن تكون إداريا لتعدل المجموعة." @@ -845,7 +823,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -854,7 +831,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "" @@ -1209,7 +1185,6 @@ msgstr "يجب أن تلج لتغادر مجموعة." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1293,6 +1268,7 @@ msgid "Join request canceled." msgstr "ألغي طلب الانضمام." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "" @@ -1442,7 +1418,6 @@ msgstr "لا مرÙÙ‚ كهذا." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1938,148 +1913,6 @@ msgstr "لا تحذ٠هذا المستخدم." msgid "Delete this user." msgstr "احذ٠هذا المستخدم." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "التصميم" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "إعدادات تصميم موقع ستاسنت هذا" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "مسار شعار غير صالح." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "مسار شعار SSL غير صالح." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "السمة غير Ù…ØªÙˆÙØ±Ø©: %s" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "غيّر الشعار" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "شعار الموقع" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "شعار SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "غيّر السمة" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "سمة الموقع" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "سمة الموقع." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "سمة مخصصة" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "يمكنك Ø±ÙØ¹ سمة ستاتس نت على هيأة أرشي٠.ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "تغيير صورة الخلÙية" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "الخلÙية" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "بإمكانك Ø±ÙØ¹ صورة خلÙية للموقع. أقصى حجم للمل٠هو %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "مكّن" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "عطّل" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "مكّن صورة الخلÙية أو عطّلها." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "كرّر صورة الخلÙية" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "غيّر الألوان" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "المحتوى" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "الشريط الجانبي" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "النص" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "وصلات" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "متقدم" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS مخصصة" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "استخدم المبدئية" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "استعد التصاميم المبدئية." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "ارجع إلى المبدئيات." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Ø§Ø­ÙØ¸ التصميم." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "هذا الشعار ليس Ù…ÙØ¶Ù„ًا!" @@ -2677,30 +2510,6 @@ msgstr "خطأ ÙÙŠ قاعدة البيانات أثناء منع المستخد msgid "No ID." msgstr "لا هوية." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "يجب أن تلج Ù„ØªÙØ¹Ø¯Ù‘Ù„ المجموعات." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "تصميم المجموعة" - -#. TRANS: Instructions for group design settings page. -#, fuzzy -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "!تعذّر تحديث إعدادات تصميمك." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Ø­ÙÙØ¸Øª ØªÙØ¶ÙŠÙ„ات التصميم." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3358,12 +3167,6 @@ msgstr "لا محتوى!" msgid "No recipient specified." msgstr "لا مستلم Ø­ÙØ¯Ù‘د." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "لا ترسل رسالة إلى Ù†ÙØ³ÙƒØŒ قلها Ù„Ù†ÙØ³Ùƒ ÙÙŠ سرك بدلًا من ذلك." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Ø£ÙØ±Ø³Ù„ت الرسالة" @@ -3637,7 +3440,7 @@ msgid "Confirm" msgstr "أكّد" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Ù†ÙØ³ كلمة السر أعلاه." @@ -3814,30 +3617,6 @@ msgstr "دليل Ø§Ù„Ø£ÙØªØ§Ø±Ø§Øª" msgid "Directory where avatars are located." msgstr "الدليل الذي Ùيه Ø§Ù„Ø£ÙØªØ§Ø±Ø§Øª." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "الخلÙيات" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "خادوم الخلÙيات." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "مسار الشبكة للصور الخلÙية." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "الدليل الذي Ùيه الخلÙيات." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "المرÙقات" @@ -4599,7 +4378,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 أحر٠أو أكثر، لا تنسها!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "أعد الضبط" @@ -4608,18 +4386,6 @@ msgstr "أعد الضبط" msgid "Enter a nickname or email address." msgstr "أدخل اسمًا مستعارًا أو عنوان بريد إلكتروني." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "لا مستخدم لديه عنوان البريد الإلكتروني أو اسم المستخدم هذا." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "لا يوجد عنوان بريد إلكتروني Ù…ÙØ³Ø¬Ù‘Ù„ لهذا المستخدم." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "خطأ أثناء Ø­ÙØ¸ تأكيد العنوان." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5537,6 +5303,14 @@ msgstr "يجب ألا يكون طول اسم الموقع ØµÙØ±Ù‹Ø§." msgid "You must have a valid contact email address." msgstr "يجب أن تملك عنوان بريد إلكتروني صحيح." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "مسار شعار غير صالح." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "مسار شعار SSL غير صالح." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5609,7 +5383,9 @@ msgid "Default language" msgstr "اللغة المبدئية" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "لغة الموقع إذا لم ÙŠØªÙˆÙØ± اكتشا٠اللغة آليًا من إعدادات Ø§Ù„Ù…ØªØµÙØ­" #. TRANS: Fieldset legend on site settings panel. @@ -5637,8 +5413,22 @@ msgstr "" "Ø§Ù„ÙØªØ±Ø© (بالثواني) التي ينبغي أن ينتظرها المستخدمون قبل أن ينشروا الرسالة " "Ù†ÙØ³Ù‡Ø§ مجددًا" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "الشعار" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "شعار الموقع" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "شعار SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Ø§Ø­ÙØ¸ إعدادت الموقع" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6397,38 +6187,6 @@ msgstr "تعذر قراءة رابط Ø§Ù„Ø£ÙØªØ§Ø± ‘%s’." msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "تصميم المل٠الشخصي" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "استمتع بالنقانق!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "إعدادات التصميم" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "اعرض تصاميم المل٠الشخصي" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "أظهر أو أخÙ٠تصاميم Ø§Ù„Ù…Ù„ÙØ§Øª الشخصية." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "مل٠الخلÙية" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6878,6 +6636,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "لا مستخدم لديه عنوان البريد الإلكتروني أو اسم المستخدم هذا." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "لا يوجد عنوان بريد إلكتروني Ù…ÙØ³Ø¬Ù‘Ù„ لهذا المستخدم." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "خطأ أثناء Ø­ÙØ¸ تأكيد العنوان." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." @@ -7147,11 +6917,6 @@ msgstr "الأمر لم ÙŠÙØ¬Ù‡Ø²Ù‘ بعد." msgid "saveSettings() not implemented." msgstr "الأمر لم ÙŠÙØ¬Ù‡Ø²Ù‘ بعد." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "تعذّر حذ٠إعدادات التصميم." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7183,17 +6948,6 @@ msgctxt "MENU" msgid "Site" msgstr "الموقع" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ضبط التصميم" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "التصميم" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ضبط المستخدم" @@ -8083,42 +7837,6 @@ msgstr "احذÙ" msgid "Delete this user" msgstr "احذ٠هذا المستخدم" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "غيّر التصميم" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "تغيير الألوان" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "استخدم المبدئيات" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Ø§Ø±ÙØ¹ ملÙًا" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "تستطيع Ø±ÙØ¹ صورتك الشخصية. أقصى حجم للمل٠هو 2 Ù….ب." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "مكّن" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "عطّل" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "استعيدت مبدئيات التصميم." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8344,13 +8062,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "أض٠شعارا Ù„%s أو عدله" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "أض٠تصميما Ù„%s أو عدله" - #. TRANS: Group actions header (h2). Text hidden by default. #, fuzzy msgid "Group actions" @@ -9697,10 +9408,6 @@ msgstr "البريد الإلكتروني" msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "صمّم ملÙÙƒ الشخصي" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10156,3 +9863,229 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "تعذر قراءة رابط Ø§Ù„Ø£ÙØªØ§Ø± ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "خطأ أثناء تحديث المل٠الشخصي البعيد." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "استخدم هذا النموذج لتعدل تطبيقك." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "لم يمكن Ø­ÙØ¸ الملÙ." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "تعذّر إيجاد المستخدم الهدÙ." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "ليس عنوان بريد صالح." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "لم يمكن Ø­ÙØ¸ الملÙ." + +#~ msgid "Unable to save your design settings." +#~ msgstr "تعذّر Ø­ÙØ¸ إعدادات تصميمك." + +#~ msgid "Could not update your design." +#~ msgstr "تعذّر تحديث تصميمك." + +#~ msgid "Design" +#~ msgstr "التصميم" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "إعدادات تصميم موقع ستاسنت هذا" + +#~ msgid "Theme not available: %s." +#~ msgstr "السمة غير Ù…ØªÙˆÙØ±Ø©: %s" + +#~ msgid "Change logo" +#~ msgstr "غيّر الشعار" + +#~ msgid "Change theme" +#~ msgstr "غيّر السمة" + +#~ msgid "Site theme" +#~ msgstr "سمة الموقع" + +#~ msgid "Theme for the site." +#~ msgstr "سمة الموقع." + +#~ msgid "Custom theme" +#~ msgstr "سمة مخصصة" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "يمكنك Ø±ÙØ¹ سمة ستاتس نت على هيأة أرشي٠.ZIP." + +#~ msgid "Change background image" +#~ msgstr "تغيير صورة الخلÙية" + +#~ msgid "Background" +#~ msgstr "الخلÙية" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "بإمكانك Ø±ÙØ¹ صورة خلÙية للموقع. أقصى حجم للمل٠هو %1$s." + +#~ msgid "On" +#~ msgstr "مكّن" + +#~ msgid "Off" +#~ msgstr "عطّل" + +#~ msgid "Turn background image on or off." +#~ msgstr "مكّن صورة الخلÙية أو عطّلها." + +#~ msgid "Tile background image" +#~ msgstr "كرّر صورة الخلÙية" + +#~ msgid "Change colors" +#~ msgstr "غيّر الألوان" + +#~ msgid "Content" +#~ msgstr "المحتوى" + +#~ msgid "Sidebar" +#~ msgstr "الشريط الجانبي" + +#~ msgid "Text" +#~ msgstr "النص" + +#~ msgid "Links" +#~ msgstr "وصلات" + +#~ msgid "Advanced" +#~ msgstr "متقدم" + +#~ msgid "Custom CSS" +#~ msgstr "CSS مخصصة" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "استخدم المبدئية" + +#~ msgid "Restore default designs." +#~ msgstr "استعد التصاميم المبدئية." + +#~ msgid "Reset back to default." +#~ msgstr "ارجع إلى المبدئيات." + +#~ msgid "Save design." +#~ msgstr "Ø§Ø­ÙØ¸ التصميم." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "يجب أن تلج Ù„ØªÙØ¹Ø¯Ù‘Ù„ المجموعات." + +#~ msgid "Group design" +#~ msgstr "تصميم المجموعة" + +#, fuzzy +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." + +#~ msgid "Unable to update your design settings." +#~ msgstr "!تعذّر تحديث إعدادات تصميمك." + +#~ msgid "Design preferences saved." +#~ msgstr "Ø­ÙÙØ¸Øª ØªÙØ¶ÙŠÙ„ات التصميم." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "لا ترسل رسالة إلى Ù†ÙØ³ÙƒØŒ قلها Ù„Ù†ÙØ³Ùƒ ÙÙŠ سرك بدلًا من ذلك." + +#~ msgid "Backgrounds" +#~ msgstr "الخلÙيات" + +#~ msgid "Server for backgrounds." +#~ msgstr "خادوم الخلÙيات." + +#~ msgid "Web path to backgrounds." +#~ msgstr "مسار الشبكة للصور الخلÙية." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "الدليل الذي Ùيه الخلÙيات." + +#~ msgid "Profile design" +#~ msgstr "تصميم المل٠الشخصي" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "استمتع بالنقانق!" + +#~ msgid "Design settings" +#~ msgstr "إعدادات التصميم" + +#~ msgid "View profile designs" +#~ msgstr "اعرض تصاميم المل٠الشخصي" + +#~ msgid "Show or hide profile designs." +#~ msgstr "أظهر أو أخÙ٠تصاميم Ø§Ù„Ù…Ù„ÙØ§Øª الشخصية." + +#~ msgid "Background file" +#~ msgstr "مل٠الخلÙية" + +#~ msgid "Unable to delete design setting." +#~ msgstr "تعذّر حذ٠إعدادات التصميم." + +#~ msgid "Design configuration" +#~ msgstr "ضبط التصميم" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "التصميم" + +#~ msgid "Change design" +#~ msgstr "غيّر التصميم" + +#~ msgid "Change colours" +#~ msgstr "تغيير الألوان" + +#~ msgid "Use defaults" +#~ msgstr "استخدم المبدئيات" + +#~ msgid "Upload file" +#~ msgstr "Ø§Ø±ÙØ¹ ملÙًا" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "تستطيع Ø±ÙØ¹ صورتك الشخصية. أقصى حجم للمل٠هو 2 Ù….ب." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "مكّن" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "عطّل" + +#~ msgid "Design defaults restored." +#~ msgstr "استعيدت مبدئيات التصميم." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "أض٠تصميما Ù„%s أو عدله" + +#~ msgid "Design your profile" +#~ msgstr "صمّم ملÙÙƒ الشخصي" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 327f448142..7b3196068f 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:01+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -102,7 +102,6 @@ msgid "Save access settings" msgstr "Запазване наÑтройките за доÑтъп" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -118,7 +117,6 @@ msgstr "Запазване наÑтройките за доÑтъп" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -193,7 +191,6 @@ msgstr "ÐÑма такака Ñтраница." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -352,7 +349,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Грешка при обновÑване на потребителÑ." @@ -367,7 +363,6 @@ msgstr "Грешка при запазване на профила." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -378,26 +373,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#, fuzzy -msgid "Unable to save your design settings." -msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#, fuzzy -msgid "Could not update your design." -msgstr "Грешка при обновÑване на потребителÑ." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -490,6 +465,8 @@ msgstr "" "приÑтели." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -725,7 +702,6 @@ msgstr "групи в %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "За да редактирате група, трÑбва да Ñте влезли." @@ -848,7 +824,6 @@ msgstr "Грешка в базата от данни — отговор при #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -857,7 +832,6 @@ msgstr "Грешка в базата от данни — отговор при #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Ðеочаквано изпращане на форма." @@ -1211,7 +1185,6 @@ msgstr "За напуÑнете група, трÑбва да Ñте влезл #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1298,6 +1271,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "СпиÑък Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ð¸Ñ‚Ðµ в тази група." @@ -1461,7 +1435,6 @@ msgstr "ÐÑма прикачени файлове." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1968,161 +1941,6 @@ msgstr "Да не Ñе изтрива бележката" msgid "Delete this user." msgstr "Изтриване на този потребител" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Дизайн" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -#, fuzzy -msgid "Invalid logo URL." -msgstr "Ðеправилен размер." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "Ðеправилен размер." - -#. 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. -#, fuzzy, php-format -msgid "Theme not available: %s." -msgstr "Страницата не е доÑтъпна във вида медиÑ, който приемате" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "СмÑна на логото" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Лого на Ñайта" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "Лого на Ñайта" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -#, fuzzy -msgid "Change theme" -msgstr "ПромÑна" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Път до Ñайта" - -#. TRANS: Title for field label for dropdown to choose site theme. -#, fuzzy -msgid "Theme for the site." -msgstr "Излизане от Ñайта" - -#. TRANS: Field label for uploading a cutom theme. -#, fuzzy -msgid "Custom theme" -msgstr "Ðова бележка" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "СмÑна на изображението за фон" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Фон" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Можете да качите лично изображение за фон. МакÑималната големина на файла е " -"2MB." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Вкл." - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Изкл." - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -#, fuzzy -msgid "Turn background image on or off." -msgstr "СмÑна на изображението за фон" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#, fuzzy -msgid "Tile background image" -msgstr "СмÑна на изображението за фон" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "СмÑна на цветовете" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Съдържание" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Страничен панел" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ТекÑÑ‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Лиценз" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Запазване наÑтройките на Ñайта" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Тази бележка не е отбелÑзана като любима!" @@ -2742,31 +2560,6 @@ msgstr "Разблокиране на Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¾Ñ‚ групата msgid "No ID." msgstr "ЛипÑва ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "За да редактирате група, трÑбва да Ñте влезли." - -#. TRANS: Title group design settings page. -#, fuzzy -msgid "Group design" -msgstr "Групи" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ÐаÑтройките на е-поща Ñа запазени." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3448,14 +3241,6 @@ msgstr "ÐÑма Ñъдържание!" msgid "No recipient specified." msgstr "Ðе е указан получател." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ðе може да изпращате ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ Ñебе Ñи. По-добре Ñи го кажете на Ñебе Ñи " -"тихичко." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Съобщението е изпратено" @@ -3736,7 +3521,7 @@ msgid "Confirm" msgstr "Потвърждаване" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3924,31 +3709,6 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° аватара" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Фонове" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Излизане от Ñайта" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. #, fuzzy msgid "Attachments" @@ -4728,7 +4488,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 или повече знака. И не ги забравÑйте!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4738,18 +4497,6 @@ msgstr "ОбновÑване" msgid "Enter a nickname or email address." msgstr "Въведете пÑевдоним или е-поща." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "ÐÑма потребител Ñ Ñ‚Ð°ÐºÐ°Ð²Ð° е-поща или потребителÑко име." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "ÐÑма указана е-поща за този потребител." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Грешка при запазване на потвърждение за адреÑ" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5686,6 +5433,16 @@ msgstr "Името на Ñайта е задължително." msgid "You must have a valid contact email address." msgstr "Ðеправилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща." +#. TRANS: Client error displayed when a logo URL is not valid. +#, fuzzy +msgid "Invalid logo URL." +msgstr "Ðеправилен размер." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "Ðеправилен размер." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5761,7 +5518,8 @@ msgid "Default language" msgstr "Език по подразбиране" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5786,8 +5544,23 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Изход" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Лого на Ñайта" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "Лого на Ñайта" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Запазване наÑтройките на Ñайта" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6569,41 +6342,6 @@ msgstr "Грешка при четене адреÑа на аватара '%s'" msgid "Wrong image type for avatar URL \"%s\"." msgstr "Грешен вид изображение за '%s'" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -#, fuzzy -msgid "Profile design" -msgstr "ÐаÑтройки на профила" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Запазване наÑтройките на Ñайта" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Редактиране на профила" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Фон" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7059,6 +6797,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "ÐÑма потребител Ñ Ñ‚Ð°ÐºÐ°Ð²Ð° е-поща или потребителÑко име." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "ÐÑма указана е-поща за този потребител." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Грешка при запазване на потвърждение за адреÑ" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Грешка при Ñъздаване на групата." @@ -7336,12 +7086,6 @@ msgstr "Командата вÑе още не Ñе поддържа." msgid "saveSettings() not implemented." msgstr "Командата вÑе още не Ñе поддържа." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#, fuzzy -msgid "Unable to delete design setting." -msgstr "Грешка при запиÑване наÑтройките за Twitter" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7373,18 +7117,6 @@ msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ÐаÑтройка на оформлението" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Design" -msgstr "ВерÑиÑ" - #. TRANS: Menu item title in administrator navigation panel. #, fuzzy msgid "User configuration" @@ -8272,47 +8004,6 @@ msgstr "Изтриване" msgid "Delete this user" msgstr "Изтриване на този потребител" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Запазване наÑтройките на Ñайта" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "СмÑна на цветовете" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Качване на файл" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Можете да качите лично изображение за фон. МакÑималната големина на файла е " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "Вкл." - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Изкл." - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8529,13 +8220,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. #, fuzzy msgid "Group actions" @@ -9859,11 +9543,6 @@ msgstr "Е-поща" msgid "Change email handling" msgstr "ПромÑна обработката на пиÑмата" -#. TRANS: Menu item title in settings navigation panel. -#, fuzzy -msgid "Design your profile" -msgstr "ПотребителÑки профил" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10299,3 +9978,206 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Грешка при четене адреÑа на аватара '%s'" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Грешка при обновÑване на отдалечен профил" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Използвайте тази бланка за Ñъздаване на нова група." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Грешка при запазване на профила." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Грешка при обновÑване на потребител Ñ Ð¿Ð¾Ñ‚Ð²ÑŠÑ€Ð´ÐµÐ½ email адреÑ." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Ðеправилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Грешка при запазване на профила." + +#, fuzzy +#~ msgid "Unable to save your design settings." +#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" + +#, fuzzy +#~ msgid "Could not update your design." +#~ msgstr "Грешка при обновÑване на потребителÑ." + +#~ msgid "Design" +#~ msgstr "Дизайн" + +#, fuzzy +#~ msgid "Theme not available: %s." +#~ msgstr "Страницата не е доÑтъпна във вида медиÑ, който приемате" + +#~ msgid "Change logo" +#~ msgstr "СмÑна на логото" + +#, fuzzy +#~ msgid "Change theme" +#~ msgstr "ПромÑна" + +#~ msgid "Site theme" +#~ msgstr "Път до Ñайта" + +#, fuzzy +#~ msgid "Theme for the site." +#~ msgstr "Излизане от Ñайта" + +#, fuzzy +#~ msgid "Custom theme" +#~ msgstr "Ðова бележка" + +#~ msgid "Change background image" +#~ msgstr "СмÑна на изображението за фон" + +#~ msgid "Background" +#~ msgstr "Фон" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Можете да качите лично изображение за фон. МакÑималната големина на файла " +#~ "е 2MB." + +#~ msgid "On" +#~ msgstr "Вкл." + +#~ msgid "Off" +#~ msgstr "Изкл." + +#, fuzzy +#~ msgid "Turn background image on or off." +#~ msgstr "СмÑна на изображението за фон" + +#, fuzzy +#~ msgid "Tile background image" +#~ msgstr "СмÑна на изображението за фон" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "СмÑна на цветовете" + +#~ msgid "Content" +#~ msgstr "Съдържание" + +#~ msgid "Sidebar" +#~ msgstr "Страничен панел" + +#~ msgid "Text" +#~ msgstr "ТекÑÑ‚" + +#~ msgid "Links" +#~ msgstr "Лиценз" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Запазване наÑтройките на Ñайта" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "За да редактирате група, трÑбва да Ñте влезли." + +#, fuzzy +#~ msgid "Group design" +#~ msgstr "Групи" + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" + +#~ msgid "Design preferences saved." +#~ msgstr "ÐаÑтройките на е-поща Ñа запазени." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Ðе може да изпращате ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ Ñебе Ñи. По-добре Ñи го кажете на Ñебе " +#~ "Ñи тихичко." + +#~ msgid "Backgrounds" +#~ msgstr "Фонове" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Излизане от Ñайта" + +#, fuzzy +#~ msgid "Profile design" +#~ msgstr "ÐаÑтройки на профила" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Запазване наÑтройките на Ñайта" + +#~ msgid "View profile designs" +#~ msgstr "Редактиране на профила" + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Фон" + +#, fuzzy +#~ msgid "Unable to delete design setting." +#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" + +#~ msgid "Design configuration" +#~ msgstr "ÐаÑтройка на оформлението" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "ВерÑиÑ" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Запазване наÑтройките на Ñайта" + +#~ msgid "Change colours" +#~ msgstr "СмÑна на цветовете" + +#~ msgid "Upload file" +#~ msgstr "Качване на файл" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Можете да качите лично изображение за фон. МакÑималната големина на файла " +#~ "е 2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Вкл." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Изкл." + +#, fuzzy +#~ msgid "Design your profile" +#~ msgstr "ПотребителÑки профил" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 38f7133aea..025319189a 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -104,7 +104,6 @@ msgid "Save access settings" msgstr "Enrollañ an arventennoù moned" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -120,7 +119,6 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -195,7 +193,6 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -360,7 +357,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Dibosupl hizivaat an implijer." @@ -375,7 +371,6 @@ msgstr "Dibosupl eo enrollañ ar profil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -386,24 +381,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Dibosupl eo hizivaat ho design." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -496,6 +473,8 @@ msgstr "" "mignoned." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -727,7 +706,6 @@ msgstr "strolladoù war %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." @@ -847,7 +825,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -856,7 +833,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Kinnig ar furmskrid dic'hortoz." @@ -1210,7 +1186,6 @@ msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad" #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1296,6 +1271,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Roll an implijerien enrollet er strollad-mañ." @@ -1454,7 +1430,6 @@ msgstr "N'eo ket bet kavet ar restr stag." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1954,153 +1929,6 @@ msgstr "Arabat dilemel an implijer-mañ" msgid "Delete this user." msgstr "Diverkañ an implijer-mañ" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Design" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL fall evit al logo." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Chomlec'h URL fall evit al logo SSL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "N'eus ket eus ar gaoz-se : %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Cheñch al logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo al lec'hienn" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Lakaat un dodenn all" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Dodenn al lec'hienn" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Dodenn evit al lec'hienn." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Dodenn personelaet" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Kemmañ ar skeudenn foñs" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Background" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Gweredekaet" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Diweredekaet" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Adober gant ar skeudenn drekleur" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "Kemmañ al livioù" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Endalc'h" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barenn kostez" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Testenn" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Liammoù" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Araokaet" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personelaet" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Implijout an talvoudoù dre ziouer" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Adlakaat an neuz dre ziouer." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Adlakaat an arventennoù dre ziouer" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Enrollañ an design" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "N'eo ket ar c'hemenn-mañ ur pennroll !" @@ -2703,31 +2531,6 @@ msgstr "Distankañ implijer ar strollad" msgid "No ID." msgstr "ID ebet" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -#, fuzzy -msgid "You must be logged in to edit a group." -msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Design ar strollad" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Enrollet eo bet an arventennoù design." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3402,14 +3205,6 @@ msgstr "Goullo eo !" msgid "No recipient specified." msgstr "N'ho peus ket lakaet a resever." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en ho " -"penn kentoc'h." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Kemennadenn kaset" @@ -3694,7 +3489,7 @@ msgid "Confirm" msgstr "Kadarnaat" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3883,31 +3678,6 @@ msgstr "Restroù an avataroù" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Backgroundoù" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Dodenn evit al lec'hienn." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Pezhioù stag" @@ -4716,7 +4486,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 arouezenn pe muioc'h, ha n'e zisoñjit ket !" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Adderaouekaat" @@ -4725,18 +4494,6 @@ msgstr "Adderaouekaat" msgid "Enter a nickname or email address." msgstr "Lakait ul lesanv pe ur chomlec'h postel." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "N'eus bet kavet implijer ebet gant ar postel-se pe an anv-se." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Chomlec'h postel enrollet ebet evit an implijer-mañ." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Ur fazi 'zo bet pa voe enrollet kod kadarnaat ar postel." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5672,6 +5429,14 @@ msgstr "Ne c'hell ket bezañ goullo anv al lec'hienn." msgid "You must have a valid contact email address." msgstr "N'eo ket ur chomlec'h postel reizh." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL fall evit al logo." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Chomlec'h URL fall evit al logo SSL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5743,7 +5508,8 @@ msgid "Default language" msgstr "Yezh dre ziouer" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5768,8 +5534,22 @@ msgstr "Bevenn a doublennoù" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo al lec'hienn" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Enrollañ arventennoù al lec'hienn" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6548,41 +6328,6 @@ msgstr "Dibosupl eo lenn URL an avatar \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Seurt skeudenn direizh evit URL an avatar \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Design ar profil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Bez plijadur gant da hotdog !" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Enrollañ arventennoù al lec'hienn" - -#. TRANS: Checkbox label on Profile design page. -#, fuzzy -msgid "View profile designs" -msgstr "Design ar profil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Diskouez pe kuzhat designoù ar profil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Background" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7025,6 +6770,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "N'eus bet kavet implijer ebet gant ar postel-se pe an anv-se." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Chomlec'h postel enrollet ebet evit an implijer-mañ." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Ur fazi 'zo bet pa voe enrollet kod kadarnaat ar postel." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Dibosupl eo krouiñ ar strollad." @@ -7294,11 +7051,6 @@ msgstr "N'eo ket bet emplementet showForm()." msgid "saveSettings() not implemented." msgstr "N'eo ket bet emplementet saveSettings()." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Dibosupl eo dilemel an arventennoù krouiñ." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7330,17 +7082,6 @@ msgctxt "MENU" msgid "Site" msgstr "Lec'hienn" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Kefluniadur ar c'hrouiñ" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Design" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Kefluniadur an implijer" @@ -8216,46 +7957,6 @@ msgstr "Diverkañ" msgid "Delete this user" msgstr "Diverkañ an implijer-mañ" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Enrollañ an design" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Kemmañ al livioù" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Implijout an talvoudoù dre ziouer" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Enporzhiañ ar restr" - -#. TRANS: Instructions for form on profile design page. -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Gweredekaet" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Diweredekaet" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#, fuzzy -msgid "Design defaults restored." -msgstr "Enrollet eo bet an arventennoù design." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8468,13 +8169,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Ouzhpennañ pe kemmañ logo ar strollad %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Ouzhpennañ pe kemmañ tres ar strollad %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Obererezh ar strollad" @@ -9772,10 +9466,6 @@ msgstr "Postel" msgid "Change email handling" msgstr "Kemmañ tretadur ar posteloù" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Krouit ho profil" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10193,3 +9883,218 @@ msgstr "XML direizh, mankout a ra ar wrizienn XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Dibosupl eo lenn URL an avatar \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Fazi en ur hizivaat ar profil a-bell." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Dibosupl eo nullañ moned ar poellad : " + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Dibosupl eo enrollañ ar profil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Diposubl eo krouiñ an aliasoù." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "N'eo ket ur chomlec'h postel reizh." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Dibosupl eo enrollañ ar profil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." + +#~ msgid "Could not update your design." +#~ msgstr "Dibosupl eo hizivaat ho design." + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Theme not available: %s." +#~ msgstr "N'eus ket eus ar gaoz-se : %s." + +#~ msgid "Change logo" +#~ msgstr "Cheñch al logo" + +#~ msgid "Change theme" +#~ msgstr "Lakaat un dodenn all" + +#~ msgid "Site theme" +#~ msgstr "Dodenn al lec'hienn" + +#~ msgid "Theme for the site." +#~ msgstr "Dodenn evit al lec'hienn." + +#~ msgid "Custom theme" +#~ msgstr "Dodenn personelaet" + +#~ msgid "Change background image" +#~ msgstr "Kemmañ ar skeudenn foñs" + +#~ msgid "Background" +#~ msgstr "Background" + +#~ msgid "On" +#~ msgstr "Gweredekaet" + +#~ msgid "Off" +#~ msgstr "Diweredekaet" + +#~ msgid "Turn background image on or off." +#~ msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." + +#~ msgid "Tile background image" +#~ msgstr "Adober gant ar skeudenn drekleur" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "Kemmañ al livioù" + +#~ msgid "Content" +#~ msgstr "Endalc'h" + +#~ msgid "Sidebar" +#~ msgstr "Barenn kostez" + +#~ msgid "Text" +#~ msgstr "Testenn" + +#~ msgid "Links" +#~ msgstr "Liammoù" + +#~ msgid "Advanced" +#~ msgstr "Araokaet" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personelaet" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Implijout an talvoudoù dre ziouer" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Adlakaat an neuz dre ziouer." + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Adlakaat an arventennoù dre ziouer" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Enrollañ an design" + +#, fuzzy +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." + +#~ msgid "Group design" +#~ msgstr "Design ar strollad" + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." + +#~ msgid "Design preferences saved." +#~ msgstr "Enrollet eo bet an arventennoù design." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en " +#~ "ho penn kentoc'h." + +#~ msgid "Backgrounds" +#~ msgstr "Backgroundoù" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Dodenn evit al lec'hienn." + +#~ msgid "Profile design" +#~ msgstr "Design ar profil" + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Bez plijadur gant da hotdog !" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Enrollañ arventennoù al lec'hienn" + +#, fuzzy +#~ msgid "View profile designs" +#~ msgstr "Design ar profil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Diskouez pe kuzhat designoù ar profil." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Background" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Dibosupl eo dilemel an arventennoù krouiñ." + +#~ msgid "Design configuration" +#~ msgstr "Kefluniadur ar c'hrouiñ" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Design" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Enrollañ an design" + +#~ msgid "Change colours" +#~ msgstr "Kemmañ al livioù" + +#~ msgid "Use defaults" +#~ msgstr "Implijout an talvoudoù dre ziouer" + +#~ msgid "Upload file" +#~ msgstr "Enporzhiañ ar restr" + +#, fuzzy +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Gweredekaet" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Diweredekaet" + +#, fuzzy +#~ msgid "Design defaults restored." +#~ msgstr "Enrollet eo bet an arventennoù design." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Ouzhpennañ pe kemmañ tres ar strollad %s" + +#~ msgid "Design your profile" +#~ msgstr "Krouit ho profil" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index c276ef012d..0ca587aeca 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -116,7 +116,6 @@ msgid "Save access settings" msgstr "Desa els paràmetres d'accés" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -132,7 +131,6 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -208,7 +206,6 @@ msgstr "No existeix la pàgina." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -376,7 +373,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "No s'ha pogut actualitzar l'usuari." @@ -391,7 +387,6 @@ msgstr "No s'ha pogut desar el perfil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -406,24 +401,6 @@ msgstr[1] "" "El servidor no ha pogut gestionar tantes dades POST (%s bytes) a causa de la " "configuració actual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "No s'han pogut desar els paràmetres de disseny." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "No s'ha pogut actualitzar el vostre disseny." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -515,6 +492,8 @@ msgstr "" "amics." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "No us envieu un missatge a un mateix; simplement comentar-vos-ho." @@ -743,7 +722,6 @@ msgstr "grups sobre %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Heu de ser administrador per editar el grup." @@ -854,7 +832,6 @@ msgstr "Error de la base de dades en inserir l'oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -863,7 +840,6 @@ msgstr "Error de la base de dades en inserir l'oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." @@ -1221,7 +1197,6 @@ msgstr "Heu d'haver iniciat una sessió per deixar un grup." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1308,6 +1283,7 @@ msgid "Join request canceled." msgstr "S'ha cancel·lat la sol·licitud d'unió." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s no és una cua de moderació de les vostres subscripcions." @@ -1459,7 +1435,6 @@ msgstr "No existeix l'adjunció." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1969,149 +1944,6 @@ msgstr "No eliminis l'usuari." msgid "Delete this user." msgstr "Elimina l'usuari." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Disseny" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Paràmetres de disseny d'aquest lloc StatusNet." - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "L'URL del logotip no és vàlid." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "L'URL SSL del logotip no és vàlid." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema no disponible: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Canvia el logotip" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logotip del lloc" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logotip SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Canvia el tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema del lloc" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema del lloc." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Tema personalitzat" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Canvia la imatge de fons" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fons" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Activada" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Desactivada" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Activa o desactiva la imatge de fons." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Posa en mosaic la imatge de fons" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Canvia els colors" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contingut" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra lateral" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Text" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Enllaços" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avançat" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalitzat" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Utilitza els paràmetres per defecte" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Restaura els dissenys per defecte." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Torna a restaurar els paràmetres per defecte." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Desa el disseny." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Aquesta avís no és un preferit!" @@ -2714,31 +2546,6 @@ msgstr "S'ha produït un error en la base de dades en blocar l'usuari del grup." msgid "No ID." msgstr "Sense ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Heu d'iniciar una sessió per editar un grup." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Disseny de grup" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalitzeu l'aspecte del vostre grup amb una imatge de fons i una paleta " -"de colors de la vostra elecció." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "No s'han pogut actualitzar els paràmetres de disseny." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "S'han desat les preferències de disseny." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3403,12 +3210,6 @@ msgstr "Cap contingut!" msgid "No recipient specified." msgstr "No has especificat el destinatari." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "S'ha enviat el missatge" @@ -3694,7 +3495,7 @@ msgid "Confirm" msgstr "Confirma" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Igual que la contrasenya de dalt" @@ -3870,30 +3671,6 @@ msgstr "Directori d'avatars" msgid "Directory where avatars are located." msgstr "Directori on es troben els avatars." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fons" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Servidor de fons." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Camí web de fons." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Servidor de fons a pàgines SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Camí web de fons a pàgines SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Directori on es troben els fons." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Adjuncions" @@ -4689,7 +4466,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 o més caràcters, i no ho oblideu!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Reinicialitza" @@ -4698,18 +4474,6 @@ msgstr "Reinicialitza" msgid "Enter a nickname or email address." msgstr "Escriviu un sobrenom o una adreça de correu electrònic." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "No hi ha cap usuari amb aquesta direcció o usuari." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "No hi ha cap adreça de correu electrònic registrada d'aquest usuari." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "S'ha produït un error en desar la confirmació de l'adreça." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5669,6 +5433,14 @@ msgstr "El nom del lloc ha de tenir una longitud superior a zero." msgid "You must have a valid contact email address." msgstr "Heu de tenir una adreça electrònica de contacte vàlida." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "L'URL del logotip no és vàlid." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "L'URL SSL del logotip no és vàlid." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5739,7 +5511,9 @@ msgid "Default language" msgstr "Llengua per defecte" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Llengua del lloc quan la detecció automàtica des de la configuració del " "navegador no està disponible" @@ -5767,8 +5541,22 @@ msgstr "" "Quant de temps cal que esperin els usuaris (en segons) per enviar el mateix " "de nou." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotip" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logotip del lloc" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logotip SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Desa els paràmetres del lloc" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6533,40 +6321,6 @@ msgstr "No es pot llegir l'URL de l'avatar «%s»." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipus d'imatge incorrecta per a l'URL de l'avatar «%s»." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Disseny del perfil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalitzeu l'aspecte del vostre perfil amb una imatge de fons o una " -"paleta de colors de la vostra elecció." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Gaudiu de l'entrepà!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Paràmetres de disseny" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Visualitza els dissenys de perfil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Mostra o amaga els dissenys de perfil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Fitxer de fons" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7020,6 +6774,18 @@ msgstr "No s'ha definit cap usuari únic per al mode d'usuari únic." msgid "Single-user mode code called when not enabled." msgstr "S'ha cridat el codi del mode d'únic usuari quan no està habilitat." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "No hi ha cap usuari amb aquesta direcció o usuari." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "No hi ha cap adreça de correu electrònic registrada d'aquest usuari." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "S'ha produït un error en desar la confirmació de l'adreça." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "No s'ha pogut crear el grup." @@ -7293,11 +7059,6 @@ msgstr "El showForm() no està implementat." msgid "saveSettings() not implemented." msgstr "El saveSettings() no està implementat." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "No s'ha pogut eliminar el paràmetre de disseny." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7326,17 +7087,6 @@ msgctxt "MENU" msgid "Site" msgstr "Lloc" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuració del disseny" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Disseny" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuració de l'usuari" @@ -8177,44 +7927,6 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina l'usuari" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Canvia el disseny" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Canvia els colors" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Utilitza els paràmetres per defecte" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Puja un fitxer" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Podeu pujar la vostra imatge de fons personal. La mida màxima del fitxer és " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Activada" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Desactivada" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "S'han restaurat els paràmetres de disseny per defecte." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8428,13 +8140,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Afegeix o edita el logotip de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Afegeix o edita el disseny de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Accions del grup" @@ -8547,9 +8252,8 @@ msgid "Invite more colleagues" msgstr "Convida més companys" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Convida més companys" +msgstr "Convida els col·legues" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8574,9 +8278,8 @@ msgid "Send" msgstr "Envia" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invitacions" +msgstr "Envia invitacions." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8647,9 +8350,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s ara està seguint %2$s." +msgstr "%1$s ara està seguint-vos a %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -9779,10 +9482,6 @@ msgstr "Adreça electrònica" msgid "Change email handling" msgstr "Canvieu la gestió del correu" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Dissenyeu el vostre perfil" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10196,3 +9895,242 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "No es pot llegir l'URL de l'avatar «%s»." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "S'ha produït un error en actualitzar el perfil remot." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "No s'han pogut trobar els serveis de %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "No s'ha pogut crear l'etiqueta de perfil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "No es pot trobar un usuari amb el sobrenom %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Adreça de correu electrònic no vàlida." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "No s'ha pogut desar el perfil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "No s'han pogut desar els paràmetres de disseny." + +#~ msgid "Could not update your design." +#~ msgstr "No s'ha pogut actualitzar el vostre disseny." + +#~ msgid "Design" +#~ msgstr "Disseny" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Paràmetres de disseny d'aquest lloc StatusNet." + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema no disponible: %s." + +#~ msgid "Change logo" +#~ msgstr "Canvia el logotip" + +#~ msgid "Change theme" +#~ msgstr "Canvia el tema" + +#~ msgid "Site theme" +#~ msgstr "Tema del lloc" + +#~ msgid "Theme for the site." +#~ msgstr "Tema del lloc." + +#~ msgid "Custom theme" +#~ msgstr "Tema personalitzat" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP." + +#~ msgid "Change background image" +#~ msgstr "Canvia la imatge de fons" + +#~ msgid "Background" +#~ msgstr "Fons" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1" +#~ "$s." + +#~ msgid "On" +#~ msgstr "Activada" + +#~ msgid "Off" +#~ msgstr "Desactivada" + +#~ msgid "Turn background image on or off." +#~ msgstr "Activa o desactiva la imatge de fons." + +#~ msgid "Tile background image" +#~ msgstr "Posa en mosaic la imatge de fons" + +#~ msgid "Change colors" +#~ msgstr "Canvia els colors" + +#~ msgid "Content" +#~ msgstr "Contingut" + +#~ msgid "Sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Links" +#~ msgstr "Enllaços" + +#~ msgid "Advanced" +#~ msgstr "Avançat" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalitzat" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Utilitza els paràmetres per defecte" + +#~ msgid "Restore default designs." +#~ msgstr "Restaura els dissenys per defecte." + +#~ msgid "Reset back to default." +#~ msgstr "Torna a restaurar els paràmetres per defecte." + +#~ msgid "Save design." +#~ msgstr "Desa el disseny." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Heu d'iniciar una sessió per editar un grup." + +#~ msgid "Group design" +#~ msgstr "Disseny de grup" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalitzeu l'aspecte del vostre grup amb una imatge de fons i una " +#~ "paleta de colors de la vostra elecció." + +#~ msgid "Unable to update your design settings." +#~ msgstr "No s'han pogut actualitzar els paràmetres de disseny." + +#~ msgid "Design preferences saved." +#~ msgstr "S'han desat les preferències de disseny." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." + +#~ msgid "Backgrounds" +#~ msgstr "Fons" + +#~ msgid "Server for backgrounds." +#~ msgstr "Servidor de fons." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Camí web de fons." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Servidor de fons a pàgines SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Camí web de fons a pàgines SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Directori on es troben els fons." + +#~ msgid "Profile design" +#~ msgstr "Disseny del perfil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalitzeu l'aspecte del vostre perfil amb una imatge de fons o una " +#~ "paleta de colors de la vostra elecció." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Gaudiu de l'entrepà!" + +#~ msgid "Design settings" +#~ msgstr "Paràmetres de disseny" + +#~ msgid "View profile designs" +#~ msgstr "Visualitza els dissenys de perfil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Mostra o amaga els dissenys de perfil." + +#~ msgid "Background file" +#~ msgstr "Fitxer de fons" + +#~ msgid "Unable to delete design setting." +#~ msgstr "No s'ha pogut eliminar el paràmetre de disseny." + +#~ msgid "Design configuration" +#~ msgstr "Configuració del disseny" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Disseny" + +#~ msgid "Change design" +#~ msgstr "Canvia el disseny" + +#~ msgid "Change colours" +#~ msgstr "Canvia els colors" + +#~ msgid "Use defaults" +#~ msgstr "Utilitza els paràmetres per defecte" + +#~ msgid "Upload file" +#~ msgstr "Puja un fitxer" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Podeu pujar la vostra imatge de fons personal. La mida màxima del fitxer " +#~ "és 2MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Activada" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Desactivada" + +#~ msgid "Design defaults restored." +#~ msgstr "S'han restaurat els paràmetres de disseny per defecte." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Afegeix o edita el disseny de %s" + +#~ msgid "Design your profile" +#~ msgstr "Dissenyeu el vostre perfil" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index d236a4bec3..cf14dfa013 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -104,7 +104,6 @@ msgid "Save access settings" msgstr "uložit nastavení přístupu" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -120,7 +119,6 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -163,8 +161,7 @@ msgstr "Žádná taková nálepka." #. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. #, fuzzy msgid "You cannot list an OMB 0.1 remote profile with this action." -msgstr "" -"Touto akcí se nemůžete se pÅ™ihlásit k odbÄ›ru vzdáleného OMB 0.1 profilu." +msgstr "Touto akcí se nemůžete pÅ™ihlásit k odbÄ›ru vzdáleného OMB 0.1 profilu." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a username. @@ -196,7 +193,6 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -364,7 +360,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "NepodaÅ™ilo se aktualizovat nastavení uživatele" @@ -379,7 +374,6 @@ msgstr "NepodaÅ™ilo se uložit profil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -397,24 +391,6 @@ msgstr[2] "" "Server nebyl schopen zpracovat tolik POST dat (%s bytů) vzhledem k jeho " "aktuální konfiguraci." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Nelze uložit vaÅ¡e nastavení designu." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Nelze uložit design." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -506,6 +482,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Nelze odesílat zprávy uživatelům, kteří nejsou vaÅ¡imi přáteli." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -740,7 +718,6 @@ msgstr "skupiny na %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "K úpravÄ› skupiny musíte být admin." @@ -861,7 +838,6 @@ msgstr "Chyba databáze pÅ™i vkládání uživatele aplikace OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -870,7 +846,6 @@ msgstr "Chyba databáze pÅ™i vkládání uživatele aplikace OAuth." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "NeÄekaný požadavek." @@ -1236,7 +1211,6 @@ msgstr "Musíte být pÅ™ihlášen abyste mohl opustit skupinu." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1322,6 +1296,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Seznam uživatelů v této skupinÄ›." @@ -1487,7 +1462,6 @@ msgstr "Žádná taková příloha." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -2012,156 +1986,6 @@ msgstr "Neodstraňujte toto oznámení" msgid "Delete this user." msgstr "Odstranit tohoto uživatele" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Vzhled" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Neplatná URL loga." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "Neplatná URL loga." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Téma není k dispozici: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Změňte logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo stránek" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "Logo stránek" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "ZmÄ›nit téma" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Téma stránek" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Téma stránek" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Vlastní téma" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "ZmÄ›nit obrázek na pozadí" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Pozadí" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "zap." - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "vyp." - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "ZapnÄ›te nebů vypnÄ›te obrázek na pozadí." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Dlaždicovat obrázek na pozadí" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "ZmÄ›nit barvy" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Obsah" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "BoÄní panel" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Text" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Odkazy" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Rozšířené" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Vlastní CSS" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Použít výchozí" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Obnovit výchozí vzhledy" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Reset zpÄ›t do výchozího" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Uložit vzhled" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Toto oznámení není oblíbeno!" @@ -2771,32 +2595,6 @@ msgstr "Chyba databáze pÅ™i blokování uživatele ze skupiny." msgid "No ID." msgstr "Chybí ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "K úpravÄ› skupiny musíte být pÅ™ihlášen." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Vzhled skupiny" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"PÅ™izpůsobit vzhled skupiny obrázkem na pozadí a barevnou paletou vaÅ¡eho " -"výbÄ›ru." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Nelze uložit vaÅ¡e nastavení designu." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Nastavení vzhledu uloženo." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3485,12 +3283,6 @@ msgstr "Chybí obsah!" msgid "No recipient specified." msgstr "Neuveden příjemce." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Neposílejte si zprávu, potichu si ji pro sebe Å™eknÄ›te." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Zpráva odeslána" @@ -3776,7 +3568,7 @@ msgid "Confirm" msgstr "Potvrdit" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3969,32 +3761,6 @@ msgstr "Adresář avatarů" msgid "Directory where avatars are located." msgstr "Cesta k adresáři locales" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Pozadí" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Téma stránek" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "Cesta k adresáři locales" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Přílohy" @@ -4809,7 +4575,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 a více znaků, a nezapomeňte ho!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4819,18 +4584,6 @@ msgstr "Reset" msgid "Enter a nickname or email address." msgstr "Zadej pÅ™ezdívku nebo emailovou adresu" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Žádný uživatel s touto e-mailovou adresu nebo uživatelským jménem." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Žádný registrovaný email pro tohoto uživatele." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Chyba pÅ™i ukládání potvrzení adresy" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5815,6 +5568,15 @@ msgstr "Název webu musí mít nenulovou délku." msgid "You must have a valid contact email address." msgstr "Musíte mít platnou kontaktní emailovou adresu." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Neplatná URL loga." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "Neplatná URL loga." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5892,7 +5654,9 @@ msgid "Default language" msgstr "Výchozí jazyk" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "Jazyk stránky když není k dispozici autodetekce z nastavení prohlížeÄe" #. TRANS: Fieldset legend on site settings panel. @@ -5918,8 +5682,23 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Jak dlouho uživatel musí Äekat (v sekundách) než může poslat totéž znovu." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Odhlásit se" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo stránek" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "Logo stránek" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Uložit Nastavení webu" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6710,42 +6489,6 @@ msgstr "Nelze naÄíst avatara z URL '%s'" msgid "Wrong image type for avatar URL \"%s\"." msgstr "Å patný typ obrázku na URL '%s'" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Vzhled profilu" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"PÅ™izpůsobit vzhled vaÅ¡eho profilu obrázkem na pozadí a barevnou paletou " -"vaÅ¡eho výbÄ›ru." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Užijte si svůj párek v rohlíku!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Uložit Nastavení webu" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Zobrazit vzhledy profilu" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Zobrazit nebo skrýt vzhledy profilu." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Pozadí" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7211,6 +6954,18 @@ msgstr "Nenastaven uživatel pro jednouživatelský mód" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Žádný uživatel s touto e-mailovou adresu nebo uživatelským jménem." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Žádný registrovaný email pro tohoto uživatele." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Chyba pÅ™i ukládání potvrzení adresy" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Nelze vytvoÅ™it skupinu." @@ -7484,11 +7239,6 @@ msgstr "showForm () není implementována." msgid "saveSettings() not implemented." msgstr "saveSettings () není implementována." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Nelze smazat nastavení vzhledu." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7520,17 +7270,6 @@ msgctxt "MENU" msgid "Site" msgstr "Stránky" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Nastavení vzhledu" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Vzhled" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Akce uživatele" @@ -8407,47 +8146,6 @@ msgstr "Odstranit" msgid "Delete this user" msgstr "Odstranit tohoto uživatele" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Uložit vzhled" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "ZmÄ›nit barvy" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Použít výchozí" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Nahrát soubor" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Můžete nahrát váš osobní obrázek na pozadí. Maximální velikost souboru je 2 " -"MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "zap." - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "vyp." - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Obnoveno výchozí nastavení vzhledu." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8667,13 +8365,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Akce skupiny" @@ -9062,7 +8753,7 @@ msgstr "" "Neodpovídejte na tento e-mail, nedostane se k nim.\n" "\n" "S pozdravem\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10094,10 +9785,6 @@ msgstr "Email" msgid "Change email handling" msgstr "ZmÄ›nit manipulaci emailu" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Změňte vzhled svého profilu" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10544,3 +10231,239 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Nelze naÄíst avatara z URL '%s'" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Chyba pÅ™i aktualizaci vzdáleného profilu." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Nelze zruÅ¡it přístup aplikace %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "NepodaÅ™ilo se uložit profil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Nelze nalézt uživatele s pÅ™ezdívkou %s" + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Není platnou mailovou adresou." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "NepodaÅ™ilo se uložit profil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Nelze uložit vaÅ¡e nastavení designu." + +#~ msgid "Could not update your design." +#~ msgstr "Nelze uložit design." + +#~ msgid "Design" +#~ msgstr "Vzhled" + +#~ msgid "Theme not available: %s." +#~ msgstr "Téma není k dispozici: %s." + +#~ msgid "Change logo" +#~ msgstr "Změňte logo" + +#~ msgid "Change theme" +#~ msgstr "ZmÄ›nit téma" + +#~ msgid "Site theme" +#~ msgstr "Téma stránek" + +#~ msgid "Theme for the site." +#~ msgstr "Téma stránek" + +#~ msgid "Custom theme" +#~ msgstr "Vlastní téma" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv." + +#~ msgid "Change background image" +#~ msgstr "ZmÄ›nit obrázek na pozadí" + +#~ msgid "Background" +#~ msgstr "Pozadí" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1" +#~ "$s." + +#~ msgid "On" +#~ msgstr "zap." + +#~ msgid "Off" +#~ msgstr "vyp." + +#~ msgid "Turn background image on or off." +#~ msgstr "ZapnÄ›te nebů vypnÄ›te obrázek na pozadí." + +#~ msgid "Tile background image" +#~ msgstr "Dlaždicovat obrázek na pozadí" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "ZmÄ›nit barvy" + +#~ msgid "Content" +#~ msgstr "Obsah" + +#~ msgid "Sidebar" +#~ msgstr "BoÄní panel" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Links" +#~ msgstr "Odkazy" + +#~ msgid "Advanced" +#~ msgstr "Rozšířené" + +#~ msgid "Custom CSS" +#~ msgstr "Vlastní CSS" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Použít výchozí" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Obnovit výchozí vzhledy" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Reset zpÄ›t do výchozího" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Uložit vzhled" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "K úpravÄ› skupiny musíte být pÅ™ihlášen." + +#~ msgid "Group design" +#~ msgstr "Vzhled skupiny" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "PÅ™izpůsobit vzhled skupiny obrázkem na pozadí a barevnou paletou vaÅ¡eho " +#~ "výbÄ›ru." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Nelze uložit vaÅ¡e nastavení designu." + +#~ msgid "Design preferences saved." +#~ msgstr "Nastavení vzhledu uloženo." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Neposílejte si zprávu, potichu si ji pro sebe Å™eknÄ›te." + +#~ msgid "Backgrounds" +#~ msgstr "Pozadí" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Téma stránek" + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Cesta k adresáři locales" + +#~ msgid "Profile design" +#~ msgstr "Vzhled profilu" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "PÅ™izpůsobit vzhled vaÅ¡eho profilu obrázkem na pozadí a barevnou paletou " +#~ "vaÅ¡eho výbÄ›ru." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Užijte si svůj párek v rohlíku!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Uložit Nastavení webu" + +#~ msgid "View profile designs" +#~ msgstr "Zobrazit vzhledy profilu" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Zobrazit nebo skrýt vzhledy profilu." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Pozadí" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Nelze smazat nastavení vzhledu." + +#~ msgid "Design configuration" +#~ msgstr "Nastavení vzhledu" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Vzhled" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Uložit vzhled" + +#~ msgid "Change colours" +#~ msgstr "ZmÄ›nit barvy" + +#~ msgid "Use defaults" +#~ msgstr "Použít výchozí" + +#~ msgid "Upload file" +#~ msgstr "Nahrát soubor" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Můžete nahrát váš osobní obrázek na pozadí. Maximální velikost souboru je " +#~ "2 MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "zap." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "vyp." + +#~ msgid "Design defaults restored." +#~ msgstr "Obnoveno výchozí nastavení vzhledu." + +#~ msgid "Design your profile" +#~ msgstr "Změňte vzhled svého profilu" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 1ae520790b..fb2f703fb5 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -129,7 +129,6 @@ msgid "Save access settings" msgstr "Zugangs-Einstellungen speichern" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -145,7 +144,6 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -220,7 +218,6 @@ msgstr "Seite nicht vorhanden" #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -389,7 +386,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." @@ -404,7 +400,6 @@ msgstr "Konnte Profil nicht speichern." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -419,24 +414,6 @@ msgstr[1] "" "Der Server kann so große POST-Abfragen (%s Bytes) aufgrund der Konfiguration " "nicht verarbeiten." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Konnte Design-Einstellungen nicht speichern." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Konnte Benutzerdesign nicht aktualisieren." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -530,6 +507,8 @@ msgstr "" "du nicht befreundet bist." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -761,7 +740,6 @@ msgstr "Gruppen von %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten" @@ -874,7 +852,6 @@ msgstr "Datenbankfehler beim Einfügen von oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -883,7 +860,6 @@ msgstr "Datenbankfehler beim Einfügen von oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." @@ -1248,7 +1224,6 @@ msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1335,6 +1310,7 @@ msgid "Join request canceled." msgstr "Beitrittsgesuch abgelehnt." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Liste der Benutzer in dieser Gruppe." @@ -1492,7 +1468,6 @@ msgstr "Kein solcher Anhang." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -2005,150 +1980,6 @@ msgstr "Diesen Benutzer nicht löschen" msgid "Delete this user." msgstr "Diesen Benutzer löschen." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Design" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Design-Einstellungen dieser StatusNet-Website" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Ungültige URL für das Logo" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ungültige URL für das SSL-Logo." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Theme nicht verfügbar: %s" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Logo ändern" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Seitenlogo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-Logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Theme ändern" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Seitentheme" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Theme dieser Seite." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Angepasster Skin" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Hintergrundbild ändern" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Hintergrund" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Du kannst ein Hintergrundbild für deine Gruppe hochladen. Die maximale " -"Dateigröße beträgt %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "An" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Aus" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Hintergrundbild ein- oder ausschalten." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Hintergrundbild kacheln" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Farben ändern" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Inhalt" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Seitenleiste" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Text" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Links" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Erweitert" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Eigene CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Standardeinstellungen benutzen" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Standarddesign wiederherstellen" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Standardeinstellungen wiederherstellen" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Design speichern" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Diese Nachricht ist kein Favorit!" @@ -2767,32 +2598,6 @@ msgstr "" msgid "No ID." msgstr "Keine ID" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Gruppen-Design" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Stelle ein wie die Gruppenseite aussehen soll. Hintergrundbild und " -"Farbpalette frei wählbar." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Konnte Twitter-Einstellungen nicht speichern." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Design-Einstellungen gespeichert." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3471,13 +3276,6 @@ msgstr "Kein Inhalt!" msgid "No recipient specified." msgstr "Kein Empfänger angegeben." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Nachricht gesendet" @@ -3766,7 +3564,7 @@ msgid "Confirm" msgstr "Bestätigen" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Gleiches Passwort wie zuvor" @@ -3948,30 +3746,6 @@ msgstr "Avatarverzeichnis" msgid "Directory where avatars are located." msgstr "Pfad, in dem sich die Avatare befinden." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Hintergrundbilder" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Server für Hintergründe." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Web-Pfad zu den Hintergründen." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Server für Hintergründe auf SSL-Seiten." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Web Pfad zu Hintergründen auf SSL-Seiten." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Verzeichnis, in dem sich die Hintergründe befinden." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Anhänge" @@ -4798,7 +4572,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 oder mehr Zeichen, und nicht vergessen!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Zurücksetzen" @@ -4807,18 +4580,6 @@ msgstr "Zurücksetzen" msgid "Enter a nickname or email address." msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Der Benutzer hat keine registrierte E-Mail-Adresse." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Fehler beim Speichern der Adressbestätigung." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5810,6 +5571,14 @@ msgstr "Der Seitenname darf nicht leer sein." msgid "You must have a valid contact email address." msgstr "Du musst eine gültige E-Mail-Adresse haben." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Ungültige URL für das Logo" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ungültige URL für das SSL-Logo." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5889,7 +5658,9 @@ msgid "Default language" msgstr "Bevorzugte Sprache" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Sprache der Seite für den Fall, dass die automatische Erkennung anhand der " "Browser-Einstellungen nicht verfügbar ist." @@ -5918,8 +5689,22 @@ msgstr "" "Wie lange muss ein Benutzer warten, bis er eine identische Nachricht " "abschicken kann (in Sekunden)." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Seitenlogo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-Logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Website-Einstellungen speichern" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6708,42 +6493,6 @@ msgstr "Konnte Avatar-URL nicht öffnen „%s“" msgid "Wrong image type for avatar URL \"%s\"." msgstr "Falscher Bildtyp für „%s“" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profil-Design-Einstellungen" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Stelle ein wie deine Profilseite aussehen soll. Hintergrundbild und " -"Farbpalette sind frei wählbar." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Hab Spaß!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Website-Einstellungen speichern" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Profil-Designs ansehen" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Profil-Designs anzeigen oder verstecken." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Hintergrund" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7220,6 +6969,18 @@ msgstr "Kein einzelner Benutzer für den Ein-Benutzer-Modus ausgewählt." msgid "Single-user mode code called when not enabled." msgstr "Einzeluser-Modus aufgerufen, aber nicht aktiviert." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Der Benutzer hat keine registrierte E-Mail-Adresse." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Fehler beim Speichern der Adressbestätigung." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." @@ -7497,11 +7258,6 @@ msgstr "showForm() noch nicht implementiert." msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Konnte die Design-Einstellungen nicht löschen." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7533,17 +7289,6 @@ msgctxt "MENU" msgid "Site" msgstr "Seite" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Design-Konfiguration" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Design" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Benutzereinstellung" @@ -8409,45 +8154,6 @@ msgstr "Löschen" msgid "Delete this user" msgstr "Diesen Benutzer löschen" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Design speichern" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Farben ändern" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Standardeinstellungen benutzen" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Datei hochladen" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Du kannst dein persönliches Hintergrundbild hochladen. Die maximale " -"Dateigröße ist 2 MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "An" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Aus" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Standard-Design wieder hergestellt." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8665,13 +8371,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "%s-Logo hinzufügen oder bearbeiten" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "%s-Design hinzufügen oder bearbeiten" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Gruppenaktionen" @@ -9071,7 +8770,7 @@ msgstr "" "Antworte nicht auf diese E-Mail, sie wird niemanden erreichen.\n" "\n" "Mit freundlichen Grüßen,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10111,10 +9810,6 @@ msgstr "Email" msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Passe dein Profil an" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10548,3 +10243,249 @@ msgstr "Ungültiges XML, XRD-Root fehlt." #, php-format msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Konnte Avatar-URL nicht öffnen „%s“" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Fehler beim Aktualisieren des entfernten Profils." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Kann Zugang dieses Programm nicht entfernen: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Konnte Profil nicht speichern." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Konnte keinen Benutzer mit dem Namen „%s“ finden." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Ungültige E-Mail-Adresse." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Konnte Profil nicht speichern." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Konnte Design-Einstellungen nicht speichern." + +#~ msgid "Could not update your design." +#~ msgstr "Konnte Benutzerdesign nicht aktualisieren." + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Design-Einstellungen dieser StatusNet-Website" + +#~ msgid "Theme not available: %s." +#~ msgstr "Theme nicht verfügbar: %s" + +#~ msgid "Change logo" +#~ msgstr "Logo ändern" + +#~ msgid "Change theme" +#~ msgstr "Theme ändern" + +#~ msgid "Site theme" +#~ msgstr "Seitentheme" + +#~ msgid "Theme for the site." +#~ msgstr "Theme dieser Seite." + +#~ msgid "Custom theme" +#~ msgstr "Angepasster Skin" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen." + +#~ msgid "Change background image" +#~ msgstr "Hintergrundbild ändern" + +#~ msgid "Background" +#~ msgstr "Hintergrund" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Du kannst ein Hintergrundbild für deine Gruppe hochladen. Die maximale " +#~ "Dateigröße beträgt %1$s." + +#~ msgid "On" +#~ msgstr "An" + +#~ msgid "Off" +#~ msgstr "Aus" + +#~ msgid "Turn background image on or off." +#~ msgstr "Hintergrundbild ein- oder ausschalten." + +#~ msgid "Tile background image" +#~ msgstr "Hintergrundbild kacheln" + +#~ msgid "Change colors" +#~ msgstr "Farben ändern" + +#~ msgid "Content" +#~ msgstr "Inhalt" + +#~ msgid "Sidebar" +#~ msgstr "Seitenleiste" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Links" +#~ msgstr "Links" + +#~ msgid "Advanced" +#~ msgstr "Erweitert" + +#~ msgid "Custom CSS" +#~ msgstr "Eigene CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Standardeinstellungen benutzen" + +#~ msgid "Restore default designs." +#~ msgstr "Standarddesign wiederherstellen" + +#~ msgid "Reset back to default." +#~ msgstr "Standardeinstellungen wiederherstellen" + +#~ msgid "Save design." +#~ msgstr "Design speichern" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." + +#~ msgid "Group design" +#~ msgstr "Gruppen-Design" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Stelle ein wie die Gruppenseite aussehen soll. Hintergrundbild und " +#~ "Farbpalette frei wählbar." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Konnte Twitter-Einstellungen nicht speichern." + +#~ msgid "Design preferences saved." +#~ msgstr "Design-Einstellungen gespeichert." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach " +#~ "leise." + +#~ msgid "Backgrounds" +#~ msgstr "Hintergrundbilder" + +#~ msgid "Server for backgrounds." +#~ msgstr "Server für Hintergründe." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Web-Pfad zu den Hintergründen." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Server für Hintergründe auf SSL-Seiten." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Web Pfad zu Hintergründen auf SSL-Seiten." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Verzeichnis, in dem sich die Hintergründe befinden." + +#~ msgid "Profile design" +#~ msgstr "Profil-Design-Einstellungen" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Stelle ein wie deine Profilseite aussehen soll. Hintergrundbild und " +#~ "Farbpalette sind frei wählbar." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Hab Spaß!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Website-Einstellungen speichern" + +#~ msgid "View profile designs" +#~ msgstr "Profil-Designs ansehen" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Profil-Designs anzeigen oder verstecken." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Hintergrund" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Konnte die Design-Einstellungen nicht löschen." + +#~ msgid "Design configuration" +#~ msgstr "Design-Konfiguration" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Design" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Design speichern" + +#~ msgid "Change colours" +#~ msgstr "Farben ändern" + +#~ msgid "Use defaults" +#~ msgstr "Standardeinstellungen benutzen" + +#~ msgid "Upload file" +#~ msgstr "Datei hochladen" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Du kannst dein persönliches Hintergrundbild hochladen. Die maximale " +#~ "Dateigröße ist 2 MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "An" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Aus" + +#~ msgid "Design defaults restored." +#~ msgstr "Standard-Design wieder hergestellt." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "%s-Design hinzufügen oder bearbeiten" + +#~ msgid "Design your profile" +#~ msgstr "Passe dein Profil an" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 590a39c45d..6275b1325e 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "Save access settings" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "Save access settings" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -198,7 +196,6 @@ msgstr "No such page." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -366,7 +363,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Could not update user." @@ -381,7 +377,6 @@ msgstr "Could not save profile." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -396,24 +391,6 @@ msgstr[1] "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Unable to save your design settings." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Could not update your design." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -504,6 +481,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -736,7 +715,6 @@ msgstr "groups on %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "You must be an admin to edit the group." @@ -855,7 +833,6 @@ msgstr "Database error inserting OAuth application user." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -864,7 +841,6 @@ msgstr "Database error inserting OAuth application user." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Unexpected form submission." @@ -1225,7 +1201,6 @@ msgstr "You must be logged in to leave a group." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1311,6 +1286,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "A list of the users in this group." @@ -1476,7 +1452,6 @@ msgstr "No such attachment." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1999,155 +1974,6 @@ msgstr "Do not delete this group" msgid "Delete this user." msgstr "Delete this user" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Design" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Invalid logo URL." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Invalid SSL logo URL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Theme not available: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Change logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Site logo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Change theme" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Site theme" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Theme for the site." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Custom theme" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Change background image" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Background" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "On" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Off" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Turn background image on or off." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Tile background image" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "Change colours" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Content" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Sidebar" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Text" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Links" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Use defaults" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Restore default designs" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Reset back to default" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Save design" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "This notice is not a favourite!" @@ -2756,32 +2582,6 @@ msgstr "Database error blocking user from group." msgid "No ID." msgstr "No ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "You must be logged in to edit a group." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Group design" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Customise the way your group looks with a background image and a colour " -"palette of your choice." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Unable to save your design settings." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Design preferences saved." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3464,13 +3264,6 @@ msgstr "No content!" msgid "No recipient specified." msgstr "No recipient specified." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Don't send a message to yourself; just say it to yourself quietly instead." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Message sent" @@ -3754,7 +3547,7 @@ msgid "Confirm" msgstr "Confirm" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3940,31 +3733,6 @@ msgstr "Avatar directory" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Backgrounds" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Server for themes" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Attachments" @@ -4773,7 +4541,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 or more characters, and don't forget it!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4783,18 +4550,6 @@ msgstr "Reset" msgid "Enter a nickname or email address." msgstr "Enter a nickname or e-mail address." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "No user with that e-mail address or username." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "No registered e-mail address for that user." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Error saving address confirmation." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5758,6 +5513,14 @@ msgstr "" msgid "You must have a valid contact email address." msgstr "You must have a valid contact email address." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Invalid logo URL." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Invalid SSL logo URL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5831,7 +5594,8 @@ msgid "Default language" msgstr "Default language" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5855,8 +5619,22 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logout" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Site logo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Save site settings" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6634,42 +6412,6 @@ msgstr "Can’t read avatar URL ‘%s’." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Wrong image type for avatar URL ‘%s’." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profile design" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Customise the way your profile looks with a background image and a colour " -"palette of your choice." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Save site settings" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "View profile designs" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Show or hide profile designs." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Background" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7120,6 +6862,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "No user with that e-mail address or username." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "No registered e-mail address for that user." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Error saving address confirmation." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Could not create group." @@ -7393,11 +7147,6 @@ msgstr "showForm() not implemented." msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Unable to delete design setting." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7429,17 +7178,6 @@ msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Design configuration" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Design" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "User configuration" @@ -8296,46 +8034,6 @@ msgstr "Delete" msgid "Delete this user" msgstr "Delete this user" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Save design" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Change colours" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Use defaults" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Upload file" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"You can upload your personal background image. The maximum file size is 2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "On" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Off" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Design defaults restored." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8551,13 +8249,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Group actions" @@ -9883,10 +9574,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "Change e-mail handling" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Design your profile" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10314,3 +10001,224 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Can’t read avatar URL ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Error updating remote profile." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Use this form to edit your application." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Could not save profile." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Could not find a user with nickname %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Not a valid e-mail address." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Could not save profile." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Unable to save your design settings." + +#~ msgid "Could not update your design." +#~ msgstr "Could not update your design." + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Theme not available: %s." +#~ msgstr "Theme not available: %s." + +#~ msgid "Change logo" +#~ msgstr "Change logo" + +#~ msgid "Change theme" +#~ msgstr "Change theme" + +#~ msgid "Site theme" +#~ msgstr "Site theme" + +#~ msgid "Theme for the site." +#~ msgstr "Theme for the site." + +#~ msgid "Custom theme" +#~ msgstr "Custom theme" + +#~ msgid "Change background image" +#~ msgstr "Change background image" + +#~ msgid "Background" +#~ msgstr "Background" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." + +#~ msgid "On" +#~ msgstr "On" + +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgid "Turn background image on or off." +#~ msgstr "Turn background image on or off." + +#~ msgid "Tile background image" +#~ msgstr "Tile background image" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "Change colours" + +#~ msgid "Content" +#~ msgstr "Content" + +#~ msgid "Sidebar" +#~ msgstr "Sidebar" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Links" +#~ msgstr "Links" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Use defaults" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Restore default designs" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Reset back to default" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Save design" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "You must be logged in to edit a group." + +#~ msgid "Group design" +#~ msgstr "Group design" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Customise the way your group looks with a background image and a colour " +#~ "palette of your choice." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Unable to save your design settings." + +#~ msgid "Design preferences saved." +#~ msgstr "Design preferences saved." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." + +#~ msgid "Backgrounds" +#~ msgstr "Backgrounds" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Server for themes" + +#~ msgid "Profile design" +#~ msgstr "Profile design" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Customise the way your profile looks with a background image and a colour " +#~ "palette of your choice." + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Save site settings" + +#~ msgid "View profile designs" +#~ msgstr "View profile designs" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Show or hide profile designs." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Background" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Unable to delete design setting." + +#~ msgid "Design configuration" +#~ msgstr "Design configuration" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Design" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Save design" + +#~ msgid "Change colours" +#~ msgstr "Change colours" + +#~ msgid "Use defaults" +#~ msgstr "Use defaults" + +#~ msgid "Upload file" +#~ msgstr "Upload file" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "On" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgid "Design defaults restored." +#~ msgstr "Design defaults restored." + +#~ msgid "Design your profile" +#~ msgstr "Design your profile" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index aa50dc1d4a..1ada50db30 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "Konservi atingan agordon" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "Konservi atingan agordon" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -195,7 +193,6 @@ msgstr "Ne estas tiu paÄo." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -363,7 +360,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Malsukcesis Äisdatigi uzanton" @@ -378,7 +374,6 @@ msgstr "Malsukcesis konservi la profilon." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -393,24 +388,6 @@ msgstr[1] "" "La servilo ne povis trakti tiom da POST-datumo (%s bajtoj) pro Äia nuna " "agordo." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Malsukcesis konservi vian desegnan agordon" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Malsukcesis Äisdatigi vian desegnon." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -501,6 +478,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Vi ne povas sendi rektan mesaÄon al uzanto kiu ne estas via amiko." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Ne sendu mesaÄon al vi mem! Simple diru al vi mem anstataÅ­e." @@ -729,7 +708,6 @@ msgstr "grupoj ĉe %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Vi devas esti administranto por redakti la grupon." @@ -848,7 +826,6 @@ msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -857,7 +834,6 @@ msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Neatendita formo-sendo." @@ -1220,7 +1196,6 @@ msgstr "Ensalutu por eksaniÄi." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1304,6 +1279,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s ne estas en la atendovico por aliÄo al tiu ĉi grupo." @@ -1465,7 +1441,6 @@ msgstr "Ne estas tiu aldonaĵo." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1982,153 +1957,6 @@ msgstr "Ne forigi la avizon" msgid "Delete this user." msgstr "Forigi la uzanton" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Aspekto" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Desegna agordo por ĉi tiu StatusNet-retejo" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL por la emblemo nevalida." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "URL por la SSLa emblemo nevalidas." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Desegno ne havebla: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "ÅœanÄi emblemon" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Reteja emblemo" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "SSLa emblemo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "ÅœanÄi desegnon" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Reteja desegno" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Desegno por la retejo" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Propra desegno" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Vi povas alÅuti propran StatusNet-desegnon kiel .zip-dosiero" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "ÅœanÄi fonbildon" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fono" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "Vi povas alÅuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "En" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "For" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Aktivigi aÅ­ senaktivigi fonbildon" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Ripeti la fonbildon" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "ÅœanÄi kolorojn" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Enhavo" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Flanka strio" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Teksto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Ligiloj" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Speciala" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Propra CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Uzi defaÅ­lton" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "RestaÅ­ri defaÅ­ltajn desegnojn" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "RedefaÅ­ltiÄi" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Savi desegnon" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Ĉi tiu avizo ne estas preferita" @@ -2736,30 +2564,6 @@ msgstr "Malsukcesis forbari uzanton de la grupo pro datumbaza eraro." msgid "No ID." msgstr "Neniu ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Ensalutu por redakti grupon." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Grupa desegno" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "Agordi kiel aspektu via grupo, per elekto de fonbildo kaj koloraro." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Malsukcesis konservi vian desegnan agordon" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Desegna agordo konservita." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3434,12 +3238,6 @@ msgstr "Neniu enhavo!" msgid "No recipient specified." msgstr "Neniu ricevonto speifiÄas." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Ne sendu mesaÄon al vi mem! Simple suspiru anstataÅ­." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "MesaÄo sendita" @@ -3724,7 +3522,7 @@ msgid "Confirm" msgstr "Konfirmi" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3906,30 +3704,6 @@ msgstr "Avatara adresaro" msgid "Directory where avatars are located." msgstr "Dosierujo kie avataroj estas." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fono" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Servilo por fonoj." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Retvojo al fonoj." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Servilo por fonoj en SSL-paÄoj." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Retvojo al fonoj en SSL-paÄoj." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Dosierujo kie fonoj estas." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Aldonaĵo" @@ -4728,7 +4502,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "AlmenaÅ­ 6 signoj, kaj ne forgesu Äin!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4738,18 +4511,6 @@ msgstr "Restarigi" msgid "Enter a nickname or email address." msgstr "Alinomo aÅ­ retpoÅtadreso." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ne estas uzanto kun tiu retpoÅtadreso aÅ­ uzantnomo." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Neniu registrita retpoÅtadreso apartenas al la uzanto." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Eraras pro komfirma kodo." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5715,6 +5476,15 @@ msgstr "La sita nomo devas pli ol nula longeco" msgid "You must have a valid contact email address." msgstr "Vi devas havi validan kontakteblan retpoÅtadreson" +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL por la emblemo nevalida." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "URL por la SSLa emblemo nevalidas." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5791,7 +5561,9 @@ msgid "Default language" msgstr "DefaÅ­lta lingvo" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "Reteja lingvo por kiam lingva prefero ne troviÄas el la foliumilo" #. TRANS: Fieldset legend on site settings panel. @@ -5817,8 +5589,23 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Kiel longe devas uzantoj atendas (je sekundo) antaÅ­ afiÅi la saman refejo." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Emblemo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Reteja emblemo" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "SSLa emblemo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Konservi retejan agordon" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6606,40 +6393,6 @@ msgstr "Malsukcesis legi vizaÄbildan URL ‘%s’." msgid "Wrong image type for avatar URL \"%s\"." msgstr "MalÄusta bildotipo por vizaÄbilda URL ‘%s'." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profila desegno" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "Agodi kiel aspektu via profilo, per elekto de fonbildo kaj koloraro." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Äœuu vian kolbasobulkon!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Konservi retejan agordon" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Vidi profilo-desegnon" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Montri aÅ­ kaÅi profilo-desegnon." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Fono" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7090,6 +6843,18 @@ msgstr "Neniu difinata uzanto por sol-uzanta reÄimo." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ne estas uzanto kun tiu retpoÅtadreso aÅ­ uzantnomo." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Neniu registrita retpoÅtadreso apartenas al la uzanto." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Eraras pro komfirma kodo." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Malsukcesis krei grupon." @@ -7366,11 +7131,6 @@ msgstr "showForm() ne jam realigita." msgid "saveSettings() not implemented." msgstr "saveSettings() ne jam realigita." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Malsukcesas forigi desegnan agordon." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7402,17 +7162,6 @@ msgctxt "MENU" msgid "Site" msgstr "Retejo" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Desegna agordo" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Desegno" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Uzanta agordo" @@ -8278,46 +8027,6 @@ msgstr "Forigi" msgid "Delete this user" msgstr "Forigi la uzanton" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "ÅanÄi etoson" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "ÅœanÄi kolorojn" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Uzi defaÅ­lton" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "AlÅuti dosieron" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Vi povas alÅuti vian propran fonbildon. La dosiera grandlimo estas 2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "En" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "For" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Desegnaj defaÅ­ltoj konserviÄas." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8533,13 +8242,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Aldoni aÅ­ redakti emblemon de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Aldoni aÅ­ redakti desegnon de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Grupaj agoj" @@ -9948,10 +9650,6 @@ msgstr "RetpoÅto" msgid "Change email handling" msgstr "ÅœanÄi retpoÅtan disponadon." -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Desegni vian profilon" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10387,3 +10085,246 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Malsukcesis legi vizaÄbildan URL ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Eraro je Äisdatigo de fora profilo." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Maleble revoki aliradon al aplikaĵo: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Malsukcesis konservi la profilon." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Ne povas trovi uzanton kun kromnomo %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "RetpoÅta adreso ne valida" + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Malsukcesis konservi la profilon." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Malsukcesis konservi vian desegnan agordon" + +#~ msgid "Could not update your design." +#~ msgstr "Malsukcesis Äisdatigi vian desegnon." + +#~ msgid "Design" +#~ msgstr "Aspekto" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Desegna agordo por ĉi tiu StatusNet-retejo" + +#~ msgid "Theme not available: %s." +#~ msgstr "Desegno ne havebla: %s." + +#~ msgid "Change logo" +#~ msgstr "ÅœanÄi emblemon" + +#~ msgid "Change theme" +#~ msgstr "ÅœanÄi desegnon" + +#~ msgid "Site theme" +#~ msgstr "Reteja desegno" + +#~ msgid "Theme for the site." +#~ msgstr "Desegno por la retejo" + +#~ msgid "Custom theme" +#~ msgstr "Propra desegno" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Vi povas alÅuti propran StatusNet-desegnon kiel .zip-dosiero" + +#~ msgid "Change background image" +#~ msgstr "ÅœanÄi fonbildon" + +#~ msgid "Background" +#~ msgstr "Fono" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Vi povas alÅuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s." + +#~ msgid "On" +#~ msgstr "En" + +#~ msgid "Off" +#~ msgstr "For" + +#~ msgid "Turn background image on or off." +#~ msgstr "Aktivigi aÅ­ senaktivigi fonbildon" + +#~ msgid "Tile background image" +#~ msgstr "Ripeti la fonbildon" + +#~ msgid "Change colors" +#~ msgstr "ÅœanÄi kolorojn" + +#~ msgid "Content" +#~ msgstr "Enhavo" + +#~ msgid "Sidebar" +#~ msgstr "Flanka strio" + +#~ msgid "Text" +#~ msgstr "Teksto" + +#~ msgid "Links" +#~ msgstr "Ligiloj" + +#~ msgid "Advanced" +#~ msgstr "Speciala" + +#~ msgid "Custom CSS" +#~ msgstr "Propra CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Uzi defaÅ­lton" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "RestaÅ­ri defaÅ­ltajn desegnojn" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "RedefaÅ­ltiÄi" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Savi desegnon" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Ensalutu por redakti grupon." + +#~ msgid "Group design" +#~ msgstr "Grupa desegno" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "Agordi kiel aspektu via grupo, per elekto de fonbildo kaj koloraro." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Malsukcesis konservi vian desegnan agordon" + +#~ msgid "Design preferences saved." +#~ msgstr "Desegna agordo konservita." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Ne sendu mesaÄon al vi mem! Simple suspiru anstataÅ­." + +#~ msgid "Backgrounds" +#~ msgstr "Fono" + +#~ msgid "Server for backgrounds." +#~ msgstr "Servilo por fonoj." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Retvojo al fonoj." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Servilo por fonoj en SSL-paÄoj." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Retvojo al fonoj en SSL-paÄoj." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Dosierujo kie fonoj estas." + +#~ msgid "Profile design" +#~ msgstr "Profila desegno" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Agodi kiel aspektu via profilo, per elekto de fonbildo kaj koloraro." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Äœuu vian kolbasobulkon!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Konservi retejan agordon" + +#~ msgid "View profile designs" +#~ msgstr "Vidi profilo-desegnon" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Montri aÅ­ kaÅi profilo-desegnon." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Fono" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Malsukcesas forigi desegnan agordon." + +#~ msgid "Design configuration" +#~ msgstr "Desegna agordo" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Desegno" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "ÅanÄi etoson" + +#~ msgid "Change colours" +#~ msgstr "ÅœanÄi kolorojn" + +#~ msgid "Use defaults" +#~ msgstr "Uzi defaÅ­lton" + +#~ msgid "Upload file" +#~ msgstr "AlÅuti dosieron" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Vi povas alÅuti vian propran fonbildon. La dosiera grandlimo estas 2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "En" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "For" + +#~ msgid "Design defaults restored." +#~ msgstr "Desegnaj defaÅ­ltoj konserviÄas." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Aldoni aÅ­ redakti desegnon de %s" + +#~ msgid "Design your profile" +#~ msgstr "Desegni vian profilon" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 2a9d9323d1..857a7de775 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -22,17 +22,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -121,7 +121,6 @@ msgid "Save access settings" msgstr "Guardar la configuración de acceso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -137,7 +136,6 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -212,7 +210,6 @@ msgstr "No existe tal página." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -381,7 +378,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "No se pudo actualizar el usuario." @@ -396,7 +392,6 @@ msgstr "No se pudo guardar el perfil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -411,24 +406,6 @@ msgstr[1] "" "El servidor no ha podido manejar tanta información del tipo POST (%s de " "bytes) a causa de su configuración actual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "No se pudo grabar tu configuración de diseño." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "No se pudo actualizar tu diseño." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -518,6 +495,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "No puedes enviar mensajes directos a usuarios que no son tus amigos." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "No te envíes un mensaje a ti mismo; sólo dilo para ti en voz baja." @@ -746,7 +725,6 @@ msgstr "Grupos en %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Para editar el grupo debes ser administrador." @@ -857,7 +835,6 @@ msgstr "Error de base de datos insertando oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -866,7 +843,6 @@ msgstr "Error de base de datos insertando oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -1224,7 +1200,6 @@ msgstr "Debes estar conectado para dejar un grupo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1311,6 +1286,7 @@ msgid "Join request canceled." msgstr "Solicitud de ingreso cancelada." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s no está en la cola de moderación de sus suscripciones." @@ -1462,7 +1438,6 @@ msgstr "No existe tal archivo adjunto." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1976,153 +1951,6 @@ msgstr "No eliminar este usuario" msgid "Delete this user." msgstr "Borrar este usuario" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Diseño" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Configuración de diseño de este sitio de StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL de logotipo inválido." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "URL no válida de logotipo SSL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema no disponible: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Cambiar logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo del sitio" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Cambiar el tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema del sitio" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema para el sitio." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Personalizar tema" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Cambiar la imagen de fondo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fondo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Puedes subir una imagen de fondo para el sitio. El tamaño máximo de archivo " -"es %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Activar" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Desactivar" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Activar o desactivar la imagen de fondo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Imagen de fondo en mosaico" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Cambiar colores" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contenido" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra lateral" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Vínculos" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avanzado" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Personalizar CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Usar los valores predeterminados" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Restaurar los diseños predeterminados" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Volver a los valores predeterminados" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Guardar el diseño" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Este mensaje no es un favorito!" @@ -2737,32 +2565,6 @@ msgstr "" msgid "No ID." msgstr "Sin ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Debes estar conectado para editar un grupo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Diseño de grupo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de " -"colores que prefieras." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "No se pudo actualizar tu configuración de diseño." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Preferencias de diseño guardadas." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3431,12 +3233,6 @@ msgstr "¡Ningún contenido!" msgid "No recipient specified." msgstr "No se especificó receptor." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Mensaje enviado" @@ -3720,7 +3516,7 @@ msgid "Confirm" msgstr "Confirmar" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Igual a la contraseña de arriba." @@ -3908,32 +3704,6 @@ msgstr "Directorio de la imagen" msgid "Directory where avatars are located." msgstr "Ruta del directorio de las configuraciones locales" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fondos" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Tema para el sitio." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "Ruta del directorio de las configuraciones locales" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Adjuntos" @@ -4754,7 +4524,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 o más caracteres, ¡y no la olvides!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Restablecer" @@ -4763,18 +4532,6 @@ msgstr "Restablecer" msgid "Enter a nickname or email address." msgstr "Ingresa un nombre de usuario o correo electronico" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ninguna dirección de correo electrónico registrada por este usuario." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Error al guardar confirmación de la dirección." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5756,6 +5513,14 @@ msgstr "El nombre del sitio debe tener longitud diferente de cero." msgid "You must have a valid contact email address." msgstr "Debes tener una dirección de correo electrónico válida." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL de logotipo inválido." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "URL no válida de logotipo SSL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5833,7 +5598,9 @@ msgid "Default language" msgstr "!Idioma predeterminado" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Idioma del sitio cuando la autodetección de la configuración del navegador " "no está disponible" @@ -5860,8 +5627,22 @@ msgstr "Límite de duplicados" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo del sitio" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Guardar la configuración del sitio" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6656,42 +6437,6 @@ msgstr "No se puede leer la URL de la imagen ‘%s’." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagen incorrecto para la URL de imagen ‘%s’." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Diseño del perfil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personaliza la vista de tu perfil con una imagen de fondo y la paelta de " -"colores que quieras." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "¡Disfruta de tu perrito caliente!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Guardar la configuración del sitio" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Ver diseños de perfil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Ocultar o mostrar diseños de perfil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Fondo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7157,6 +6902,18 @@ msgstr "Ningún usuario sólo definido para modo monousuario." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ninguna dirección de correo electrónico registrada por este usuario." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Error al guardar confirmación de la dirección." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "No se pudo crear grupo." @@ -7436,11 +7193,6 @@ msgstr "showForm() no implementada." msgid "saveSettings() not implemented." msgstr "saveSettings() no implementada." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "No se puede eliminar la configuración de diseño." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7472,17 +7224,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuración del diseño" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Diseño" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración de usuario" @@ -8356,45 +8097,6 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar este usuario" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Guardar el diseño" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Cambiar colores" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Utilizar los valores predeterminados" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Subir archivo" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Puedes subir tu imagen de fondo personal. El tamaño de archivo máximo " -"permitido es 2 MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Activar" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Desactivar" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Diseño predeterminado restaurado." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8613,13 +8315,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Añadir o modificar el logo %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Añadir o modificar el diseño %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Acciones del grupo" @@ -9008,7 +8703,7 @@ msgstr "" "No respondas a este correo electrónico. No llegará a ningún sitio.\n" "\n" "Saludos cordiales,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10038,10 +9733,6 @@ msgstr "Correo electrónico" msgid "Change email handling" msgstr "Cambiar el manejo del correo." -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Diseñar tu perfil" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10478,3 +10169,242 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "No se puede leer la URL de la imagen ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Error al actualizar el perfil remoto." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "No se puede revocar el acceso para la aplicación: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "No se pudo guardar el perfil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "No se pudo encontrar el usuario con el nombre de usuario %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Correo electrónico no válido" + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "No se pudo guardar el perfil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "No se pudo grabar tu configuración de diseño." + +#~ msgid "Could not update your design." +#~ msgstr "No se pudo actualizar tu diseño." + +#~ msgid "Design" +#~ msgstr "Diseño" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Configuración de diseño de este sitio de StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema no disponible: %s." + +#~ msgid "Change logo" +#~ msgstr "Cambiar logo" + +#~ msgid "Change theme" +#~ msgstr "Cambiar el tema" + +#~ msgid "Site theme" +#~ msgstr "Tema del sitio" + +#~ msgid "Theme for the site." +#~ msgstr "Tema para el sitio." + +#~ msgid "Custom theme" +#~ msgstr "Personalizar tema" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP." + +#~ msgid "Change background image" +#~ msgstr "Cambiar la imagen de fondo" + +#~ msgid "Background" +#~ msgstr "Fondo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Puedes subir una imagen de fondo para el sitio. El tamaño máximo de " +#~ "archivo es %1$s." + +#~ msgid "On" +#~ msgstr "Activar" + +#~ msgid "Off" +#~ msgstr "Desactivar" + +#~ msgid "Turn background image on or off." +#~ msgstr "Activar o desactivar la imagen de fondo." + +#~ msgid "Tile background image" +#~ msgstr "Imagen de fondo en mosaico" + +#~ msgid "Change colors" +#~ msgstr "Cambiar colores" + +#~ msgid "Content" +#~ msgstr "Contenido" + +#~ msgid "Sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Links" +#~ msgstr "Vínculos" + +#~ msgid "Advanced" +#~ msgstr "Avanzado" + +#~ msgid "Custom CSS" +#~ msgstr "Personalizar CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Usar los valores predeterminados" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Restaurar los diseños predeterminados" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Volver a los valores predeterminados" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Guardar el diseño" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Debes estar conectado para editar un grupo." + +#~ msgid "Group design" +#~ msgstr "Diseño de grupo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de " +#~ "colores que prefieras." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "No se pudo actualizar tu configuración de diseño." + +#~ msgid "Design preferences saved." +#~ msgstr "Preferencias de diseño guardadas." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." + +#~ msgid "Backgrounds" +#~ msgstr "Fondos" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Tema para el sitio." + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Ruta del directorio de las configuraciones locales" + +#~ msgid "Profile design" +#~ msgstr "Diseño del perfil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personaliza la vista de tu perfil con una imagen de fondo y la paelta de " +#~ "colores que quieras." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "¡Disfruta de tu perrito caliente!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Guardar la configuración del sitio" + +#~ msgid "View profile designs" +#~ msgstr "Ver diseños de perfil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Ocultar o mostrar diseños de perfil." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Fondo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "No se puede eliminar la configuración de diseño." + +#~ msgid "Design configuration" +#~ msgstr "Configuración del diseño" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Diseño" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Guardar el diseño" + +#~ msgid "Change colours" +#~ msgstr "Cambiar colores" + +#~ msgid "Use defaults" +#~ msgstr "Utilizar los valores predeterminados" + +#~ msgid "Upload file" +#~ msgstr "Subir archivo" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Puedes subir tu imagen de fondo personal. El tamaño de archivo máximo " +#~ "permitido es 2 MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Activar" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Desactivar" + +#~ msgid "Design defaults restored." +#~ msgstr "Diseño predeterminado restaurado." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Añadir o modificar el diseño %s" + +#~ msgid "Design your profile" +#~ msgstr "Diseñar tu perfil" diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po new file mode 100644 index 0000000000..85d2010535 --- /dev/null +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -0,0 +1,9652 @@ +# Translation of StatusNet - Core to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: An13sa +# Author: Bengoa +# Author: Txopi +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Core\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:13+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-core\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "" + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "" + +#. TRANS: Error message displayed when trying to access a non-existing page. +msgid "Unknown page" +msgstr "" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "Ekitza ezezaguna" + +#. TRANS: Page title for Access admin panel that allows configuring site access. +msgid "Access" +msgstr "Sartu" + +#. TRANS: Page notice. +msgid "Site access settings" +msgstr "Gunea atzitzeko ezarpenak" + +#. TRANS: Form legend for registration form. +msgid "Registration" +msgstr "Izen-ematea" + +#. TRANS: Checkbox instructions for admin setting "Private". +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "Erabiltzaile ezezagunari (kautotu gabea) orrialdea ikusten galarazi?" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#. TRANS: Checkbox label to show private tags. +#. TRANS: Checkbox field label on group edit form to mark a group private. +msgctxt "LABEL" +msgid "Private" +msgstr "Pribatua" + +#. TRANS: Checkbox instructions for admin setting "Invite only". +msgid "Make registration invitation only." +msgstr "Izena emateko gonbidapena soilik." + +#. TRANS: Checkbox label for configuring site as invite only. +msgid "Invite only" +msgstr "Gonbidatu soilik" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). +msgid "Disable new registrations." +msgstr "Ezgaitu izen-emate berriak." + +#. TRANS: Checkbox label for disabling new user registrations. +msgid "Closed" +msgstr "Itxita" + +#. TRANS: Title for button to save access settings in site admin panel. +msgid "Save access settings" +msgstr "Gorde atzipen-ezarpenak" + +#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button label to save e-mail preferences. +#. TRANS: Button label to save IM preferences. +#. TRANS: Button text in the license admin panel. +#. TRANS: Button text to store form data in the Paths admin panel. +#. TRANS: Button to save input in profile settings. +#. TRANS: Submit button text on the sessions administration panel. +#. TRANS: Button text for saving site settings. +#. TRANS: Button text for saving site notice in admin panel. +#. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. +#. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text to save lists. +#. TRANS: Button text for saving "Other settings" in profile. +#. TRANS: Button text to save user settings in user admin panel. +#. TRANS: Button label in the "Edit application" form. +#. TRANS: Text for save button on group edit form. +#. TRANS: Button text to save tags for a profile. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error. +#. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Arazoa egon da zure sesioko tokenarekin. Saiatu berriro, mesedez." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Saioa hasi gabe." + +#. TRANS: Client error displayed trying to perform an action related to a non-existing profile. +#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. +#. TRANS: Client exception. +#. TRANS: Client error displayed when referring to a non-existing profile. +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#. TRANS: Client error displayed trying to perform an action related to a non-existing profile. +msgid "No such profile." +msgstr "Profil hori ez dago." + +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "Zerrenda hori ez dago." + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly. Please try retrying later." +msgstr "" + +#. TRANS: Title after adding a user to a list. +msgctxt "TITLE" +msgid "Listed" +msgstr "" + +#. TRANS: Server error when page not found (404). +#. TRANS: Server error when page not found (404) +#. TRANS: Server error when page not found (404). +msgid "No such page." +msgstr "Orrialde hori ez dago." + +#. TRANS: Client error when user not found for an action. +#. TRANS: Client error when user not found for an rss related action. +#. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. +#. TRANS: Client error displayed if a user could not be found. +#. TRANS: Client error displayed updating profile image without having a user object. +#. TRANS: Client error displayed when making an Atom API request for an unknown user. +#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. +#. TRANS: Client error when user not found for an API action to remove a block for a user. +#. TRANS: Client error given when a user was not found (404). +#. TRANS: Client error when user not found for an API direct message action. +#. TRANS: Client error given when a user was not found (404). +#. TRANS: Client error displayed when checking group membership for a non-existing user. +#. TRANS: Client error displayed when trying to have a non-existing user join a group. +#. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. +#. TRANS: Client error displayed when not providing a user or an invalid user. +#. TRANS: Client error displayed when referring to a non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. +#. TRANS: Client error displayed when updating a status for a non-existing user. +#. TRANS: Client error displayed when requesting a list of followers for a non-existing user. +#. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user. +#. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist. +#. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user. +#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. +#. TRANS: Client error displayed requesting most recent notices for a non-existing user. +#. TRANS: Client error displayed trying to get an avatar for a non-existing user. +#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. +#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. +#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. +#. TRANS: Client error displayed trying to make a micro summary without providing a valid user. +#. TRANS: Client error displayed trying to send a direct message to a non-existing user. +#. TRANS: Client error displayed trying to use "one time password login" without using an existing user. +#. TRANS: Client error displayed when referring to non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. +#. TRANS: Form validation error on page for remote subscribe when no user was provided. +#. TRANS: Form validation error on page for remote subscribe when no user profile was found. +#. TRANS: Client error displayed when trying to reply to a non-exsting user. +#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action. +#. TRANS: Client error. +#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. +#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. +#. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. +#. TRANS: Client error displayed providing a non-existing nickname. +#. TRANS: Error text shown when trying to send a direct message to a user that does not exist. +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. +#. TRANS: Client error displayed when calling a profile action without specifying a user. +msgid "No such user." +msgstr "Erabiltzaile hori ez dago." + +#. TRANS: Title of a user's own start page. +msgid "Home timeline" +msgstr "Etxeko kronologia" + +#. TRANS: Title of another user's start page. +#. TRANS: %s is the other user's name. +#, php-format +msgid "%s's home timeline" +msgstr "%s(r)en etxeko kronologia" + +#. TRANS: %s is user nickname. +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s(r)en lagunen jarioa (RSS 1.0)" + +#. TRANS: %s is user nickname. +#. TRANS: Feed title. +#. TRANS: %s is tagger's nickname. +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s(r)en lagunen jarioa (RSS 2.0)" + +#. TRANS: %s is user nickname. +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s(r)en lagunen jarioa (Atom)" + +#. TRANS: Empty list message. %s is a user nickname. +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" +"Hau %s(r)en eta bere lagunen kronologia da baina oraindik ez du inork " +"mezurik idatzi." + +#. TRANS: Encouragement displayed on logged in user's empty timeline. +#. TRANS: This message contains Markdown links. Keep "](" together. +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Saiatu jende gehiago jarraitzen, [batu talde bati](%%action.groups%%) edo " +"idatzi zerbait zure arbelean." + +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@". +#. TRANS: This message contains Markdown links. Keep "](" together. +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from their profile or [post something " +"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" +"Saiatu: [zirikatu %1$s](../%2$s) bere profiletik edo [idatzi zerbait haiei](%" +"%%%action.newnotice%%%%?status_textarea=%3$s)." + +#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. +#. TRANS: Empty list message for page with replies for a user for not logged in users. +#. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). +#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname. +#. TRANS: This message contains a Markdown link. Keep "](" together. +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to them." +msgstr "" +"Zuk ere [kontu bat ireki] nahi duzu ?(%%%%action.register%%%%) eta zirikatu %" +"s edo beraien arbelan zerbait idatzi." + +#. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. +#, php-format +msgid "%s and friends" +msgstr "%s eta lagunak" + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "%2$s(e)n %1$s(e)k eta bere lagunek bidalitako azken mezuak!" + +#. TRANS: Client error displayed when coming across a non-supported API method. +#. TRANS: Client error displayed when trying to handle an unknown API method. +#. TRANS: Client error displayed when coming across a non-supported API method. +msgid "API method not found." +msgstr "API metodoa ez da aurkitu." + +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +msgid "This method requires a POST." +msgstr "Metodo honek POST behar du." + +#. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none." +msgstr "" +"Adi, 'device' izeneko parametro bat definitu behar zenuke ondorengo balioren " +"batekin: sms, im, ezer ez." + +#. TRANS: Server error displayed when a user's delivery device cannot be updated. +#. TRANS: Server error displayed when confirming an e-mail address or IM address fails. +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown when user profile settings could not be updated. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. +msgid "Could not update user." +msgstr "Ezin da erabiltzailea eguneratu." + +#. TRANS: Error message displayed when referring to a user without a profile. +msgid "User has no profile." +msgstr "Erabiltzaileak ez du profilik." + +#. TRANS: Server error displayed if a user profile could not be saved. +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "Ezin izan da profila gorde." + +#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. +#. TRANS: %s is the number of bytes of the CONTENT_LENGTH. +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s byte) due to its " +"current configuration." +msgid_plural "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr[0] "" +"Zerbitzariak ezin izan du hainbeste POST informazio jasan (byte %s) uneko " +"ezarpenekin." +msgstr[1] "" +"Zerbitzariak ezin izan du hainbeste POST informazio jasan (%s bytes) uneko " +"ezarpenekin." + +#. TRANS: Title for Atom feed. +msgctxt "ATOM" +msgid "Main" +msgstr "Nagusia" + +#. TRANS: Title for Atom feed. %s is a user nickname. +#. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title in atom group notice feed. %s is a group name. +#. TRANS: Title in atom user notice feed. %s is a user name. +#, php-format +msgid "%s timeline" +msgstr "%s kronologia" + +#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname. +#. TRANS: Title for Atom subscription feed. +#. TRANS: %s is a user nickname. +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s subscriptions" +msgstr "%s harpidetza" + +#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname. +#. TRANS: Title for Atom favorites feed. +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s favorites" +msgstr "%s gogoko" + +#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. +#, php-format +msgid "%s memberships" +msgstr "%s taldeko kide" + +#. TRANS: Client error displayed when users try to block themselves. +msgid "You cannot block yourself!" +msgstr "Ezin duzu zure burua blokeatu!" + +#. TRANS: Server error displayed when blocking a user has failed. +msgid "Block user failed." +msgstr "Erabiltzailea blokeatzeak huts egin du." + +#. TRANS: Server error displayed when unblocking a user has failed. +msgid "Unblock user failed." +msgstr "Erabiltzailea desblokeatzeak huts egin du." + +#. TRANS: Title. %s is a user nickname. +#, php-format +msgid "Direct messages from %s" +msgstr "%s(r)en zuzeneko mezua" + +#. TRANS: Subtitle. %s is a user nickname. +#, php-format +msgid "All the direct messages sent from %s" +msgstr "%s(r)en zuzeneko mezu guztiak" + +#. TRANS: Title. %s is a user nickname. +#, php-format +msgid "Direct messages to %s" +msgstr "Bidali mezua zuzenean %s(r)i" + +#. TRANS: Subtitle. %s is a user nickname. +#, php-format +msgid "All the direct messages sent to %s" +msgstr "%s(r)i zuzenean bidalitako mezu guztiak" + +#. TRANS: Client error displayed when no message text was submitted (406). +msgid "No message text!" +msgstr "Testurik ez mezuan!" + +#. TRANS: Client error displayed when message content is too long. +#. TRANS: %d is the maximum number of characters for a message. +#. TRANS: Form validation error displayed when message content is too long. +#. TRANS: %d is the maximum number of characters for a message. +#, php-format +msgid "That's too long. Maximum message size is %d character." +msgid_plural "That's too long. Maximum message size is %d characters." +msgstr[0] "Luzeegia da hori. Mezuaren tamaina maximoa karaktere %d da." +msgstr[1] "Luzeegia da hori. Mezuaren tamaina maximoa %d karaktere da." + +#. TRANS: Client error displayed if a recipient user could not be found (403). +msgid "Recipient user not found." +msgstr "Ez da hartzailea aurkitu." + +#. TRANS: Client error displayed trying to direct message another user who's not a friend (403). +msgid "Cannot send direct messages to users who aren't your friend." +msgstr "Ezin dizkiozu zure lagunak ez direnei zuzeneko mezuak bidali." + +#. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. +msgid "" +"Do not send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Etzaiozu zure buruari mezurik bidali; zure buruari isiltasunean esatea " +"nahiko da." + +#. TRANS: Client error displayed when requesting a status with a non-existing ID. +#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID. +#. TRANS: Client error displayed trying to delete a status with an invalid ID. +msgid "No status found with that ID." +msgstr "Ez da egoerarik aurkitu ID horrekin." + +#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite. +msgid "This status is already a favorite." +msgstr "Egoera hau gogokoa da dagoeneko." + +#. TRANS: Client error displayed when marking a notice as favourite fails. +#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database. +#. TRANS: Error message text shown when a favorite could not be set. +msgid "Could not create favorite." +msgstr "Ezin da gogokoa sortu." + +#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. +msgid "That status is not a favorite." +msgstr "Egoera hori ez da gogokoetakoa." + +#. TRANS: Client error displayed when removing a favourite has failed. +#. TRANS: Server error displayed when removing a favorite from the database fails. +msgid "Could not delete favorite." +msgstr "Ezin da gogokoa ezabatu." + +#. TRANS: Client error displayed when trying follow who's profile could not be found. +msgid "Could not follow user: profile not found." +msgstr "Ezin da erabiltzailea jarraitu: ez da profila aurkitu." + +#. TRANS: Client error displayed when trying to follow a user that's already being followed. +#. TRANS: %s is the nickname of the user that is already being followed. +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Ezin da erabiltzailea jarraitu: %s dagoeneko zure zerrendan dago." + +#. TRANS: Client error displayed when trying to unfollow a user that cannot be found. +msgid "Could not unfollow user: User not found." +msgstr "Ezin da zerrendatik kendu: erabiltzailea ez da aurkitu." + +#. TRANS: Client error displayed when trying to unfollow self. +msgid "You cannot unfollow yourself." +msgstr "Ezin diozu zure burua jarraitzeari utzi." + +#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. +msgid "Two valid IDs or nick names must be supplied." +msgstr "Baliozko bi ID edo pantaila_izen hornituak izan behar dira." + +#. TRANS: Client error displayed when a source user could not be determined showing friendship. +msgid "Could not determine source user." +msgstr "Ezin da jatorrizko erabiltzailea lortu." + +#. TRANS: Client error displayed when a target user could not be determined showing friendship. +msgid "Could not find target user." +msgstr "Ezin da helburu erabiltzailea aurkitu." + +#. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: API validation exception thrown when nickname is already used. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#. TRANS: Validation error in form for profile settings. +#. TRANS: Form validation error displayed when trying to register with an existing nickname. +msgid "Nickname already in use. Try another one." +msgstr "Erabiltzaile izena norbaitek hartu du. Saiatu beste batekin." + +#. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when nickname does not validate. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#. TRANS: Validation error in form for profile settings. +#. TRANS: Form validation error displayed when trying to register with an invalid nickname. +msgid "Not a valid nickname." +msgstr "Erabiltzaile izena ez da baliozkoa." + +#. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when homepage URL does not validate. +#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. +#. TRANS: Group edit form validation error. +#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form. +#. TRANS: Group create form validation error. +#. TRANS: Validation error in form for profile settings. +#. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. +msgid "Homepage is not a valid URL." +msgstr "Hasiera Orria ez da URL zuzena." + +#. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when full name does not validate. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#. TRANS: Validation error in form for profile settings. +#. TRANS: Form validation error displayed when trying to register with a too long full name. +msgid "Full name is too long (maximum 255 characters)." +msgstr "Izen osoa luzeegia da (gehienez 255 karakere)." + +#. TRANS: Client error shown when providing too long a description during group creation. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: API validation exception thrown when description does not validate. +#. TRANS: %d is the maximum description length and used for plural. +#. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Group edit form validation error. +#. TRANS: Client error shown when providing too long a description when editing a list. +#. TRANS: %d is the maximum number of allowed characters. +#. TRANS: Form validation error in New application form. +#. TRANS: %d is the maximum number of characters for the description. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed characters. +#, php-format +msgid "Description is too long (maximum %d character)." +msgid_plural "Description is too long (maximum %d characters)." +msgstr[0] "Deskribapena luzeegia da (gehienez karakere %d)." +msgstr[1] "Deskribapena luzeegia da (gehienez %d karakere)." + +#. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: API validation exception thrown when location does not validate. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#. TRANS: Validation error in form for profile settings. +#. TRANS: Form validation error displayed when trying to register with a too long location. +msgid "Location is too long (maximum 255 characters)." +msgstr "Kokalekua luzeegia (gehienez 255 karakere)." + +#. TRANS: Client error shown when providing too many aliases during group creation. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: API validation exception thrown when aliases do not validate. +#. TRANS: %d is the maximum number of aliases and used for plural. +#. TRANS: Group edit form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: Group create form validation error. +#. TRANS: %d is the maximum number of allowed aliases. +#, php-format +msgid "Too many aliases! Maximum %d allowed." +msgid_plural "Too many aliases! Maximum %d allowed." +msgstr[0] "Goitizen gehiegi! Gehienez %d." +msgstr[1] "Goitizen gehiegi! Gehienez %d." + +#. TRANS: Client error shown when providing an invalid alias during group creation. +#. TRANS: %s is the invalid alias. +#. TRANS: API validation exception thrown when aliases does not validate. +#. TRANS: %s is the invalid alias. +#, php-format +msgid "Invalid alias: \"%s\"." +msgstr "Goitizen okerra: \"%s\"." + +#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. +#. TRANS: %s is the alias that is already in use. +#. TRANS: API validation exception thrown when aliases is already used. +#. TRANS: %s is the already used alias. +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. %s is the already used alias. +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "\"%s\" goitizena norbaitek hartu du. Saiatu beste batekin." + +#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. +#. TRANS: Group edit form validation error. +msgid "Alias can't be the same as nickname." +msgstr "Goitizena eta erabiltzaile izena ezin da berdina izan." + +#. TRANS: Client error displayed when checking group membership for a non-existing group. +#. TRANS: Client error displayed when trying to join a group that does not exist. +#. TRANS: Client error displayed when trying to leave a group that does not exist. +#. TRANS: Client error displayed trying to show group membership on a non-existing group. +#. TRANS: Client error displayed when not providing a group or an invalid group. +#. TRANS: Client error displayed when trying to show a group that could not be found. +#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. +msgid "Group not found." +msgstr "Taldea ez da aurkitu." + +#. TRANS: Server error displayed when trying to join a group the user is already a member of. +#. TRANS: Client error displayed when trying to join a group while already a member. +#. TRANS: Error text shown a user tries to join a group they already are a member of. +msgid "You are already a member of that group." +msgstr "Dagoeneko talde horretako partaide zara." + +#. TRANS: Server error displayed when trying to join a group the user is blocked from joining. +#. TRANS: Client error displayed when trying to join a group while being blocked form joining it. +#. TRANS: Error text shown when a user tries to join a group they are blocked from joining. +msgid "You have been blocked from that group by the admin." +msgstr "Administratzaileak talde horretan blokeatu egin zaitu." + +#. 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. +#. TRANS: Message given having failed to add a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr " %1$s erabiltzailea ezin da %2$s taldera batu." + +#. TRANS: Server error displayed when trying to leave a group the user is not a member of. +msgid "You are not a member of this group." +msgstr "Ez zara talde horretako partaide." + +#. 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. +#. TRANS: Message given having failed to remove a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "%1$s ezin da %2$s taldetik ezabatu." + +#. TRANS: Used as title in check for group membership. %s is a user name. +#, php-format +msgid "%s's groups" +msgstr "%s(r)en taldeak" + +#. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name. +#, php-format +msgid "%1$s groups %2$s is a member of." +msgstr "%2$s kidea den %1$s(e)ko taldeak." + +#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name. +#. TRANS: Page title for first page of groups for a user. +#. TRANS: %s is a nickname. +#, php-format +msgid "%s groups" +msgstr "%s talde" + +#. TRANS: Message is used as a subtitle when listing the latest 20 groups. %s is a site name. +#, php-format +msgid "groups on %s" +msgstr "%s(e)ko taldeak" + +#. TRANS: Client error displayed when trying to edit a group without being an admin. +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. +msgid "You must be an admin to edit the group." +msgstr "Talde bat aldatzeko administraria izan behar zara." + +#. TRANS: Server error displayed when group update fails. +#. TRANS: Server error displayed when editing a group fails. +msgid "Could not update group." +msgstr "Ezin da taldea eguneratu." + +#. TRANS: Server error displayed when adding group aliases fails. +#. TRANS: Server error displayed when group aliases could not be added. +#. TRANS: Server exception thrown when creating group aliases failed. +msgid "Could not create aliases." +msgstr "Ezin izan da goitizena sortu." + +#. TRANS: API validation exception thrown when nickname does not validate. +#. TRANS: Validation error in form for registration, profile and group settings, etc. +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"Erabiltzaile izenak hizki xeheak eta zenbakiak eduki ditzake soilik, " +"zuriunerik gabe." + +#. TRANS: API validation exception thrown when alias is the same as nickname. +#. TRANS: Group create form validation error. +msgid "Alias cannot be the same as nickname." +msgstr "Goitizena eta erabiltzaile izena ezin da berdina izan." + +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to perform an action related to a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +msgid "List not found." +msgstr "Zerrenda ez da aurkitu." + +#. TRANS: Client error displayed when trying to update another user's list. +msgid "You cannot update lists that do not belong to you." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs updating a list. +#. TRANS: Client error displayed when an unknown error occurs viewing list members. +#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. +#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. +msgid "An error occured." +msgstr "" + +#. TRANS: Client error displayed when trying to delete another user's list. +msgid "You cannot delete lists that do not belong to you." +msgstr "" + +#. TRANS: Client error displayed when referring to a non-list member. +msgid "The specified user is not a member of this list." +msgstr "" + +#. TRANS: Client error displayed when trying to add members to a list without having the right to do so. +msgid "You are not allowed to add members to this list." +msgstr "" + +#. TRANS: Client error displayed when trying to modify list members without specifying them. +msgid "You must specify a member." +msgstr "" + +#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. +msgid "You are not allowed to remove members from this list." +msgstr "" + +#. TRANS: Client error displayed when trying to remove a list member that is not part of a list. +msgid "The user you are trying to remove from the list is not a member." +msgstr "" + +#. TRANS: Client error displayed when trying to create a list without a name. +msgid "A list must have a name." +msgstr "" + +#. TRANS: Client error displayed when a membership check for a user is nagative. +msgid "The specified user is not a subscriber of this list." +msgstr "" + +#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. +msgid "You are not subscribed to this list." +msgstr "" + +#. TRANS: Client error displayed when uploading a media file has failed. +msgid "Upload failed." +msgstr "Kargak huts egin du." + +#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. +msgid "Invalid request token or verifier." +msgstr "Token eskaera edo baieztatzaile okerra." + +#. TRANS: Client error given when no oauth_token was passed to the OAuth API. +msgid "No oauth_token parameter provided." +msgstr "Ez da oauth_token parametroa eman." + +#. TRANS: Client error given when an invalid request token was passed to the OAuth API. +msgid "Invalid request token." +msgstr "Token okerra." + +#. TRANS: Client error given when an invalid request token was passed to the OAuth API. +msgid "Request token already authorized." +msgstr "Token eskaera dagoeneko baimendua." + +#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API. +msgid "Invalid nickname / password!" +msgstr "Erabailtzaile / pasahitz okerra!" + +#. TRANS: Server error displayed when a database action fails. +msgid "Database error inserting oauth_token_association." +msgstr "Datu-base errorea oauth_token_association txertatzean." + +#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. +#. TRANS: Unexpected validation error on avatar upload form. +#. TRANS: Client error displayed submitting invalid form data for edit application. +#. TRANS: Message given submitting a form with an unknown action in e-mail settings. +#. TRANS: Form validation error message when an unsupported argument is used. +#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings. +#. TRANS: Client error displayed when encountering an unexpected action on form submission. +#. TRANS: Client error when submitting a form with unexpected information. +#. TRANS: Client error displayed when unexpected data is posted in the password recovery form. +#. TRANS: Message given submitting a form with an unknown action in SMS settings. +msgid "Unexpected form submission." +msgstr "Espero ez zen formularioaren bidalketa." + +#. TRANS: Title for a page where a user can confirm/deny account access by an external application. +msgid "An application would like to connect to your account" +msgstr "Aplikazio batek zure kontuarekin konektatu nahi du" + +#. TRANS: Fieldset legend. +msgid "Allow or deny access" +msgstr "Sarrera baimendu edo galarazi" + +#. TRANS: User notification of external application requesting account access. +#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename. +#, php-format +msgid "" +"An application would like the ability to %3$s your %4$s " +"account data. You should only give access to your %4$s account to third " +"parties you trust." +msgstr "" +"Aplikazio batek, %4$s(e)n duzun kontuko datuetan, ondoko eragiketa egin nahi " +"du: %3$s. Fidatzen zaren hirugarrenei bakarrik eman behar " +"zenieke sarrera %4$s(e)n duzun kontura." + +#. TRANS: User notification of external application requesting account access. +#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, +#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. +#, php-format +msgid "" +"The application %1$s by %2$s would like " +"the ability to %3$s your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" +"%2$s(r)en %1$s aplikazioak eskertuko luke " +"zure %4$s kontuko datuak %3$st(z)ea. Zure %4$s kontuko " +"datuak ikustea konfiantza handiko hirugarren parteei bakarrik baimendu behar " +"zenieke." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Account" +msgstr "Kontua" + +#. TRANS: Field label on OAuth API authorisation form. +#. TRANS: Field label in form for profile settings. +#. TRANS: Field label on account registration page. +#. TRANS: Label for nickname on user authorisation page. +#. TRANS: Field label on group edit form. +#. TRANS: Dropdown option for searching in profiles. +msgid "Nickname" +msgstr "Ezizena" + +#. TRANS: Field label on OAuth API authorisation form. +#. TRANS: Field label on login page. +#. TRANS: Field label on account registration page. +msgid "Password" +msgstr "Pasahitza" + +#. TRANS: Button text that when clicked will cancel the process of allowing access to an account +#. TRANS: by an external application. +#. TRANS: Button label to cancel an e-mail address confirmation procedure. +#. TRANS: Button label to cancel an IM address confirmation procedure. +#. TRANS: Button label to cancel a SMS address confirmation procedure. +#. TRANS: Button label in the "Edit application" form. +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Ezeztatu" + +#. TRANS: Button text that when clicked will allow access to an account by an external application. +msgctxt "BUTTON" +msgid "Allow" +msgstr "Baimendu" + +#. TRANS: Form instructions. +msgid "Authorize access to your account information." +msgstr "Sarbidea baimendu zure kontuko informaziora." + +#. TRANS: Header for user notification after revoking OAuth access to an application. +msgid "Authorization canceled." +msgstr "Baimena ezeztatua." + +#. TRANS: User notification after revoking OAuth access to an application. +#. TRANS: %s is an OAuth token. +#, php-format +msgid "The request token %s has been revoked." +msgstr "Eskatutako %s tokena kendu egin da." + +#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. +msgid "You have successfully authorized the application" +msgstr "Aplikazioa ondo baimendu duzu." + +#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. +msgid "" +"Please return to the application and enter the following security code to " +"complete the process." +msgstr "" +"Itzuli aplikaziora eta sartu ondoko segurtasun kodea prozesua osatzeko." + +#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. +#. TRANS: %s is the authorised application name. +#, php-format +msgid "You have successfully authorized %s" +msgstr "%s ondo baimendu duzu" + +#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. +#. TRANS: %s is the authorised application name. +#, php-format +msgid "" +"Please return to %s and enter the following security code to complete the " +"process." +msgstr "Itzuli %s(e)ra eta sartu ondoko segurtasun kodea prozesua osatzeko." + +#. TRANS: Client error displayed trying to delete a status not using POST or DELETE. +#. TRANS: POST and DELETE should not be translated. +msgid "This method requires a POST or DELETE." +msgstr "Metodo honek POST edo DELETE bat behar du." + +#. TRANS: Client error displayed trying to delete a status of another user. +msgid "You may not delete another user's status." +msgstr "Ezin duzu beste erabiltzaile baten egoera ezabatu." + +#. TRANS: Client error displayed trying to repeat a non-existing notice through the API. +#. TRANS: Client error displayed trying to display redents of a non-exiting notice. +#. TRANS: Client exception thrown when referencing a non-existing notice. +#. TRANS: Error message displayed trying to delete a non-existing notice. +#. TRANS: Client error displayed trying to show a non-existing notice. +msgid "No such notice." +msgstr "Mezu hori ez dago." + +#. TRANS: Client error displayed calling an unsupported HTTP error in API status show. +#. TRANS: Client exception thrown when using an unsupported HTTP method. +#. TRANS: Client exception thrown using an unsupported HTTP method. +#. TRANS: Client exception thrown when using an unsupported HTTP method. +#. TRANS: Client error shown when using a non-supported HTTP method. +#. TRANS: Client exception thrown when using an unsupported HTTP method. +msgid "HTTP method not supported." +msgstr "HTTP metodoa ez da onertzen." + +#. TRANS: Exception thrown requesting an unsupported notice output format. +#. TRANS: %s is the requested output format. +#, php-format +msgid "Unsupported format: %s." +msgstr "Formatu ez onartua: %s." + +#. TRANS: Client error displayed requesting a deleted status. +msgid "Status deleted." +msgstr "Egoera ezabatua." + +#. TRANS: Client error displayed requesting a status with an invalid ID. +msgid "No status with that ID found." +msgstr "Ez da egoerarik aurkitu ID horrekin." + +#. TRANS: Client error displayed when trying to delete a notice not using the Atom format. +msgid "Can only delete using the Atom format." +msgstr "Atom formatua erabiliz bakarrik ezabatu daiteke." + +#. TRANS: Client error displayed when a user has no rights to delete notices of other users. +#. TRANS: Error message displayed trying to delete a notice that was not made by the current user. +msgid "Cannot delete this notice." +msgstr "Mezua ezabatzea ezinezkoa izan da." + +#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice. +#, php-format +msgid "Deleted notice %d" +msgstr "%d mezua ezabatua" + +#. TRANS: Client error displayed when the parameter "status" is missing. +msgid "Client must provide a 'status' parameter with a value." +msgstr "Bezeroak 'status' parametro bat eman behar du balio batekin." + +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. +#. TRANS: Client error displayed when the parameter "status" is missing. +#. TRANS: %d is the maximum number of character for a notice. +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. +#, php-format +msgid "That's too long. Maximum notice size is %d character." +msgid_plural "That's too long. Maximum notice size is %d characters." +msgstr[0] "Hori luzeegia da. Mezuen luzeera gehienez karaktere %d da." +msgstr[1] "Hori luzeegia da. Mezuen luzeera gehienez %d karaktere dira." + +#. TRANS: Client error displayed when replying to a non-existing notice. +msgid "Parent notice not found." +msgstr "Mezuaren gurasoa ez da aurkitu." + +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum lenth for a notice. +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. +#, php-format +msgid "Maximum notice size is %d character, including attachment URL." +msgid_plural "Maximum notice size is %d characters, including attachment URL." +msgstr[0] "Hori luzeegia da. Mezuen luzeera gehienez karaktere %d da." +msgstr[1] "Hori luzeegia da. Mezuen luzeera gehienez %d karaktere dira." + +#. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. +#. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. +msgid "Unsupported format." +msgstr "Formatu ezezaguna." + +#. TRANS: Title for timeline of most recent favourite notices by a user. +#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s / %2$s(r)en gogokoak" + +#. TRANS: Subtitle for timeline of most recent favourite notices by a user. +#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, +#. TRANS: %3$s is a user nickname. +#, php-format +msgid "%1$s updates favorited by %2$s / %3$s." +msgstr "%1$s(e)n %2$s(e)k (%3$s) gogoko markatutako azken mezuak." + +#. TRANS: Server error displayed whe trying to get a timeline fails. +#. TRANS: %s is the error message. +#, php-format +msgid "Could not generate feed for list - %s" +msgstr "Taldearen jarioa ezin izan da sortu - %s" + +#. TRANS: Title for timeline of most recent mentions of a user. +#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / %2$s aipatzen duten azken mezuak" + +#. TRANS: Subtitle for timeline of most recent mentions of a user. +#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname, +#. TRANS: %3$s is a user's full name. +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "%1$s(e)n %2$s(r)en (%3$s) azken mezuei erantzuten dieten azken mezuak." + +#. TRANS: Title for site timeline. %s is the StatusNet sitename. +#. TRANS: Public RSS feed title. %s is the StatusNet site name. +#, php-format +msgid "%s public timeline" +msgstr "%s kronologia publikoa" + +#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. +#, php-format +msgid "%s updates from everyone!" +msgstr "%s(e)n denon artean bidalitako azken mezuak!" + +#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. +msgid "Unimplemented." +msgstr "Inplementatu gabea." + +#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. +#, php-format +msgid "Repeated to %s" +msgstr "%s(e)ra errepikatuta" + +#. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. +#. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. +#, php-format +msgid "%1$s notices that were to repeated to %2$s / %3$s." +msgstr "" + +#. TRANS: Title of list of repeated notices of the logged in user. +#. TRANS: %s is the nickname of the logged in user. +#, php-format +msgid "Repeats of %s" +msgstr "%s(r)en errepikapenak" + +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. +#, php-format +msgid "%1$s notices that %2$s / %3$s has repeated." +msgstr "" + +#. TRANS: Title for timeline with lastest notices with a given tag. +#. TRANS: %s is the tag. +#. TRANS: Title for first page of notices with tags. +#. TRANS: %s is the tag. +#, php-format +msgid "Notices tagged with %s" +msgstr "%s(r)ekin etiketatutako mezuak" + +#. TRANS: Subtitle for timeline with lastest notices with a given tag. +#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s(e)n %1$s etiketarekin bidalitako azken mezuak!" + +#. TRANS: Client error displayed trying to add a notice to another user's timeline. +msgid "Only the user can add to their own timeline." +msgstr "Erabiltzaileak berak bakarrik gehitu dezake bere kronologiari." + +#. TRANS: Client error displayed when using another format than AtomPub. +msgid "Only accept AtomPub for Atom feeds." +msgstr "AtomPub bakarrik onartu Atom-eko jarioetzat." + +#. TRANS: Client error displayed attempting to post an empty API notice. +msgid "Atom post must not be empty." +msgstr "Atom bidalketa ezin da hutsik egon." + +#. TRANS: Client error displayed attempting to post an API that is not well-formed XML. +msgid "Atom post must be well-formed XML." +msgstr "Atom bidalketa ondo formatutako XMLa izan behar da." + +#. TRANS: Client error displayed when not using an Atom entry. +msgid "Atom post must be an Atom entry." +msgstr "Atom bidalketa Atom sarrera bat izan behar da." + +#. TRANS: Client error displayed when not using the POST verb. Do not translate POST. +msgid "Can only handle POST activities." +msgstr "POST jarduerak bakarrik kudeatu daitezke." + +#. TRANS: Client error displayed when using an unsupported activity object type. +#. TRANS: %s is the unsupported activity object type. +#, php-format +msgid "Cannot handle activity object type \"%s\"." +msgstr "" + +#. TRANS: Client error displayed when posting a notice without content through the API. +#. TRANS: %d is the notice ID (number). +#, php-format +msgid "No content for notice %d." +msgstr "%d mezuak ez du edukirik." + +#. TRANS: Client error displayed when using another format than AtomPub. +#. TRANS: %s is the notice URI. +#, php-format +msgid "Notice with URI \"%s\" already exists." +msgstr "\"%s\" URIdun mezua dagoeneko badago." + +#. TRANS: Server error for unfinished API method showTrends. +msgid "API method under construction." +msgstr "APIko metodoa eraikitzen dago." + +#. TRANS: Client error displayed when requesting user information for a non-existing user. +msgid "User not found." +msgstr "Erabiltzailea ez da aurkitu." + +#. TRANS: Client error displayed when trying to leave a group while not logged in. +msgid "You must be logged in to leave a group." +msgstr "Saioa hasi behar duzu taldea uzteko." + +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client exception thrown when referencing a non-existing group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error when trying to delete a non-local group. +#. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. +#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. +#. TRANS: Client error displayed when trying to update logo settings for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for an object that is not a group. +#. TRANS: Client error displayed when trying to view group members for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for an object that is not a group. +#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist. +#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed when trying to join a non-local group. +#. TRANS: Client error displayed when trying to join a non-existing group. +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed when providing an invalid group ID on the Make Admin page. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. +#. TRANS: Command exception text shown when a group is requested that does not exist. +#. TRANS: Error text shown when trying to leave a group that does not exist. +msgid "No such group." +msgstr "Talde hori ez dago." + +#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. +#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group. +#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID. +#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. +msgid "No nickname or ID." +msgstr "Erabiltzaile izen edo IDrik ez." + +#. TRANS: Client error displayed trying to approve group membership while not logged in. +#. TRANS: Client error displayed when trying to leave a group while not logged in. +msgid "Must be logged in." +msgstr "Saioa hasi behar duzu." + +#. TRANS: Client error displayed trying to approve group membership while not a group administrator. +#. TRANS: Client error displayed when trying to approve or cancel a group join request without +#. TRANS: being a group administrator. +msgid "Only group admin can approve or cancel join requests." +msgstr "" + +#. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. +msgid "Must specify a profile." +msgstr "" + +#. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. +#. TRANS: Client error displayed when trying to approve a non-existing group join request. +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s is not in the moderation queue for this group." +msgstr "" + +#. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. +msgid "Internal error: received neither cancel nor abort." +msgstr "" + +#. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription +msgid "Internal error: received both cancel and abort." +msgstr "" + +#. TRANS: Server error displayed when cancelling a queued group join request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. +#, php-format +msgid "Could not cancel request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for leave group page after group join request is approved/disapproved. +#. TRANS: %1$s is the user nickname, %2$s is the group nickname. +#, php-format +msgctxt "TITLE" +msgid "%1$s's request for %2$s" +msgstr "" + +#. TRANS: Message on page for group admin after approving a join request. +msgid "Join request approved." +msgstr "" + +#. TRANS: Message on page for group admin after rejecting a join request. +msgid "Join request canceled." +msgstr "" + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "" + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "" + +#. TRANS: Subtitle for Atom favorites feed. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "Notices %1$s has favorited on %2$s" +msgstr "%2$s(e)n %1$s(e)k gogoko markatutako mezuak" + +#. TRANS: Client exception thrown when trying to set a favorite for another user. +#. TRANS: Client exception thrown when trying to subscribe another user. +msgid "Cannot add someone else's subscription." +msgstr "Ezin duzu beste baten harpidetza gehitu." + +#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. +msgid "Can only handle favorite activities." +msgstr "Gogokoen jarduerak bakarrik kudeatu daitezke." + +#. TRANS: Client exception thrown when trying favorite an object that is not a notice. +msgid "Can only fave notices." +msgstr "Mezuak bakarrik egin daitezke gogoko." + +#. TRANS: Client exception thrown when trying favorite a notice without content. +msgid "Unknown notice." +msgstr "Mezu ezezaguna." + +#. TRANS: Client exception thrown when trying favorite an already favorited notice. +msgid "Already a favorite." +msgstr "Dagoeneko gogokoa." + +#. TRANS: Title for group membership feed. +#. TRANS: %s is a username. +#, php-format +msgid "Group memberships of %s" +msgstr "" + +#. TRANS: Subtitle for group membership feed. +#. TRANS: %1$s is a username, %2$s is the StatusNet sitename. +#, php-format +msgid "Groups %1$s is a member of on %2$s" +msgstr "Groups %1$s is a member of on %2$s" + +#. TRANS: Client exception thrown when trying subscribe someone else to a group. +msgid "Cannot add someone else's membership." +msgstr "Ezin duzu beste baten harpidetza gehitu." + +#. TRANS: Client error displayed when not using the join verb. +msgid "Can only handle join activities." +msgstr "Batuera jarduerak bakarrik kideatu daitezke." + +#. TRANS: Client exception thrown when trying to subscribe to a non-existing group. +msgid "Unknown group." +msgstr "Talde ezezaguna" + +#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. +msgid "Already a member." +msgstr "Dagoeneko kidea zara." + +#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. +msgid "Blocked by admin." +msgstr "Administrariak blokeatua." + +#. TRANS: Client exception thrown when referencing a non-existing favorite. +msgid "No such favorite." +msgstr "Gogoko hori ez dago." + +#. TRANS: Client exception thrown when trying to remove a favorite notice of another user. +msgid "Cannot delete someone else's favorite." +msgstr "Ezin duzu beste baten gogokoa ezabatu." + +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +msgid "Not a member." +msgstr "Ez zara kidea." + +#. TRANS: Client exception thrown when deleting someone else's membership. +msgid "Cannot delete someone else's membership." +msgstr "Ezin duzu beste baten harpidetza ezabatu." + +#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. +#. TRANS: %d is the non-existing profile ID number. +#, php-format +msgid "No such profile id: %d." +msgstr "Ez dago profil horren IDrik: %d." + +#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. +#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. +#, php-format +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "%1$d profila ez dago %2$d profilera harpidetuta." + +#. TRANS: Client exception thrown when trying to delete a subscription of another user. +msgid "Cannot delete someone else's subscription." +msgstr "Ezin duzu beste baten harpidetza ezabatu." + +#. TRANS: Subtitle for Atom subscription feed. +#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. +#, php-format +msgid "People %1$s has subscribed to on %2$s" +msgstr "%2$s(e)n %1$s(e)k jarraitzen duen jendea" + +#. TRANS: Client error displayed when not using the follow verb. +msgid "Can only handle Follow activities." +msgstr "Jarraipen jarduerak bakarrik kudeatu daitezke." + +#. TRANS: Client exception thrown when subscribing to an object that is not a person. +msgid "Can only follow people." +msgstr "Jendea bakarrik jarraitu daiteke." + +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#. TRANS: %s is the unknown profile ID. +#, php-format +msgid "Unknown profile %s." +msgstr "%s profil ezezaguna." + +#. TRANS: Client error displayed trying to subscribe to an already subscribed profile. +#. TRANS: %s is the profile the user already has a subscription on. +#, php-format +msgid "Already subscribed to %s." +msgstr "Dagoeneko %s(e)ra harpidetuta." + +#. TRANS: Client error displayed trying to get a non-existing attachment. +msgid "No such attachment." +msgstr "Eranskin hori ez dago." + +#. TRANS: Client error displayed trying to get an avatar without providing a nickname. +#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. +#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. +#. TRANS: Client error displayed when trying to view group members without providing a group nickname. +#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. +#. TRANS: Client error displayed if no nickname argument was given requesting a group page. +msgid "No nickname." +msgstr "Erabiltzaile izenik ez." + +#. TRANS: Client error displayed trying to get an avatar without providing an avatar size. +msgid "No size." +msgstr "Tamainarik ez." + +#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. +msgid "Invalid size." +msgstr "Tamaina okerra." + +#. TRANS: Title for avatar upload page. +msgid "Avatar" +msgstr "Avatarra" + +#. TRANS: Instruction for avatar upload page. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Zure avatarra igo dezakezu. Fitxategiaren gehienezko tamaina %s da." + +#. TRANS: Avatar upload page form legend. +#. TRANS: Avatar upload page crop form legend. +#. TRANS: Legend for group logo settings fieldset. +msgid "Avatar settings" +msgstr "Avatar ezarpenak" + +#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). +#. TRANS: Uploaded original file in group logo form. +#. TRANS: Header for originally uploaded file before a crop on the group logo page. +msgid "Original" +msgstr "Jatorrizkoa" + +#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). +#. TRANS: Header for preview of to be displayed group logo. +#. TRANS: Header for the cropped group logo on the group logo page. +msgid "Preview" +msgstr "Aurrikusi" + +#. TRANS: Button on avatar upload page to delete current avatar. +#. TRANS: Button text for user account deletion. +#. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. +#. TRANS: Button text to delete a list. +msgctxt "BUTTON" +msgid "Delete" +msgstr "Ezabatu" + +#. TRANS: Button on avatar upload page to upload an avatar. +#. TRANS: Submit button to confirm upload of a user backup file for account restore. +msgctxt "BUTTON" +msgid "Upload" +msgstr "Igo" + +#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. +msgctxt "BUTTON" +msgid "Crop" +msgstr "Moztu" + +#. TRANS: Validation error on avatar upload form when no file was uploaded. +msgid "No file uploaded." +msgstr "Ez da fitxategirik igo." + +#. TRANS: Avatar upload form instruction after uploading a file. +msgid "Pick a square area of the image to be your avatar." +msgstr "Zure avatarraren eramua laukiaren bidez mugatu." + +#. TRANS: Server error displayed if an avatar upload went wrong somehow server side. +#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. +msgid "Lost our file data." +msgstr "Datuen fitxategia galdu dugu." + +#. TRANS: Success message for having updated a user avatar. +msgid "Avatar updated." +msgstr "Avatarra eguneratua." + +#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. +msgid "Failed updating avatar." +msgstr "Avatarraren eguneraketak huts egin du." + +#. TRANS: Success message for deleting a user avatar. +msgid "Avatar deleted." +msgstr "Avatarra ezabatua." + +#. TRANS: Title for backup account page. +#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. +msgid "Backup account" +msgstr "Backup kontua" + +#. TRANS: Client exception thrown when trying to backup an account while not logged in. +msgid "Only logged-in users can backup their account." +msgstr "" +"Saioa hasi duten erabiltzaileek bakarrik egin dezakete bere kontuaren " +"segurtasun kopia." + +#. TRANS: Client exception thrown when trying to backup an account without having backup rights. +msgid "You may not backup your account." +msgstr "Ezin duzu zure kontuaren segurtasun kopiarik egin." + +#. TRANS: Information displayed on the backup account page. +msgid "" +"You can backup your account data in Activity Streams format. This is an experimental feature and provides " +"an incomplete backup; private account information like email and IM " +"addresses is not backed up. Additionally, uploaded files and direct messages " +"are not backed up." +msgstr "" + +#. TRANS: Submit button to backup an account on the backup account page. +msgctxt "BUTTON" +msgid "Backup" +msgstr "Segurtasun kopia" + +#. TRANS: Title for submit button to backup an account on the backup account page. +msgid "Backup your account." +msgstr "Backup your account." + +#. TRANS: Client error displayed when blocking a user that has already been blocked. +msgid "You already blocked that user." +msgstr "You already blocked that user." + +#. TRANS: Title for block user page. +#. TRANS: Legend for block user form. +#. TRANS: Fieldset legend for block user from group form. +msgid "Block user" +msgstr "Blokeatu erabiltzailea" + +#. TRANS: Explanation of consequences when blocking a user on the block user page. +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Ziur zaude erabiltzaile hau blokeatu nahi duzula? Ondoren, berak zurekiko " +"duen harpidetza ezeztuko da, ezin izango zaitu etorkizunean idatzi eta ez " +"zaizkizu jakinaraziko bere @ erantzunak." + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete group form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +msgctxt "BUTTON" +msgid "No" +msgstr "Ez" + +#. TRANS: Submit button title for 'No' when blocking a user. +msgid "Do not block this user." +msgstr "Ez blokeatu erabiltzaile hau." + +#. TRANS: Button label on the user block form. +#. TRANS: Button label on the delete application form. +#. TRANS: Button label on the delete group form. +#. TRANS: Button label on the delete notice form. +#. TRANS: Button label on the delete user form. +#. TRANS: Button label on the form to block a user from a group. +#. TRANS: Button text to repeat a notice on notice repeat form. +msgctxt "BUTTON" +msgid "Yes" +msgstr "Bai" + +#. TRANS: Submit button title for 'Yes' when blocking a user. +msgid "Block this user." +msgstr "Blokeatu erabiltzaile hau." + +#. TRANS: Server error displayed when blocking a user fails. +msgid "Failed to save block information." +msgstr "" + +#. TRANS: Title for first page with list of users blocked from a group. +#. TRANS: %s is a group nickname. +#, php-format +msgid "%s blocked profiles" +msgstr "%s profil blokeatuta" + +#. TRANS: Title for any but the first page with list of users blocked from a group. +#. TRANS: %1$s is a group nickname, %2$d is a page number. +#, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%1$s profil bokeatuta, %2$d orrialdea" + +#. TRANS: Instructions for list of users blocked from a group. +msgid "A list of the users blocked from joining this group." +msgstr "Talde honetan batzea blokeatuta duten erabiltzaileen zerrenda." + +#. TRANS: Form legend for unblocking a user from a group. +msgid "Unblock user from group" +msgstr "Desblokeatu erabiltzailea taldean" + +#. TRANS: Button text for unblocking a user from a group. +msgctxt "BUTTON" +msgid "Unblock" +msgstr "Desblokeatu" + +#. TRANS: Tooltip for button for unblocking a user from a group. +#. TRANS: Description of the form to unblock a user. +msgid "Unblock this user" +msgstr "Desblokeatu erabiltzaile hau" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "Post to %s" +msgstr "Idatzi %s(r)i" + +#. TRANS: Title for leave group page after leaving. +#. TRANS: %s$s is the leaving user's name, %2$s is the group name. +#. TRANS: Title for leave group page after leaving. +#, php-format +msgctxt "TITLE" +msgid "%1$s left group %2$s" +msgstr "" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed when referring to non-existing profile ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "" + +#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. +msgid "No confirmation code." +msgstr "Baieztapen koderik ez." + +#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. +msgid "Confirmation code not found." +msgstr "Ez da baieztapen koderik aurkitu." + +#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. +msgid "That confirmation code is not for you!" +msgstr "Baieztapen kode hori ez da zuretzat!" + +#. TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim') +#, php-format +msgid "Unrecognized address type %s" +msgstr "%s helbide mota ez da ezagutzen." + +#. TRANS: Client error for an already confirmed email/jabber/sms address. +#. TRANS: Client error for an already confirmed IM address. +msgid "That address has already been confirmed." +msgstr "Helbide hori dagoeneko baieztatu da." + +#. TRANS: Server error displayed when updating IM preferences fails. +#. TRANS: Server error thrown on database error removing a registered IM address. +msgid "Could not update user IM preferences." +msgstr "" + +#. TRANS: Server error displayed when adding IM preferences fails. +msgid "Could not insert user IM preferences." +msgstr "" + +#. TRANS: Server error displayed when an address confirmation code deletion from the +#. TRANS: database fails in the contact address confirmation action. +msgid "Could not delete address confirmation." +msgstr "Ezin izan da helbide baieztapena ezabatu." + +#. TRANS: Title for the contact address confirmation action. +msgid "Confirm address" +msgstr "Helbidea baieztatu" + +#. TRANS: Success message for the contact address confirmation action. +#. TRANS: %s can be 'email', 'jabber', or 'sms'. +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "\"%s\" helbidea baieztatua izan da zure kontuarentzako." + +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Elkarrizketa" + +#. TRANS: Title for conversation page. +#. TRANS: Title for page that shows a notice. +msgctxt "TITLE" +msgid "Notice" +msgstr "Mezua" + +#. TRANS: Client exception displayed trying to delete a user account while not logged in. +msgid "Only logged-in users can delete their account." +msgstr "Saioa hasitako erabiltzaileek bakarrik ezabatu dezakete bere kontua." + +#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. +msgid "You cannot delete your account." +msgstr "Ezin duzu zure kontua ezabatu." + +#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. +msgid "I am sure." +msgstr "Ziur nago." + +#. TRANS: Notification for user about the text that must be input to be able to delete a user account. +#. TRANS: %s is the text that needs to be input. +#, php-format +msgid "You must write \"%s\" exactly in the box." +msgstr "Kutxan zehazki \"%s\" idatzi behar duzu." + +#. TRANS: Confirmation that a user account has been deleted. +msgid "Account deleted." +msgstr "Kontua ezabatua." + +#. TRANS: Page title for page on which a user account can be deleted. +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +msgid "Delete account" +msgstr "Ezabatu kontua" + +#. TRANS: Form text for user deletion form. +msgid "" +"This will permanently delete your account data from this " +"server." +msgstr "" +"Honek zure kontua behin betiko ezabatuko du zerbitzari " +"honetatik." + +#. TRANS: Additional form text for user deletion form shown if a user has account backup rights. +#. TRANS: %s is a URL to the backup page. +#, php-format +msgid "" +"You are strongly advised to back up your data before " +"deletion." +msgstr "" +"Ezabaketaren aurretik zure datuen segurtasun kopia egin " +"dezazun biziki gomendatzen da." + +#. TRANS: Field label for delete account confirmation entry. +#. TRANS: Field label for password reset form where the password has to be typed again. +msgid "Confirm" +msgstr "Berretsi" + +#. TRANS: Input title for the delete account field. +#. TRANS: %s is the text that needs to be input. +#, php-format +msgid "Enter \"%s\" to confirm that you want to delete your account." +msgstr "Sartu \"%s\" zure kontua ezabatu nahi duzula baieztatzeko." + +#. TRANS: Button title for user account deletion. +msgid "Permanently delete your account" +msgstr "Zure kontua behin betiko ezabatu" + +#. TRANS: Client error displayed trying to delete an application while not logged in. +msgid "You must be logged in to delete an application." +msgstr "Aplikazio bat ezabatzeko saioa hasi behar duzu." + +#. TRANS: Client error displayed trying to delete an application that does not exist. +msgid "Application not found." +msgstr "Ez da aplikazioa aurkitu." + +#. TRANS: Client error displayed trying to delete an application the current user does not own. +#. TRANS: Client error displayed trying to edit an application while not being its owner. +#. TRANS: Client error displayed trying to display an OAuth application for which the logged in user is not the owner. +msgid "You are not the owner of this application." +msgstr "Ez zara aplikazio honen jabea." + +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Client error text when there is a problem with the session token. +msgid "There was a problem with your session token." +msgstr "Zure saioko tokenarekin arazo bat egon da." + +#. TRANS: Title for delete application page. +#. TRANS: Fieldset legend on delete application page. +msgid "Delete application" +msgstr "Ezabatu aplikazioa" + +#. TRANS: Confirmation text on delete application page. +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" +"Ziur zaude aplikazioa ezabatu nahi duzula? Aplikazioko datu guztiak " +"ezabatuko dira datu-basetik, erabiltzaile-konexioak barne." + +#. TRANS: Submit button title for 'No' when deleting an application. +msgid "Do not delete this application." +msgstr "Ez ezabatu aplikazio hau." + +#. TRANS: Submit button title for 'Yes' when deleting an application. +msgid "Delete this application." +msgstr "Ezabatu aplikazio hau." + +#. TRANS: Client error when trying to delete group while not logged in. +msgid "You must be logged in to delete a group." +msgstr "Saioa hasi behar duzu talde bat ezabatzeko." + +#. TRANS: Client error when trying to delete a group without having the rights to delete it. +msgid "You are not allowed to delete this group." +msgstr "Ez duzu talde hau ezabatzeko baimenik." + +#. TRANS: Server error displayed if a group could not be deleted. +#. TRANS: %s is the name of the group that could not be deleted. +#, php-format +msgid "Could not delete group %s." +msgstr "%s taldea ezin izan da ezabatu." + +#. TRANS: Message given after deleting a group. +#. TRANS: %s is the deleted group's name. +#, php-format +msgid "Deleted group %s" +msgstr "%s taldea ezabatu" + +#. TRANS: Title of delete group page. +#. TRANS: Form legend for deleting a group. +msgid "Delete group" +msgstr "Taldea ezabatu" + +#. TRANS: Warning in form for deleleting a group. +msgid "" +"Are you sure you want to delete this group? This will clear all data about " +"the group from the database, without a backup. Public posts to this group " +"will still appear in individual timelines." +msgstr "" +"Ziur zaude erabiltzaile hau ezabatu nahi duzula? Erabiltzaile honen " +"informazio guztia ezabatuko da datu-basetik, atzera egiteko aukerarik gabe. " +"Talde honen mezu publikoak bakoitzaren kronologiatan agertuko dita." + +#. TRANS: Submit button title for 'No' when deleting a group. +msgid "Do not delete this group." +msgstr "Ez ezabatu talde hau." + +#. TRANS: Submit button title for 'Yes' when deleting a group. +msgid "Delete this group." +msgstr "Ezabatu talde hau." + +#. TRANS: Instructions for deleting a notice. +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Mezu bat behin-betiko ezabatzera zoaz. Hau egin ondoren, ezingo duzu desegin." + +#. TRANS: Page title when deleting a notice. +#. TRANS: Fieldset legend for the delete notice form. +msgid "Delete notice" +msgstr "Mezua ezabatu" + +#. TRANS: Message for the delete notice form. +msgid "Are you sure you want to delete this notice?" +msgstr "Ziur zaude mezu hau ezabatu nahi duzula?" + +#. TRANS: Submit button title for 'No' when deleting a notice. +msgid "Do not delete this notice." +msgstr "Ez ezabatu mezu hau." + +#. TRANS: Submit button title for 'Yes' when deleting a notice. +msgid "Delete this notice." +msgstr "Ezabatu mezu hau." + +#. TRANS: Client error displayed when trying to delete a user without having the right to delete users. +msgid "You cannot delete users." +msgstr "You cannot delete users." + +#. TRANS: Client error displayed when trying to delete a non-local user. +msgid "You can only delete local users." +msgstr "Ezin duzu erabiltzailerik ezabatu." + +#. TRANS: Title of delete user page. +msgctxt "TITLE" +msgid "Delete user" +msgstr "Erabiltzailea ezabatu" + +#. TRANS: Fieldset legend on delete user page. +msgid "Delete user" +msgstr "Erabiltzailea ezabatu" + +#. TRANS: Information text to request if a user is certain that the described action has to be performed. +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" +"Ziur zaude erabiltzaile hau ezabatu nahi duzula? Erabiltzaile honen " +"informazio guztia ezabatuko da datu-basetik, atzera egiteko aukerarik gabe." + +#. TRANS: Submit button title for 'No' when deleting a user. +msgid "Do not delete this user." +msgstr "Ez ezabatu erabiltzaile hau." + +#. TRANS: Submit button title for 'Yes' when deleting a user. +msgid "Delete this user." +msgstr "Ezabatu erabiltzaile hau." + +#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. +msgid "This notice is not a favorite!" +msgstr "Mezu hau ez da gogoko bat!" + +#. TRANS: Title for page on which favorites can be added. +msgid "Add to favorites" +msgstr "Gehitu gogokoetara" + +#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. +#. TRANS: %s is the non-existing document. +#, php-format +msgid "No such document \"%s\"." +msgstr "\"%s\" dokumentua ez dago." + +#. TRANS: Title for "Edit application" form. +#. TRANS: Form legend. +msgid "Edit application" +msgstr "Editatu aplikazioa" + +#. TRANS: Client error displayed trying to edit an application while not logged in. +msgid "You must be logged in to edit an application." +msgstr "Saioa hasi behar duzu aplikazio bat editatzeko." + +#. TRANS: Client error displayed trying to edit an application that does not exist. +#. TRANS: Client error displayed trying to display a non-existing OAuth application. +msgid "No such application." +msgstr "Aplikazio hori ez dago." + +#. TRANS: Instructions for "Edit application" form. +msgid "Use this form to edit your application." +msgstr "Erabili formulario hau zure aplikazioa editatzeko." + +#. TRANS: Validation error shown when not providing a name in the "Edit application" form. +#. TRANS: Validation error shown when not providing a name in the "New application" form. +msgid "Name is required." +msgstr "Izena beharrezkoa da." + +#. TRANS: Validation error shown when providing too long a name in the "Edit application" form. +#. TRANS: Validation error shown when providing too long a name in the "New application" form. +msgid "Name is too long (maximum 255 characters)." +msgstr "Izena luzeegia da (gehienez 255 karaktere)." + +#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form. +#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form. +msgid "Name already in use. Try another one." +msgstr "Izena beste norbaitek dauka. Saiatu beste batekin." + +#. TRANS: Validation error shown when not providing a description in the "Edit application" form. +#. TRANS: Validation error shown when not providing a description in the "New application" form. +msgid "Description is required." +msgstr "Deskribapena beharrezkoa da." + +#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. +msgid "Source URL is too long." +msgstr "Iturburu URLa luzeegia da." + +#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form. +#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form. +msgid "Source URL is not valid." +msgstr "Iturburu URLa ez da baliozkoa." + +#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form. +#. TRANS: Validation error shown when not providing an organisation in the "New application" form. +msgid "Organization is required." +msgstr "Erakundea beharrezkoa da." + +#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. +msgid "Organization is too long (maximum 255 characters)." +msgstr "Erakundea luzeegia da (gehienez 255 karaktere)." + +#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. +#. TRANS: Form validation error show when an organisation name has not been provided in the new application form. +msgid "Organization homepage is required." +msgstr "Erakundearen hasiera-orria derrigorrezkoa da." + +#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. +#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. +msgid "Callback is too long." +msgstr "Callback-a luzeegia da." + +#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form. +#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form. +msgid "Callback URL is not valid." +msgstr "Callback URLa ez da baliozkoa." + +#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. +msgid "Could not update application." +msgstr "Ezin da aplikazioa eguneratu." + +#. TRANS: Title for form to edit a group. %s is a group nickname. +#, php-format +msgid "Edit %s group" +msgstr "Editatu %s taldea" + +#. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed when trying to create a group while not logged in. +#. TRANS: Client error displayed trying to create a group while not logged in. +msgid "You must be logged in to create a group." +msgstr "Talde bat sortzeko saioa hasi behar duzu." + +#. TRANS: Form instructions for group edit form. +msgid "Use this form to edit the group." +msgstr "Erabili inprimaki hau taldea aldatzeko." + +#. TRANS: Group edit form validation error. +#. TRANS: Group create form validation error. +#. TRANS: %s is the invalid alias. +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias okerra: \"%s\"" + +#. TRANS: Group edit form success message. +#. TRANS: Edit list form success message. +msgid "Options saved." +msgstr "Aukerak gordeta." + +#. TRANS: Title for edit list page after deleting a tag. +#. TRANS: %s is a list. +#, php-format +msgid "Delete %s list" +msgstr "" + +#. TRANS: Title for edit list page. +#. TRANS: %s is a list. +#. TRANS: Form legend for list edit form. +#. TRANS: %s is a list. +#, php-format +msgid "Edit list %s" +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. +msgid "No tagger or ID." +msgstr "" + +#. TRANS: Client error displayed when referring to non-local user. +msgid "Not a local user." +msgstr "" + +#. TRANS: Client error displayed when reting to edit a tag that was not self-created. +msgid "You must be the creator of the tag to edit it." +msgstr "" + +#. TRANS: Form instruction for edit list form. +msgid "Use this form to edit the list." +msgstr "" + +#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. +msgid "Delete aborted." +msgstr "" + +#. TRANS: Text in confirmation dialog for deleting a tag. +msgid "" +"Deleting this tag will permanantly remove all its subscription and " +"membership records. Do you still want to continue?" +msgstr "" + +#. TRANS: Form validation error displayed if a given tag is invalid. +msgid "Invalid tag." +msgstr "" + +#. TRANS: Form validation error displayed if a given tag is already present. +#. TRANS: %s is the already present tag. +#, php-format +msgid "You already have a tag named %s." +msgstr "" + +#. TRANS: Text in confirmation dialog for setting a tag from public to private. +msgid "" +"Setting a public tag as private will permanently remove all the existing " +"subscriptions to it. Do you still want to continue?" +msgstr "" + +#. TRANS: TRANS: Server error displayed when updating a list fails. +msgid "Could not update list." +msgstr "" + +#. TRANS: Title for e-mail settings. +msgid "Email settings" +msgstr "Posta elektronikoaren ezarpenak" + +#. TRANS: E-mail settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Kudeatu nola jasoko duzun posta elektronikoa %%site.name%% gunetik." + +#. TRANS: Form legend for e-mail settings form. +#. TRANS: Field label for e-mail address input in e-mail settings form. +msgid "Email address" +msgstr "Eposta helbidea" + +#. TRANS: Form note in e-mail settings form. +msgid "Current confirmed email address." +msgstr "Berretsitako uneko helbide elektronikoa." + +#. TRANS: Button label to remove a confirmed e-mail address. +#. TRANS: Button label for removing a set sender e-mail address to post notices from. +#. TRANS: Button label to remove a confirmed IM address. +#. TRANS: Button label to remove a confirmed SMS address. +#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. +#. TRANS: Button text to untag a profile. +msgctxt "BUTTON" +msgid "Remove" +msgstr "Kendu" + +#. TRANS: Form note in e-mail settings form. +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Helbide honen berrespenaren zain. Egiaztatu sarrera-ontzia (baita spam-" +"ontzia ere!) argibideak dituen mezua irakurtzeko." + +#. TRANS: Instructions for e-mail address input form. Do not translate +#. TRANS: "example.org". It is one of the domain names reserved for +#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. +#. TRANS: Any other domain may be owned by a legitimate person or +#. TRANS: organization. +msgid "Email address, like \"UserName@example.org\"" +msgstr "Helbide elektronikoa, adibidez \"erabiltzailea@adibidea.org\"" + +#. TRANS: Button label for adding an e-mail address in e-mail settings form. +#. TRANS: Button label for adding an IM address in IM settings form. +#. TRANS: Button label for adding a SMS phone number in SMS settings form. +#. TRANS: Button text to tag a profile. +msgctxt "BUTTON" +msgid "Add" +msgstr "Gehitu" + +#. TRANS: Form legend for incoming e-mail settings form. +#. TRANS: Form legend for incoming SMS settings form. +msgid "Incoming email" +msgstr "Jasotzeko posta elektronikoa" + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "I want to post notices by email." +msgstr "Mezuak bidali nahi ditut posta elektroniko bitartez." + +#. TRANS: Form instructions for incoming e-mail form in e-mail settings. +#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. +msgid "Send email to this address to post new notices." +msgstr "Bidali mezu elektronikoak helbide honetara mezu berriak argitaratzeko." + +#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned. +#. TRANS: Instructions for incoming SMS e-mail address input form. +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" +"Sortu bidalketetarako helbide elektroniko berria; zaharra bertan behera " +"uzten du." + +#. TRANS: Instructions for incoming e-mail address input form. +msgid "" +"To send notices via email, we need to create a unique email address for you " +"on this server:" +msgstr "" +"Posta elektroniko bidez mezuak argitaratu ahal izateko, helbide elektroniko " +"bakarra sortu beharra daukagu zerbitzari honetan:" + +#. TRANS: Button label for adding an e-mail address to send notices from. +#. TRANS: Button label for adding an SMS e-mail address to send notices from. +msgctxt "BUTTON" +msgid "New" +msgstr "Berria" + +#. TRANS: Form legend for e-mail preferences form. +msgid "Email preferences" +msgstr "Helbide elektronikoaren hobespenak" + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me notices of new subscriptions through email." +msgstr "Harpidetza berrien mezuak posta-e bitartez jaso nahi ditut." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Norbaitek nire mezu bat gogoko bezala gehitzen duenean posta-e mezu bat jaso " +"nahi dut." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me email when someone sends me a private message." +msgstr "" +"Norbaitek mezu pribatu bat bidaltzen didanean posta-e mezu bat jaso nahi dut." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Norbaitek @ erantzun bat bidaltzen didanean posta-e mezu bat jaso nahi dut." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Allow friends to nudge me and send me an email." +msgstr "Lagunak ni zirikatzen eta mezu elektronikoak bidaltzen baimendu." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Publish a MicroID for my email address." +msgstr "Argitaratu nire posta-e helbidearentzako MikroID bat." + +#. TRANS: Confirmation message for successful e-mail preferences save. +msgid "Email preferences saved." +msgstr "Posta-e hobespenak gordeak." + +#. TRANS: Message given saving e-mail address without having provided one. +msgid "No email address." +msgstr "Posta-e helbidea falta da." + +#. TRANS: Message given saving e-mail address that cannot be normalised. +msgid "Cannot normalize that email address." +msgstr "Ezin da posta-e helbidea normaldu." + +#. TRANS: Message given saving e-mail address that not valid. +#. TRANS: Form validation error displayed when trying to register without a valid e-mail address. +#. TRANS: Client error displayed trying to save site settings without a valid contact address. +msgid "Not a valid email address." +msgstr "Posta-e helbidea okerra da." + +#. TRANS: Message given saving e-mail address that is already set. +msgid "That is already your email address." +msgstr "" + +#. TRANS: Message given saving e-mail address that is already set for another user. +msgid "That email address already belongs to another user." +msgstr "Posta-e helbide hori dagoeneko beste erabiltzaile batek hartu du." + +#. TRANS: Server error thrown on database error adding e-mail confirmation code. +#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. +#. TRANS: Server error thrown on database error adding SMS confirmation code. +msgid "Could not insert confirmation code." +msgstr "Baieztapen kodea ezin izan da txertatu." + +#. TRANS: Message given saving valid e-mail address that is to be confirmed. +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Gehitu duzun posta-e helbidera baieztapen kode bat bidali da. Aztertu zure " +"sarrera-ontzia (baita spam-ontzia ere!) kodea eta jarraibideakk dituen " +"mezuaren bila." + +#. TRANS: Message given canceling e-mail address confirmation that is not pending. +#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. +#. TRANS: Message given canceling SMS phone number confirmation that is not pending. +msgid "No pending confirmation to cancel." +msgstr "Ez dago baieztapenik ezeztatzeko." + +#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. +msgid "That is the wrong email address." +msgstr "Posta-e helbide hori okerrekoa da." + +#. TRANS: Server error thrown on database error canceling e-mail address confirmation. +msgid "Could not delete email confirmation." +msgstr "Ezin izan da e-posta baieztapena ezabatu." + +#. TRANS: Message given after successfully canceling e-mail address confirmation. +msgid "Email confirmation cancelled." +msgstr "Posta-e baieztapena ezeztatua." + +#. TRANS: Message given trying to remove an e-mail address that is not +#. TRANS: registered for the active user. +msgid "That is not your email address." +msgstr "Hau ez da zure posta-e helbidea.\"" + +#. TRANS: Message given after successfully removing a registered e-mail address. +msgid "The email address was removed." +msgstr "Posta-e helbidea ezabatua izan da." + +#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. +msgid "No incoming email address." +msgstr "Ez dago sarrerako posta-e helbiderik." + +#. TRANS: Server error thrown on database error removing incoming e-mail address. +#. TRANS: Server error thrown on database error adding incoming e-mail address. +#. TRANS: Server error displayed when the user could not be updated in SMS settings. +msgid "Could not update user record." +msgstr "Ezin da erabiltzailearen erregistroa eguneratu." + +#. TRANS: Message given after successfully removing an incoming e-mail address. +#. TRANS: Confirmation text after updating SMS settings. +msgid "Incoming email address removed." +msgstr "Sarrerako posta-e helbidea ezabatua." + +#. TRANS: Message given after successfully adding an incoming e-mail address. +#. TRANS: Confirmation text after updating SMS settings. +msgid "New incoming email address added." +msgstr "Sarrerako posta-e helbide berria gehitua." + +#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. +msgid "This notice is already a favorite!" +msgstr "Mezu hau dagoeneko gogokoa da!" + +#. TRANS: Page title for page on which favorite notices can be unfavourited. +msgid "Disfavor favorite." +msgstr "Gogokoa gogokoetatik atera." + +#. TRANS: Page title for first page of favorited notices. +#. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. +msgid "Popular notices" +msgstr "Ohar arrakastatsuak" + +#. TRANS: Page title for all but first page of favorited notices. +#. TRANS: %d is the page number being displayed. +#, php-format +msgid "Popular notices, page %d" +msgstr "Mezu arrakastatsuak, %d. orrialdea" + +#. TRANS: Description on page displaying favorited notices. +msgid "The most popular notices on the site right now." +msgstr "Mezu arrakastatsuenak eskuin aldean." + +#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices. +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users. +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users. +#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting. +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#. TRANS: Title of RSS feed with favourite notices of a user. +#. TRANS: %s is a user's nickname. +#. TRANS: Title for first page of favourite notices of a user. +#. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#, php-format +msgid "%s's favorite notices" +msgstr "\"%s(r)en gogoko mezuak" + +#. TRANS: Desciption of RSS feed with favourite notices of a user. +#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site. +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s(e)n %1$s(e)k gogoko markatutako azken mezuak!" + +#. TRANS: Page title for first page of featured users. +#. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. +msgid "Featured users" +msgstr "Bereizitako erabiltzaileak" + +#. TRANS: Page title for all but first page of featured users. +#. TRANS: %d is the page number being displayed. +#, php-format +msgid "Featured users, page %d" +msgstr "Bereizitako erabiltzaileak, %d. orrialdea" + +#. TRANS: Description on page displaying featured users. +#, php-format +msgid "A selection of some great users on %s." +msgstr "Egundoko erabiltzaileen hautapena %s(e)n." + +#. TRANS: Client error displayed when no notice ID was given trying do display a file. +msgid "No notice ID." +msgstr "Mezu IDrik ez." + +#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file. +msgid "No notice." +msgstr "Mezurik ez." + +#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement. +msgid "No attachments." +msgstr "Eranskinik ez." + +#. TRANS: Client error displayed when trying do display a file for a notice with file attachements +#. TRANS: that could not be found. +msgid "No uploaded attachments." +msgstr "Kargaturiko eranskinik ez." + +#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received. +msgid "Not expecting this response!" +msgstr "Ez zen erantzun hau espero!" + +#. TRANS: Client error displayed when subscribing to a remote profile that does not exist. +msgid "User being listened to does not exist." +msgstr "" + +#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile. +#. TRANS: Client error displayed when using remote subscribe for a local entity. +msgid "You can use the local subscription!" +msgstr "Harpidetza lokala erabil dezakezu!" + +#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to. +msgid "That user has blocked you from subscribing." +msgstr "Erabiltzaile horrek harpidetza blokeatu dizu." + +#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token. +msgid "You are not authorized." +msgstr "" + +#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails. +msgid "Could not convert request token to access token." +msgstr "" + +#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol. +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Urruneko zerbitzuak OMB protokoloaren bertsio ezezaguna erabiltzen du." + +#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. +msgid "Error updating remote profile." +msgstr "Errorea urruneko profila eguneratzean." + +#. TRANS: Client error displayed when requesting a non-existent file. +msgid "No such file." +msgstr "Fitxategi hori ez dago." + +#. TRANS: Client error displayed when requesting a file without having read access to it. +msgid "Cannot read file." +msgstr "Ezin da fitxategia irakurri." + +#. TRANS: Client error displayed when trying to assign an invalid role to a user. +#. TRANS: Client error displayed when trying to revoke an invalid role. +msgid "Invalid role." +msgstr "Rol baliogabea." + +#. TRANS: Client error displayed when trying to assign an reserved role to a user. +#. TRANS: Client error displayed when trying to revoke a reserved role. +msgid "This role is reserved and cannot be set." +msgstr "Rol hau gordeta dago eta ezin da ezarri." + +#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles. +msgid "You cannot grant user roles on this site." +msgstr "Gune honetan ezin duzu erabiltzaile-rolik eman." + +#. TRANS: Client error displayed when trying to assign a role to a user that already has that role. +msgid "User already has this role." +msgstr "Erabiltzaileak badauka rol hau." + +#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed when not providing a profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription without providing a profile. +#. TRANS: Client error displayed when trying to change user options without specifying a user to work on. +msgid "No profile specified." +msgstr "Ez da profilik zehaztu." + +#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. +#. TRANS: Client error displayed when not providing a group ID on the Make Admin page. +msgid "No group specified." +msgstr "Ez da talderik zehaztu." + +#. TRANS: Client error displayed trying to block a user from a group while not being an admin user. +msgid "Only an admin can block group members." +msgstr "Administrariak bakarrik blokea ditzake taldekideak." + +#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group. +msgid "User is already blocked from group." +msgstr "Erabiltzailea dagoeneko blokeatuta dago taldean." + +#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. +msgid "User is not a member of group." +msgstr "Erabiltzailea ez da taldekidea." + +#. TRANS: Title for block user from group page. +#. TRANS: Form legend for form to block user from a group. +msgid "Block user from group" +msgstr "Blokeatu erabiltzailea taldean" + +#. TRANS: Explanatory text for block user from group form before setting the block. +#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from. +#, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post, and unable to subscribe to " +"the group in the future." +msgstr "" + +#. TRANS: Submit button title for 'No' when blocking a user from a group. +msgid "Do not block this user from this group." +msgstr "Ez blokeatu erabiltzaile hau talde honetan." + +#. TRANS: Submit button title for 'Yes' when blocking a user from a group. +msgid "Block this user from this group." +msgstr "Blokeatu erabiltzaile hau talde honetan." + +#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. +msgid "Database error blocking user from group." +msgstr "Datu-base errorea erabiltzailea taldean blokeatzerakoan." + +#. TRANS: Client error displayed referring to a group's permalink without providing a group ID. +#. TRANS: Client error displayed trying to perform an action without providing an ID. +#. TRANS: Client error displayed trying to find a user by ID without providing an ID. +msgid "No ID." +msgstr "IDrik ez." + +#. TRANS: Title for group logo settings page. +#. TRANS: Group logo form legend. +msgid "Group logo" +msgstr "Taldearen logoa" + +#. TRANS: Instructions for group logo page. +#. TRANS: %s is the maximum file size for that site. +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" +"Zure talderako logoa igo dezakezu. Fitxategiaren gehienezko tamaina %s da." + +#. TRANS: Submit button for uploading a group logo. +msgid "Upload" +msgstr "Igo" + +#. TRANS: Button text for cropping an uploaded group logo. +msgid "Crop" +msgstr "Moztu" + +#. TRANS: Form instructions on the group logo page. +msgid "Pick a square area of the image to be the logo." +msgstr "Hautatu logoa izango den irudiko eremu laukia." + +#. TRANS: Form success message after updating a group logo. +msgid "Logo updated." +msgstr "Logoa eguneratuta." + +#. TRANS: Form failure message after failing to update a group logo. +msgid "Failed updating logo." +msgstr "Huts egin du logoa eguneratzean." + +#. TRANS: Title of the page showing group members. +#. TRANS: %s is the name of the group. +#, php-format +msgid "%s group members" +msgstr "%s taldeko kideak" + +#. TRANS: Title of the page showing group members. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "%1$s taldeko kideal, %2$d. orrialdea" + +#. TRANS: Page notice for group members page. +msgid "A list of the users in this group." +msgstr "Talde honetako erabiltzaile-zerrenda." + +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "Only the group admin may approve users." +msgstr "" + +#. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. +#. TRANS: %s is the name of the group. +#, php-format +msgid "%s group members awaiting approval" +msgstr "" + +#. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#, php-format +msgid "%1$s group members awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to join this group." +msgstr "" + +#. TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name. +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s(e)n %1$s(e)ko kideek bidalitako azken mezuak!" + +#. TRANS: Title for first page of the groups list. +msgctxt "TITLE" +msgid "Groups" +msgstr "Taldeak" + +#. TRANS: Title for all but the first page of the groups list. +#. TRANS: %d is the page number. +#, php-format +msgctxt "TITLE" +msgid "Groups, page %d" +msgstr "Taldeak, %d. orrialdea" + +#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, +#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. +#. TRANS: This message contains Markdown links in the form [link text](link). +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" +"%%%)!" +msgstr "" + +#. TRANS: Link to create a new group on the group list page. +#. TRANS: Link text on group page to create a new group. +#. TRANS: Form legend for group edit form. +msgid "Create a new group" +msgstr "Sortu talde berria" + +#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site. +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#. TRANS: Title for page where groups can be searched. +msgid "Group search" +msgstr "Talde bilaketa" + +#. TRANS: Text on page where groups can be searched if no results were found for a query. +#. TRANS: Text for notice search results is the query had no results. +#. TRANS: Message on the "People search" page where a query has no results. +#. TRANS: Output when there are no results for a search. +msgid "No results." +msgstr "Emaitzik ez." + +#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. +#. TRANS: This message contains Markdown links in the form [link text](link). +#, php-format +msgid "" +"If you cannot find the group you're looking for, you can [create it](%%" +"action.newgroup%%) yourself." +msgstr "" +"Bilatzen ari zaren taldea aurkitzen ez baduzu, zuk zeuk [sortu](%%action." +"newgroup%%) dezakezu." + +#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. +#. TRANS: This message contains Markdown links in the form [link text](link). +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. +msgid "Only an admin can unblock group members." +msgstr "Administrariak bakarrik desblokea ditzake taldekideak." + +#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. +msgid "User is not blocked from group." +msgstr "Erabiltzailea ez dago taldean blokeatuta." + +#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. +#. TRANS: Server error displayed when removing a user block. +msgid "Error removing the block." +msgstr "Errorea blokeoa kentzean." + +#. TRANS: Title for Instant Messaging settings. +msgid "IM settings" +msgstr "BM ezarpenak" + +#. TRANS: Instant messaging settings page instructions. +#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. +#. TRANS: the order and formatting of link text and link should remain unchanged. +#, php-format +msgid "" +"You can send and receive notices through instant messaging [instant messages]" +"(%%doc.im%%). Configure your addresses and settings below." +msgstr "" + +#. TRANS: Message given in the IM settings if IM is not enabled on the site. +msgid "IM is not available." +msgstr "BM ez dago erabilgarri." + +#. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. +#, php-format +msgid "Current confirmed %s address." +msgstr "Berretsitako uneko %s helbidea." + +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM service name, %2$s is the IM address set. +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your %1$s account for a message " +"with further instructions. (Did you add %2$s to your buddy list?)" +msgstr "" +"Helbide honen berrespenaren zain. Egiaztatu zure %1$s kontua argibide " +"gehiago dituen mezurako. (Gehitu duzu %2$s zure lagunen zerrendan?)" + +#. TRANS: Field label for IM address. +msgid "IM address" +msgstr "BM helbidea" + +#. TRANS: Field title for IM address. %s is the IM service name. +#, php-format +msgid "%s screenname." +msgstr "" + +#. TRANS: Header for IM preferences form. +msgid "IM Preferences" +msgstr "BM hobespenak" + +#. TRANS: Checkbox label in IM preferences form. +msgid "Send me notices" +msgstr "Bidal iezazkidazu mezuak" + +#. TRANS: Checkbox label in IM preferences form. +msgid "Post a notice when my status changes." +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +msgid "Send me replies from people I'm not subscribed to." +msgstr "" + +#. TRANS: Checkbox label in IM preferences form. +msgid "Publish a MicroID" +msgstr "" + +#. TRANS: Server error thrown on database error updating IM preferences. +msgid "Could not update IM preferences." +msgstr "" + +#. TRANS: Confirmation message for successful IM preferences save. +#. TRANS: Confirmation message after saving preferences. +msgid "Preferences saved." +msgstr "" + +#. TRANS: Message given saving IM address without having provided one. +msgid "No screenname." +msgstr "" + +#. TRANS: Form validation error when no transport is available setting an IM address. +msgid "No transport." +msgstr "" + +#. TRANS: Message given saving IM address that cannot be normalised. +msgid "Cannot normalize that screenname." +msgstr "" + +#. TRANS: Message given saving IM address that not valid. +msgid "Not a valid screenname." +msgstr "" + +#. TRANS: Message given saving IM address that is already set for another user. +msgid "Screenname already belongs to another user." +msgstr "" + +#. TRANS: Message given saving valid IM address that is to be confirmed. +msgid "A confirmation code was sent to the IM address you added." +msgstr "Gehitu duzun BM helbidera berrespen-kodea bidali da." + +#. TRANS: Message given canceling IM address confirmation for the wrong IM address. +msgid "That is the wrong IM address." +msgstr "BM helbide hori okerra da." + +#. TRANS: Server error thrown on database error canceling IM address confirmation. +msgid "Could not delete confirmation." +msgstr "Ezin izan da baieztabepa ezabatu." + +#. TRANS: Message given after successfully canceling IM address confirmation. +msgid "IM confirmation cancelled." +msgstr "BM baieztapena ezeztatua." + +#. TRANS: Message given trying to remove an IM address that is not +#. TRANS: registered for the active user. +msgid "That is not your screenname." +msgstr "" + +#. TRANS: Message given after successfully removing a registered Instant Messaging address. +msgid "The IM address was removed." +msgstr "BM helbidea kendu egin da." + +#. TRANS: Title for all but the first page of the inbox page. +#. TRANS: %1$s is the user's nickname, %2$s is the page number. +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "%1$s(r)entzako sarrera-ontzia - %2$d. orrialdea" + +#. TRANS: Title for the first page of the inbox page. +#. TRANS: %s is the user's nickname. +#, php-format +msgid "Inbox for %s" +msgstr "%s(r)entzako sarrera-ontzia" + +#. TRANS: Instructions for user inbox page. +msgid "This is your inbox, which lists your incoming private messages." +msgstr "Hau zure sarrera-ontzia da, jasotako mezu pribatuak erakusten dituena." + +#. TRANS: Client error displayed when trying to sent invites while they have been disabled. +msgid "Invites have been disabled." +msgstr "Gonbidapenak desgaitu egin dira." + +#. TRANS: Client error displayed when trying to sent invites while not logged in. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "You must be logged in to invite other users to use %s." +msgstr "" +"Saioa hasi behar duzu beste erabiltzaileak %s erabiltzera gonbidatzeko." + +#. TRANS: Form validation message when providing an e-mail address that does not validate. +#. TRANS: %s is an invalid e-mail address. +#, php-format +msgid "Invalid email address: %s." +msgstr "" + +#. TRANS: Page title when invitations have been sent. +msgid "Invitations sent" +msgstr "Gonbidapenak bidaliak" + +#. TRANS: Page title when inviting potential users. +msgid "Invite new users" +msgstr "Gonbidatu erabiltzaile berriak" + +#. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user +#. TRANS: is already subscribed to one or more users with the given e-mail address(es). +#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. +#. TRANS: Followed by a bullet list. +msgid "You are already subscribed to this user:" +msgid_plural "You are already subscribed to these users:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). +#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). +#, php-format +msgctxt "INVITE" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user +#. TRANS: already uses a this StatusNet site. Plural form is based on the number of +#. TRANS: reported already present people. Followed by a bullet list. +msgid "This person is already a user and you were automatically subscribed:" +msgid_plural "" +"These people are already users and you were automatically subscribed to them:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is +#. TRANS: based on the number of invitations sent. Followed by a bullet list of +#. TRANS: e-mail addresses to which invitations were sent. +msgid "Invitation sent to the following person:" +msgid_plural "Invitations sent to the following people:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Generic message displayed after sending out one or more invitations to +#. TRANS: people to join a StatusNet site. +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#. TRANS: Form instructions. +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Erabili inprimaki hau zure lagunak zerbitzu hau erabiltzera gonbidatzeko." + +#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral +#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is +#. TRANS: the StatusNet sitename. +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#. TRANS: Client error displayed when trying to join a group while not logged in. +msgid "You must be logged in to join a group." +msgstr "Saioa hasi behar duzu taldera batzeko." + +#. TRANS: Title for join group page after joining. +#, php-format +msgctxt "TITLE" +msgid "%1$s joined group %2$s" +msgstr "%1$s %2$s taldera batu da" + +#. TRANS: Exception thrown when there is an unknown error joining a group. +msgid "Unknown error joining group." +msgstr "" + +#. TRANS: Client error displayed when trying to join a group while already a member. +#. TRANS: Error text shown when trying to leave an existing group the user is not a member of. +msgid "You are not a member of that group." +msgstr "Ez zara talde horretako kidea." + +#. TRANS: User admin panel title +msgctxt "TITLE" +msgid "License" +msgstr "Lizentzia" + +#. TRANS: Form instructions for the site license admin panel. +msgid "License for this StatusNet site" +msgstr "StatusNet gune honentzako lizentzia" + +#. TRANS: Client error displayed selecting an invalid license in the license admin panel. +msgid "Invalid license selection." +msgstr "Lizentzia-hautapen baliogabea." + +#. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel. +msgid "" +"You must specify the owner of the content when using the All Rights Reserved " +"license." +msgstr "" + +#. TRANS: Client error displayed selecting a too long license title in the license admin panel. +msgid "Invalid license title. Maximum length is 255 characters." +msgstr "Lizentzia-izenburu baliogabea. Luzera maximoa 255 karaktere da." + +#. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. +msgid "Invalid license URL." +msgstr "Lizentziaren URL baliogabea." + +#. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. +msgid "Invalid license image URL." +msgstr "Lizentziaren irudiaren URL baliogabea." + +#. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. +msgid "License URL must be blank or a valid URL." +msgstr "" + +#. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. +msgid "License image must be blank or valid URL." +msgstr "" + +#. TRANS: Form legend in the license admin panel. +msgid "License selection" +msgstr "Lizentziaren aukeraketa" + +#. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label to mark a list private. +msgid "Private" +msgstr "Pribatua" + +#. TRANS: License option in the license admin panel. +msgid "All Rights Reserved" +msgstr "Eskubide guztiak gordeak" + +#. TRANS: License option in the license admin panel. +msgid "Creative Commons" +msgstr "Creative Commons" + +#. TRANS: Dropdown field label in the license admin panel. +msgid "Type" +msgstr "Mota" + +#. TRANS: Dropdown field instructions in the license admin panel. +msgid "Select a license." +msgstr "Hautatu lizentzia bat." + +#. TRANS: Form legend in the license admin panel. +msgid "License details" +msgstr "Lizentziaren xehetasunak" + +#. TRANS: Field label in the license admin panel. +msgid "Owner" +msgstr "Jabea" + +#. TRANS: Field title in the license admin panel. +msgid "Name of the owner of the site's content (if applicable)." +msgstr "" + +#. TRANS: Field label in the license admin panel. +msgid "License Title" +msgstr "Lizentzia izenburua" + +#. TRANS: Field title in the license admin panel. +msgid "The title of the license." +msgstr "Lizentziaren izenburua." + +#. TRANS: Field label in the license admin panel. +msgid "License URL" +msgstr "Lizentziaren URLa" + +#. TRANS: Field title in the license admin panel. +msgid "URL for more information about the license." +msgstr "Lizentziaren argibide gehiago jasotzeko URLa." + +#. TRANS: Field label in the license admin panel. +msgid "License Image URL" +msgstr "Lizentziaren irudiaren URLa" + +#. TRANS: Field title in the license admin panel. +msgid "URL for an image to display with the license." +msgstr "Lizentziarekin batera bistaratzeko irudiaren URLa." + +#. TRANS: Button title in the license admin panel. +msgid "Save license settings." +msgstr "Gorde lizentzia-ezarpenak" + +#. TRANS: Client error displayed when trying to log in while already logged in. +#. TRANS: Client error displayed trying to use "one time password login" when already logged in. +#. TRANS: Client error displayed when trying to register while already logged in. +msgid "Already logged in." +msgstr "Dagoeneko saioa hasita." + +#. TRANS: Form validation error displayed when trying to log in with incorrect credentials. +msgid "Incorrect username or password." +msgstr "Erabiltzaile-izen edo pasahitz okerra." + +#. TRANS: Server error displayed when during login a server error occurs. +#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login". +msgid "Error setting user. You are probably not authorized." +msgstr "Errorea erabiltzailea ezartzean. Baliteke baimenik ez izatea." + +#. TRANS: Page title for login page. +msgid "Login" +msgstr "Saioa hasi" + +#. TRANS: Form legend on login page. +msgid "Login to site" +msgstr "Gunean saioa hasi" + +#. TRANS: Field label on login page. +msgid "Username or email address" +msgstr "" + +#. TRANS: Checkbox label label on login page. +#. TRANS: Checkbox label on account registration page. +msgid "Remember me" +msgstr "Ni gogoratu" + +#. TRANS: Checkbox title on login page. +#. TRANS: Checkbox title on account registration page. +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Saioa automatikoki hasi etorkizunean; ez erabili hau ordenagailu publikoetan!" + +#. TRANS: Button text for log in on login page. +msgctxt "BUTTON" +msgid "Login" +msgstr "Saioa hasi" + +#. TRANS: Link text for link to "reset password" on login page. +msgid "Lost or forgotten password?" +msgstr "Pasahitza galdu edo ahaztu duzu?" + +#. TRANS: Form instructions on login page before being able to change user settings. +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"egurtasun arrazoiengatik, berridatzi zure erabiltzaile-izen eta pasahitza " +"ezarpenak aldatu aurretik." + +#. TRANS: Form instructions on login page. +msgid "Login with your username and password." +msgstr "Hasi saioa zure erabiltzaile-izen eta pasahitzarekin." + +#. TRANS: Form instructions on login page. This message contains Markdown links in the form [Link text](Link). +#. TRANS: %%action.register%% is a link to the registration page. +#, php-format +msgid "" +"Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "" +"Ez daukazu erabiltzailerik oraindik? [Erregistratu](%%action.register%%) " +"kontu berria." + +#. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. +msgid "Only an admin can make another user an admin." +msgstr "" + +#. TRANS: Client error displayed when trying to make another user admin on the Make Admin page who already is admin. +#. TRANS: %1$s is the user that is already admin, %2$s is the group user is already admin for. +#, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "" + +#. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails +#. TRANS: because the group membership record could not be gotten. +#. TRANS: %1$s is the to be admin user, %2$s is the group user should be admin for. +#, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "" + +#. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails +#. TRANS: because the group adminship record coud not be saved properly. +#. TRANS: %1$s is the to be admin user, %2$s is the group user is already admin for. +#, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "" + +#. TRANS: Client error displayed trying to make a micro summary without providing a status. +msgid "No current status." +msgstr "" + +#. TRANS: This is the title of the form for adding a new application. +msgid "New application" +msgstr "" + +#. TRANS: Client error displayed trying to add a new application while not logged in. +msgid "You must be logged in to register an application." +msgstr "" + +#. TRANS: Form instructions for registering a new application. +msgid "Use this form to register a new application." +msgstr "" + +#. TRANS: Validation error shown when not providing a source URL in the "New application" form. +msgid "Source URL is required." +msgstr "" + +#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. +msgid "Could not create application." +msgstr "" + +msgid "Invalid image." +msgstr "" + +#. TRANS: Title for form to create a group. +msgid "New group" +msgstr "Talde berria" + +#. TRANS: Client exception thrown when a user tries to create a group while banned. +msgid "You are not allowed to create groups on this site." +msgstr "Gune honetan ez duzu talde berriak sortzeko baimenik." + +#. TRANS: Form instructions for group create form. +msgid "Use this form to create a new group." +msgstr "Erabili formulario hau talde berri bat sortzeko." + +#. TRANS: Page title for new direct message page. +#. TRANS: Page title on page for sending a direct message. +msgid "New message" +msgstr "Mezu berria" + +#. TRANS: Client error displayed trying to send a direct message to a user while sender and +#. TRANS: receiver are not subscribed to each other. +msgid "You cannot send a message to this user." +msgstr "" + +#. TRANS: Form validator error displayed trying to send a direct message without content. +#. TRANS: Client error displayed trying to send a notice without content. +#. TRANS: Command exception text shown when trying to send a direct message to another user without content. +#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. +msgid "No content!" +msgstr "Edukirik ez!" + +#. TRANS: Form validation error displayed trying to send a direct message without specifying a recipient. +msgid "No recipient specified." +msgstr "" + +#. TRANS: Page title after sending a direct message. +msgid "Message sent" +msgstr "Mezua bidalia" + +#. TRANS: Confirmation text after sending a direct message. +#. TRANS: %s is the direct message recipient. +#. TRANS: Message given have sent a direct message to another user. +#. TRANS: %s is the name of the other user. +#, php-format +msgid "Direct message to %s sent." +msgstr "%s(r)i mezu zuzena bidalia." + +#. TRANS: Page title after an AJAX error occurred on the "send direct message" page. +#. TRANS: Page title after an AJAX error occurs on the send notice page. +msgid "Ajax Error" +msgstr "Ajax Errorea" + +#. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +msgctxt "TITLE" +msgid "New notice" +msgstr "Mezu berria" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "Mezua bidalia" + +#. TRANS: Instructions for Notice search page. +#. TRANS: %%site.name%% is the name of the StatusNet site. +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#. TRANS: Title of the page where users can search for notices. +msgid "Text search" +msgstr "Testu bilaketa" + +#. TRANS: Test in RSS notice search. +#. TRANS: %1$s is the query, %2$s is the StatusNet site name. +#, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "%2$s(e)n \"%1$s\" testuaren bilaketaren emaitzak" + +#. TRANS: Text for logged in users making a query for notices without results. +#. TRANS: This message contains a Markdown link. +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#. TRANS: Text for not logged in users making a query for notices without results. +#. TRANS: This message contains Markdown links. +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#. TRANS: RSS notice search feed title. %s is the query. +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#. TRANS: RSS notice search feed description. +#. TRANS: %1$s is the query, %2$s is the StatusNet site name. +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s." +msgstr "" + +#. TRANS: Client error displayed trying to nudge a user that cannot be nudged. +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set their email " +"address yet." +msgstr "" + +#. TRANS: Page title after sending a nudge. +msgid "Nudge sent" +msgstr "" + +#. TRANS: Confirmation text after sending a nudge. +msgid "Nudge sent!" +msgstr "" + +#. TRANS: Message displayed to an anonymous user trying to view OAuth application list. +msgid "You must be logged in to list your applications." +msgstr "" + +#. TRANS: Page title for OAuth applications +msgid "OAuth applications" +msgstr "" + +#. TRANS: Page instructions for OAuth applications +msgid "Applications you have registered" +msgstr "" + +#. TRANS: Empty list message on page with OAuth applications. +#, php-format +msgid "You have not registered any applications yet." +msgstr "" + +#. TRANS: Title for OAuth connection settings. +msgid "Connected applications" +msgstr "" + +#. TRANS: Instructions for OAuth connection settings. +msgid "The following connections exist for your account." +msgstr "" + +#. TRANS: Client error when trying to revoke access for an application while not being a user of it. +msgid "You are not a user of that application." +msgstr "" + +#. TRANS: Client error when revoking access has failed for some reason. +#. TRANS: %s is the application ID revoking access failed for. +#, php-format +msgid "Unable to revoke access for application: %s." +msgstr "" + +#. TRANS: Success message after revoking access for an application. +#. TRANS: %1$s is the application name, %2$s is the first part of the user token. +#, php-format +msgid "" +"You have successfully revoked access for %1$s and the access token starting " +"with %2$s." +msgstr "" + +#. TRANS: Empty list message when no applications have been authorised yet. +msgid "You have not authorized any applications to use your account." +msgstr "" + +#. TRANS: Note for developers in the OAuth connection settings form. +#. TRANS: This message contains a Markdown link. Do not separate "](". +#. TRANS: %s is the URL to the OAuth settings. +#, php-format +msgid "" +"Are you a developer? [Register an OAuth client application](%s) to use with " +"this instance of StatusNet." +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when path not found. +#. TRANS: %s is a path. +#, php-format +msgid "\"%s\" not found." +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when notice not found. +#. TRANS: %s is a notice. +#, php-format +msgid "Notice %s not found." +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when notice has not profile. +#. TRANS: Server error displayed trying to show a notice without a connected profile. +msgid "Notice has no profile." +msgstr "" + +#. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. +#. TRANS: Title of the page that shows a notice. +#. TRANS: %1$s is a user name, %2$s is the notice creation date/time. +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when attachment not found. +#. TRANS: %d is an attachment ID. +#, php-format +msgid "Attachment %s not found." +msgstr "" + +#. TRANS: Server error displayed in oEmbed request when a path is not supported. +#. TRANS: %s is a path. +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + +#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') +#, php-format +msgid "Content type %s not supported." +msgstr "" + +#. TRANS: Error message displaying attachments. %s is the site's base URL. +#, php-format +msgid "Only %s URLs over plain HTTP please." +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when request specifies an unsupported data format. +#. TRANS: Client error on an API request with an unsupported data format. +msgid "Not a supported data format." +msgstr "" + +#. TRANS: ShortName in the OpenSearch interface when trying to find users. +msgid "People Search" +msgstr "" + +#. TRANS: ShortName in the OpenSearch interface when trying to find notices. +msgid "Notice Search" +msgstr "" + +#. TRANS: Client error displayed trying to use "one time password login" without specifying a user. +msgid "No user ID specified." +msgstr "" + +#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token. +msgid "No login token specified." +msgstr "" + +#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token. +msgid "No login token requested." +msgstr "" + +#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token. +msgid "Invalid login token specified." +msgstr "" + +#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token. +msgid "Login token expired." +msgstr "" + +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "" + +#. TRANS: Title for first page of outbox. +#, php-format +msgid "Outbox for %s" +msgstr "" + +#. TRANS: Instructions for outbox. +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#. TRANS: Title for page where to change password. +msgctxt "TITLE" +msgid "Change password" +msgstr "Aldatu pasahitza" + +#. TRANS: Instructions for page where to change password. +msgid "Change your password." +msgstr "Zure pasahitza aldatu." + +#. TRANS: Fieldset legend on page where to change password. +#. TRANS: Fieldset legend for password reset form. +msgid "Password change" +msgstr "Pasahitz aldaketa" + +#. TRANS: Field label on page where to change password. +msgid "Old password" +msgstr "Pasahitz zaharra" + +#. TRANS: Field label on page where to change password. +#. TRANS: Field label for password reset form. +msgid "New password" +msgstr "Pasahitz berria" + +#. TRANS: Field title on page where to change password. +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "6 karaktere edo gehiago." + +#. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. +msgctxt "LABEL" +msgid "Confirm" +msgstr "Baieztatu" + +#. TRANS: Field title on page where to change password. +#. TRANS: Title for field label for password reset form where the password has to be typed again. +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "Gohiko pasahitz berbera." + +#. TRANS: Button text on page where to change password. +msgctxt "BUTTON" +msgid "Change" +msgstr "aldatu" + +#. TRANS: Form validation error on page where to change password. +#. TRANS: Form validation error displayed when trying to register with too short a password. +msgid "Password must be 6 or more characters." +msgstr "Pasahitzak 6 karaktere edo gehiago izan behar ditu." + +#. TRANS: Form validation error on password change when password confirmation does not match. +#. TRANS: Form validation error displayed when trying to register with non-matching passwords. +msgid "Passwords do not match." +msgstr "" + +#. TRANS: Form validation error on page where to change password. +msgid "Incorrect old password." +msgstr "" + +#. TRANS: Form validation error on page where to change password. +msgid "Error saving user; invalid." +msgstr "Errorea erabiltzailea gordetzean; baliogabea." + +#. TRANS: Server error displayed on page where to change password when password change +#. TRANS: could not be made because of a server error. +#. TRANS: Reset password form validation error message. +msgid "Cannot save new password." +msgstr "Ezin da pasahitz berria gorde." + +#. TRANS: Form validation notice on page where to change password. +msgid "Password saved." +msgstr "Pasahitza gordea." + +#. TRANS: Title for Paths admin panel. +msgid "Paths" +msgstr "Bideak" + +#. TRANS: Form instructions for Path admin panel. +msgid "Path and server settings for this StatusNet site" +msgstr "" + +#. TRANS: Client error in Paths admin panel. +#. TRANS: %s is the directory that could not be read from. +#, php-format +msgid "Theme directory not readable: %s." +msgstr "" + +#. TRANS: Client error in Paths admin panel. +#. TRANS: %s is the avatar directory that could not be written to. +#, php-format +msgid "Avatar directory not writable: %s." +msgstr "" + +#. TRANS: Client error in Paths admin panel. +#. TRANS: %s is the background directory that could not be written to. +#, php-format +msgid "Background directory not writable: %s." +msgstr "" + +#. TRANS: Client error in Paths admin panel. +#. TRANS: %s is the locales directory that could not be read from. +#, php-format +msgid "Locales directory not readable: %s." +msgstr "" + +#. TRANS: Client error in Paths admin panel. +#. TRANS: %s is the SSL server URL that is too long. +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "" + +#. TRANS: Fieldset legend in Paths admin panel. +msgid "Site" +msgstr "Gunea" + +#. TRANS: Field label in Paths admin panel. +msgid "Server" +msgstr "Zerbitzaria" + +#. TRANS: Field title in Paths admin panel. +msgid "Site's server hostname." +msgstr "" + +#. TRANS: Field label in Paths admin panel. +msgid "Path" +msgstr "Bidea" + +#. TRANS: Field title in Paths admin panel. +msgid "Site path." +msgstr "Gunearen bidea." + +#. TRANS: Field label in Paths admin panel. +msgid "Locale directory" +msgstr "Direktorio lokala" + +#. TRANS: Field title in Paths admin panel. +msgid "Directory path to locales." +msgstr "" + +#. TRANS: Checkbox label in Paths admin panel. +msgid "Fancy URLs" +msgstr "" + +#. TRANS: Field title in Paths admin panel. +msgid "Use fancy URLs (more readable and memorable)?" +msgstr "" + +#. TRANS: Fieldset legend in Paths admin panel. +msgctxt "LEGEND" +msgid "Theme" +msgstr "Itxura" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Server for themes." +msgstr "Itxurentzako zerbitzaria." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Web path to themes." +msgstr "Itzurentzako web bidea." + +#. TRANS: Field label in Paths admin panel. +msgid "SSL server" +msgstr "SSL zerbitzaria" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "SSL server for themes (default: SSL server)." +msgstr "Itxurentzako SSL zerbitzaria (lehenetsia: SSL zerbitzaria)" + +#. TRANS: Field label in Paths admin panel. +msgid "SSL path" +msgstr "SSL bidea" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "SSL path to themes (default: /theme/)." +msgstr "Itxurentzako SSL bidea (lehenetsia: SSL bidea)" + +#. TRANS: Field label in Paths admin panel. +msgid "Directory" +msgstr "Direktorioa" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Directory where themes are located." +msgstr "Itxurak kokatuak dauden direktorioa." + +#. TRANS: Fieldset legend in Paths admin panel. +msgid "Avatars" +msgstr "Abatarrak" + +#. TRANS: Field label in Paths admin panel. +msgid "Avatar server" +msgstr "Abatar zerbitzaria" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Server for avatars." +msgstr "Abatarren zerbitzaria." + +#. TRANS: Field label in Paths admin panel. +msgid "Avatar path" +msgstr "Avatarraren bidea" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Web path to avatars." +msgstr "" + +#. TRANS: Field label in Paths admin panel. +msgid "Avatar directory" +msgstr "Avatarraren directorioa" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Directory where avatars are located." +msgstr "" + +#. TRANS: Fieldset legens in Paths admin panel. +msgid "Attachments" +msgstr "Eranskinak" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Server for attachments." +msgstr "Eranskinen zerbitzaria." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Web path to attachments." +msgstr "Eranskinen web bidea." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Server for attachments on SSL pages." +msgstr "SSL orrialdetako eranskinen zerbitzaria." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Web path to attachments on SSL pages." +msgstr "SSL orrialdetako eranskinen web bidea." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Directory where attachments are located." +msgstr "Eranskinak gordetzen diren direktorioa." + +#. TRANS: Fieldset legend in Paths admin panel. +msgctxt "LEGEND" +msgid "SSL" +msgstr "SSL" + +#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +msgid "Never" +msgstr "Inoiz ez" + +#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +msgid "Sometimes" +msgstr "Batzutan" + +#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). +msgid "Always" +msgstr "Beti" + +#. TRANS: Drop down label in Paths admin panel. +msgid "Use SSL" +msgstr "Erabili SSL" + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "When to use SSL." +msgstr "Noiz erabili SSL." + +#. TRANS: Tooltip for field label in Paths admin panel. +msgid "Server to direct SSL requests to." +msgstr "" + +#. TRANS: Button title text to store form data in the Paths admin panel. +msgid "Save paths" +msgstr "Bideak gorde." + +#. TRANS: Instructions for the "People search" page. +#. TRANS: %%site.name%% is the name of the StatusNet site. +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#. TRANS: Title of a page where users can search for other users. +msgid "People search" +msgstr "Jende bilaketa" + +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, php-format +msgid "Public list %s" +msgstr "" + +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, php-format +msgid "Public list %1$s, page %2$d" +msgstr "" + +#. TRANS: Message for anonymous users on list page. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." +msgstr "" + +#. TRANS: Client error displayed when a tagger is expected but not provided. +msgid "No tagger." +msgstr "" + +#. TRANS: Title for list of people listed by the user. +#. TRANS: %1$s is a list, %2$s is a username. +#, php-format +msgid "People listed in %1$s by %2$s" +msgstr "" + +#. TRANS: Title for list of people listed by the user. +#. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. +#, php-format +msgid "People listed in %1$s by %2$s, page %3$d" +msgstr "" + +#. TRANS: Addition in tag membership list for creator of a tag. +#. TRANS: Addition in tag subscribers list for creator of a tag. +msgid "Creator" +msgstr "Egilea" + +#. TRANS: Title for lists by a user page for a private tag. +msgid "Private lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page for a public tag. +msgid "Public lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page. +msgid "Lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Lists by %s" +msgstr "" + +#. TRANS: Title for lists by a user page. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#, php-format +msgid "Lists by %1$s, page %2$d" +msgstr "" + +#. TRANS: Client error displayed when trying view another user's private lists. +msgid "You cannot view others' private lists" +msgstr "" + +#. TRANS: Mode selector label. +msgid "Mode" +msgstr "Modua" + +#. TRANS: Link text to show lists for user %s. +#, php-format +msgid "Lists for %s" +msgstr "" + +#. TRANS: Fieldset legend. +#. TRANS: Fieldset legend on gallery action page. +msgid "Select tag to filter" +msgstr "" + +#. TRANS: Checkbox title. +msgid "Show private tags." +msgstr "" + +#. TRANS: Checkbox label to show public tags. +msgctxt "LABEL" +msgid "Public" +msgstr "" + +#. TRANS: Checkbox title. +msgid "Show public tags." +msgstr "" + +#. TRANS: Submit button text for tag filter form. +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" +msgid "Go" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists by a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "" +"These are lists created by **%s**. Lists are how you sort similar people on %" +"%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. You can easily keep track of what they are doing by subscribing to the " +"tag's timeline." +msgstr "" + +#. TRANS: Message displayed on page that displays lists by a user when there are none. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." +msgstr "" + +#. TRANS: Page title. %s is a tagged user's nickname. +#, php-format +msgid "Lists with %s in them" +msgstr "" + +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format +msgid "Lists with %1$s, page %2$d" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists for a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "" +"These are lists for **%s**. lists are how you sort similar people on %%%%" +"site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. You can easily keep track of what they are doing by subscribing to the " +"tag's timeline." +msgstr "" + +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." +msgstr "" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" +msgstr "" + +#. TRANS: Title for page that displays lists subscribed to by a user. +#. TRANS: %s is a profile nickname. +#, php-format +msgid "Lists subscribed to by %s" +msgstr "" + +#. TRANS: Title for page that displays lists subscribed to by a user. +#. TRANS: %1$s is a profile nickname, %2$d is a page number. +#, php-format +msgid "Lists subscribed to by %1$s, page %2$d" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a profile nickname. +#, php-format +msgid "" +"These are lists subscribed to by **%s**. Lists are how you sort similar " +"people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" +"Micro-blogging) service based on the Free Software [StatusNet](http://status." +"net/) tool. You can easily keep track of what they are doing by subscribing " +"to the list's timeline." +msgstr "" + +#. TRANS: Page title for AJAX form return when a disabling a plugin. +msgctxt "plugin" +msgid "Disabled" +msgstr "" + +#. TRANS: Client error displayed when trying to use another method than POST. +#. TRANS: Do not translate POST. +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when trying to use another method than POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. +msgid "You cannot administer plugins." +msgstr "" + +#. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. +msgid "No such plugin." +msgstr "" + +#. TRANS: Page title for AJAX form return when enabling a plugin. +msgctxt "plugin" +msgid "Enabled" +msgstr "" + +#. TRANS: Tab and title for plugins admin panel. +msgctxt "TITLE" +msgid "Plugins" +msgstr "" + +#. TRANS: Instructions at top of plugin admin page. +msgid "" +"Additional plugins can be enabled and configured manually. See the online plugin documentation for more " +"details." +msgstr "" + +#. TRANS: Admin form section header +msgid "Default plugins" +msgstr "" + +#. TRANS: Text displayed on plugin admin page when no plugin are enabled. +msgid "" +"All default plugins have been disabled from the site's configuration file." +msgstr "" + +#. TRANS: Client error displayed if the notice posted has too many characters. +msgid "Invalid notice content." +msgstr "" + +#. TRANS: Exception thrown if a notice's license is not compatible with the StatusNet site license. +#. TRANS: %1$s is the notice license, %2$s is the StatusNet site's license. +#, php-format +msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +msgstr "" + +#. TRANS: Client error displayed when trying to add an unindentified field to profile. +#. TRANS: %s is a field name. +#, php-format +msgid "Unidentified field %s." +msgstr "" + +#. TRANS: Page title. +msgctxt "TITLE" +msgid "Search results" +msgstr "" + +#. TRANS: Error message in case a search is shorter than three characters. +msgid "The search string must be at least 3 characters long." +msgstr "" + +#. TRANS: Page title for profile settings. +msgid "Profile settings" +msgstr "Profileko ezarpenak" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Zure profil pertsonaleko informazioa hementxe eguneratu dezakezu, jendeak " +"zutaz gehiago jakin dezan." + +#. TRANS: Profile settings form legend. +msgid "Profile information" +msgstr "Profileko informazioa" + +#. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Field title on account registration page. +#. TRANS: Field title on group edit form. +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1-64 letra xehe edo zenbaki, puntuazio edo espaziorik gabe." + +#. TRANS: Field label in form for profile settings. +#. TRANS: Field label on account registration page. +#. TRANS: Field label on group edit form. +msgid "Full name" +msgstr "Izen osoa" + +#. TRANS: Field label in form for profile settings. +#. TRANS: Field label on account registration page. +#. TRANS: Form input field label. +#. TRANS: Field label on group edit form; points to "more info" for a group. +msgid "Homepage" +msgstr "Webgunea" + +#. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Field title on account registration page. +msgid "URL of your homepage, blog, or profile on another site." +msgstr "Zure webguneko, blogeko edo beste webgune bateko profileko URLa" + +#. TRANS: Tooltip for field label in form for profile settings. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). +#, php-format +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "" + +#. TRANS: Text area label in form for profile settings where users can provide +#. TRANS: their biography. +#. TRANS: Text area label on account registration page. +msgid "Bio" +msgstr "Bio" + +#. TRANS: Field label in form for profile settings. +#. TRANS: Field label on account registration page. +#. TRANS: Field label on group edit form. +#. TRANS: Dropdown option for searching in profiles. +msgid "Location" +msgstr "Kokapena" + +#. TRANS: Tooltip for field label in form for profile settings. +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "" + +#. TRANS: Checkbox label in form for profile settings. +msgid "Share my current location when posting notices" +msgstr "Nire kokalekua zabaldu oharrak bidaltzean" + +#. TRANS: Field label in form for profile settings. +msgid "Tags" +msgstr "Etiketak" + +#. TRANS: Tooltip for field label in form for profile settings. +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." +msgstr "" +"Etiketak zuretzat (letrak, zenbakiak, -, ., eta _), komekin edo espazioakin " +"banatuak." + +#. TRANS: Dropdownlist label in form for profile settings. +msgid "Language" +msgstr "Hizkuntza" + +#. TRANS: Tooltip for dropdown list label in form for profile settings. +msgid "Preferred language." +msgstr "Nahiago duzun hizkuntza." + +#. TRANS: Dropdownlist label in form for profile settings. +msgid "Timezone" +msgstr "" + +#. TRANS: Tooltip for dropdown list label in form for profile settings. +msgid "What timezone are you normally in?" +msgstr "" + +#. TRANS: Checkbox label in form for profile settings. +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." +msgstr "" + +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" +msgstr "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: Plural form is used based on the maximum number of allowed +#. TRANS: characters for the biography (%d). +#. TRANS: Form validation error on registration page when providing too long a bio text. +#. TRANS: %d is the maximum number of characters for bio; used for plural. +#, php-format +msgid "Bio is too long (maximum %d character)." +msgid_plural "Bio is too long (maximum %d characters)." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: Client error displayed trying to save site settings without a timezone. +msgid "Timezone not selected." +msgstr "" + +#. TRANS: Validation error in form for profile settings. +msgid "Language is too long (maximum 50 characters)." +msgstr "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#. TRANS: Form validation error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. +#. TRANS: Error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "Etiketa baliogabea: \"%s\"." + +#. TRANS: Server error thrown when user profile settings could not be updated to +#. TRANS: automatically subscribe to any subscriber. +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" + +#. TRANS: Server error thrown when user profile location preference settings could not be updated. +msgid "Could not save location prefs." +msgstr "" + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "" + +#. TRANS: Confirmation shown when user profile settings are saved. +#. TRANS: Message after successful saving of administrative settings. +msgid "Settings saved." +msgstr "Ezarpenak gordeak." + +#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. +#. TRANS: Page title for page where a user account can be restored from backup. +msgid "Restore account" +msgstr "" + +#. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. +#. TRANS: %s is the page limit. +#, php-format +msgid "Beyond the page limit (%s)." +msgstr "" + +#. TRANS: Server error displayed when a public timeline cannot be retrieved. +msgid "Could not retrieve public stream." +msgstr "" + +#. TRANS: Title for all public timeline pages but the first. +#. TRANS: %d is the page number. +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. +msgid "Public timeline" +msgstr "" + +#. TRANS: Link description for public timeline feed. +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#. TRANS: Link description for public timeline feed. +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#. TRANS: Link description for public timeline feed. +msgid "Public Stream Feed (Atom)" +msgstr "" + +#. TRANS: Text displayed for public feed when there are no public notices. +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. +msgid "Be the first to post!" +msgstr "Izan zaitez idazten lehena!" + +#. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user. +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" +"Zergatik ez [kontu bat ireki](%%action.register%%) eta idazten lehena izan!" + +#. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. +#. TRANS: This message contains Markdown links. Please mind the formatting. +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"Hau %%site.name%% da, [StatusNet](http://status.net/) software librean " +"oinarritutako [mikroblogging](http://eu.wikipedia.org/wiki/Mikroblogging) " +"zerbitzu bat. [Ireki kontu bat orain](%%action.register%%) eta oharrak " +"elkarbanatzen hasi zure lagun, familia eta ezagunekin! ([Gehiago irakurri](%%" +"doc.help%%))" + +#. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. +#. TRANS: This message contains Markdown links. Please mind the formatting. +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Hau %%site.name%% da, [StatusNet](http://status.net/) software librean " +"oinarritutako [mikroblogging](http://eu.wikipedia.org/wiki/Mikroblogging) " +"zerbitzu bat." + +#. TRANS: Title for page with public list cloud. +msgid "Public list cloud" +msgstr "" + +#. TRANS: Page notice for page with public list cloud. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "These are largest lists on %s" +msgstr "" + +#. TRANS: Empty list message on page with public list cloud. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "" + +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +msgid "Be the first to list someone!" +msgstr "" + +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to list " +"someone!" +msgstr "" + +#. TRANS: DT element on on page with public list cloud. +msgid "List cloud" +msgstr "" + +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, php-format +msgid "1 person listed" +msgid_plural "%d people listed" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Public RSS feed description. %s is the StatusNet site name. +#, php-format +msgid "%s updates from everyone." +msgstr "" + +#. TRANS: Title for public tag cloud. +msgid "Public tag cloud" +msgstr "Etiketa hodei publikoa" + +#. TRANS: Instructions (more used like an explanation/header). +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "These are most popular recent tags on %s" +msgstr "Hauek dira etiketa berrietan arrakastatsuenak %s(e)n" + +#. TRANS: This message contains a Markdown URL. The link description is between +#. TRANS: square brackets, and the link between parentheses. Do not separate "](" +#. TRANS: and do not change the URL part. +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#. TRANS: Message shown to a logged in user for the public tag cloud +#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. +msgid "Be the first to post one!" +msgstr "Izan zaitez lehena bat idazten!" + +#. TRANS: Message shown to a anonymous user for the public tag cloud +#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. +#. TRANS: This message contains a Markdown URL. The link description is between +#. TRANS: square brackets, and the link between parentheses. Do not separate "](" +#. TRANS: and do not change the URL part. +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" +"Zergatik ez [kontu bat ireki](%%action.register%%) eta bat idazten lehena " +"izan!" + +#. TRANS: Client error displayed trying to recover password while already logged in. +msgid "You are already logged in!" +msgstr "Dagoeneko saioa hasi duzu!" + +#. TRANS: Client error displayed when password recovery code is not correct. +msgid "No such recovery code." +msgstr "" + +#. TRANS: Client error displayed when no proper password recovery code was submitted. +msgid "Not a recovery code." +msgstr "" + +#. TRANS: Server error displayed trying to recover password without providing a user. +msgid "Recovery code for unknown user." +msgstr "" + +#. TRANS: Server error displayed removing a password recovery code from the database. +msgid "Error with confirmation code." +msgstr "" + +#. TRANS: Client error displayed trying to recover password with too old a recovery code. +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password. +msgid "Could not update user with confirmed email address." +msgstr "" + +#. TRANS: Page notice for password recovery page. +msgid "" +"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." +msgstr "" + +#. TRANS: Page notice for password change page. +msgid "You have been identified. Enter a new password below." +msgstr "" + +#. TRANS: Fieldset legend for password recovery page. +msgid "Password recovery" +msgstr "Pasahitzaren berreskuraketa" + +#. TRANS: Field label on password recovery page. +msgid "Nickname or email address" +msgstr "Ezizena edo posta-e helbidea" + +#. TRANS: Title for field label on password recovery page. +msgid "Your nickname on this server, or your registered email address." +msgstr "" +"Webgune honetan duzun ezizena edo izena emateko erabilitako posta-e helbidea." + +#. TRANS: Field label on password recovery page. +msgid "Recover" +msgstr "Berreskuratu" + +#. TRANS: Button text on password recovery page. +msgctxt "BUTTON" +msgid "Recover" +msgstr "Berreskuratu" + +#. TRANS: Title for password recovery page in password reset mode. +msgid "Reset password" +msgstr "Pasahitza berrezarri" + +#. TRANS: Title for password recovery page in password recover mode. +msgid "Recover password" +msgstr "Pasahitza berreskuratu" + +#. TRANS: Title for password recovery page in email sent mode. +#. TRANS: Subject for password recovery e-mail. +msgid "Password recovery requested" +msgstr "Pasahitza berreskuratzea eskatua" + +#. TRANS: Title for password recovery page in password saved mode. +msgid "Password saved" +msgstr "Pasahitza gordea" + +#. TRANS: Title for field label for password reset form. +msgid "6 or more characters, and do not forget it!" +msgstr "6 karaktere edo gehiago eta etzazu ahaztu!" + +#. TRANS: Button text for password reset form. +msgctxt "BUTTON" +msgid "Reset" +msgstr "Berrezarri" + +#. TRANS: Form instructions for password recovery form. +msgid "Enter a nickname or email address." +msgstr "Sartu ezizen bat edo posta-e helbide bat." + +#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" + +#. TRANS: Client error displayed when trying to reset as password without providing a user. +msgid "Unexpected password reset." +msgstr "" + +#. TRANS: Reset password form validation error message. +msgid "Password must be 6 characters or more." +msgstr "" + +#. TRANS: Reset password form validation error message. +msgid "Password and confirmation do not match." +msgstr "" + +#. TRANS: Server error displayed when something does wrong with the user object during password reset. +#. TRANS: Server error displayed when saving fails during user registration. +msgid "Error setting user." +msgstr "" + +#. TRANS: Success message for user after password reset. +msgid "New password successfully saved. You are now logged in." +msgstr "" + +#. TRANS: Client exception thrown when no ID parameter was provided. +msgid "No id parameter." +msgstr "" + +#. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. +#. TRANS: %d is the provided ID for which the file is not present (number). +#, php-format +msgid "No such file \"%d\"." +msgstr "" + +#. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. +msgid "Sorry, only invited people can register." +msgstr "" + +#. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation. +msgid "Sorry, invalid invitation code." +msgstr "" + +#. TRANS: Title for registration page after a succesful registration. +msgid "Registration successful" +msgstr "Izen ematea burutu da" + +#. TRANS: Title for registration page. +msgctxt "TITLE" +msgid "Register" +msgstr "" + +#. TRANS: Client error displayed when trying to register to a closed site. +msgid "Registration not allowed." +msgstr "Izen ematea ez da baimentzen." + +#. TRANS: Form validation error displayed when trying to register without agreeing to the site license. +msgid "You cannot register if you do not agree to the license." +msgstr "" + +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. +msgid "Email address already exists." +msgstr "Posta-e helbide hori dagoeneko existitzen da." + +#. TRANS: Form validation error displayed when trying to register with an invalid username or password. +msgid "Invalid username or password." +msgstr "Okerreko erabiltzaile edo pasahitza." + +#. TRANS: Page notice on registration page. +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues." +msgstr "" + +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "" + +#. TRANS: Field label on account registration page. +msgctxt "LABEL" +msgid "Email" +msgstr "" + +#. TRANS: Field title on account registration page. +msgid "Used only for updates, announcements, and password recovery." +msgstr "" + +#. TRANS: Field title on account registration page. +msgid "Longer name, preferably your \"real\" name." +msgstr "" + +#. TRANS: Button text to register a user on account registration page. +msgctxt "BUTTON" +msgid "Register" +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for private sites. +#. TRANS: %1$s is the StatusNet sitename. +#, php-format +msgid "" +"I understand that content and data of %1$s are private and confidential." +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner. +#. TRANS: %1$s is the license owner. +#, php-format +msgid "My text and files are copyright by %1$s." +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. +msgid "My text and files remain under my own copyright." +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. +msgid "All rights reserved." +msgstr "Eskubide guztiak gordeak." + +#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" + +#. TRANS: Text displayed after successful account registration. +#. TRANS: %1$s is the registered nickname, %2$s is the profile URL. +#. TRANS: This message contains Markdown links in the form [link text](link) +#. TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax. +#, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + +#. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail. +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + +#. TRANS: Page notice for remote subscribe. This message contains Markdown links. +#. TRANS: Ensure to keep the correct markup of [link description](link). +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#. TRANS: Page title for Remote subscribe. +msgid "Remote subscribe" +msgstr "" + +#. TRANS: Field legend on page for remote subscribe. +msgid "Subscribe to a remote user" +msgstr "" + +#. TRANS: Field label on page for remote subscribe. +msgid "User nickname" +msgstr "Erabiltzailearen ezizena" + +#. TRANS: Field title on page for remote subscribe. +msgid "Nickname of the user you want to follow." +msgstr "Jarraitu nahi duzun erabiltzailearen ezizena." + +#. TRANS: Field label on page for remote subscribe. +msgid "Profile URL" +msgstr "Profilaren URLa" + +#. TRANS: Field title on page for remote subscribe. +msgid "URL of your profile on another compatible microblogging service." +msgstr "" + +#. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. +#. TRANS: Button text for subscribing to a list. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "" + +#. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. +msgid "Invalid profile URL (bad format)." +msgstr "" + +#. TRANS: Form validation error on page for remote subscribe when no the provided profile URL +#. TRANS: does not contain expected data. +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "" + +#. TRANS: Form validation error on page for remote subscribe. +msgid "That is a local profile! Login to subscribe." +msgstr "" + +#. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. +msgid "Could not get a request token." +msgstr "" + +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while delisting a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while delisting %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. +msgid "Unlisted" +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice while not logged in. +msgid "Only logged-in users can repeat notices." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice while not providing a notice ID. +#. TRANS: Client error displayed when trying to repeat a non-existing notice. +msgid "No notice specified." +msgstr "" + +#. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. +msgid "Repeated" +msgstr "" + +#. TRANS: Confirmation text after repeating a notice. +msgid "Repeated!" +msgstr "" + +#. TRANS: Title for first page of replies for a user. +#. TRANS: %s is a user nickname. +#. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#, php-format +msgid "Replies to %s" +msgstr "" + +#. TRANS: Title for all but the first page of replies for a user. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "" + +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#. TRANS: Empty list message for page with replies for a user. +#. TRANS: %1$s and %s$s are the user nickname. +#, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to them yet." +msgstr "" + +#. TRANS: Empty list message for page with replies for a user for the logged in user. +#. TRANS: This message contains a Markdown link in the form [link text](link). +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#. TRANS: Empty list message for page with replies for a user for all logged in users but the user themselves. +#. TRANS: %1$s, %2$s and %3$s are a user nickname. This message contains a Markdown link in the form [link text](link). +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." +"newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#. TRANS: RSS reply feed description. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. +#, php-format +msgid "Replies to %1$s on %2$s." +msgstr "" + +#. TRANS: Client exception displayed when trying to restore an account while not logged in. +msgid "Only logged-in users can restore their account." +msgstr "" + +#. TRANS: Client exception displayed when trying to restore an account without having restore rights. +msgid "You may not restore your account." +msgstr "" + +#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. +#. TRANS: Client exception. No file; probably just a non-AJAX submission. +msgid "No uploaded file." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#. TRANS: Client exception. +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#. TRANS: Client exception. +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. +msgid "Missing a temporary folder." +msgstr "" + +#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. +msgid "Failed to write file to disk." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. +msgid "File upload stopped by extension." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +#. TRANS: Exception thrown when uploading an image fails for an unknown reason. +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. +msgid "System error uploading file." +msgstr "" + +#. TRANS: Client exception thrown when a feed is not an Atom feed. +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. +msgid "Not an Atom feed." +msgstr "" + +#. TRANS: Success message when a feed has been restored. +msgid "" +"Feed has been restored. Your old posts should now appear in search and your " +"profile page." +msgstr "" + +#. TRANS: Message when a feed restore is in progress. +msgid "Feed will be restored. Please wait a few minutes for results." +msgstr "" + +#. TRANS: Form instructions for feed restore. +msgid "" +"You can upload a backed-up stream in Activity Streams format." +msgstr "" + +#. TRANS: Title for submit button to confirm upload of a user backup file for account restore. +msgid "Upload the file" +msgstr "" + +#. TRANS: Client error displayed when trying to revoke a role without having the right to do that. +msgid "You cannot revoke user roles on this site." +msgstr "" + +#. TRANS: Client error displayed when trying to revoke a role that is not set. +msgid "User does not have this role." +msgstr "" + +#. TRANS: Engine name for RSD. +#. TRANS: Engine name. +msgid "StatusNet" +msgstr "StatusNet" + +#. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. +msgid "You cannot sandbox users on this site." +msgstr "" + +#. TRANS: Client error displayed trying to sandbox an already sandboxed user. +msgid "User is already sandboxed." +msgstr "" + +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, php-format +msgid "Not a valid list: %s." +msgstr "" + +#. TRANS: Page title for page showing self tags. +#. TRANS: %1$s is a tag, %2$d is a page number. +#, php-format +msgid "Users self-tagged with %1$s, page %2$d" +msgstr "" + +#. TRANS: Title for the sessions administration panel. +msgctxt "TITLE" +msgid "Sessions" +msgstr "" + +#. TRANS: Instructions for the sessions administration panel. +msgid "Session settings for this StatusNet site" +msgstr "" + +#. TRANS: Fieldset legend on the sessions administration panel. +msgctxt "LEGEND" +msgid "Sessions" +msgstr "" + +#. TRANS: Checkbox title on the sessions administration panel. +#. TRANS: Indicates if StatusNet should handle session administration. +msgid "Handle sessions" +msgstr "" + +#. TRANS: Checkbox title on the sessions administration panel. +#. TRANS: Indicates if StatusNet should handle session administration. +msgid "Handle sessions ourselves." +msgstr "" + +#. TRANS: Checkbox label on the sessions administration panel. +#. TRANS: Indicates if StatusNet should write session debugging output. +msgid "Session debugging" +msgstr "" + +#. TRANS: Checkbox title on the sessions administration panel. +msgid "Enable debugging output for sessions." +msgstr "" + +#. TRANS: Title for submit button on the sessions administration panel. +msgid "Save session settings" +msgstr "" + +#. TRANS: Client error displayed trying to display an OAuth application while not logged in. +msgid "You must be logged in to view an application." +msgstr "" + +#. TRANS: Header on the OAuth application page. +msgid "Application profile" +msgstr "" + +#. TRANS: Information output on an OAuth application page. +#. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", +#. TRANS: %3$d is the number of users using the OAuth application. +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d user" +msgid_plural "Created by %1$s - %2$s access by default - %3$d users" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Header on the OAuth application page. +msgid "Application actions" +msgstr "" + +#. TRANS: Link text to edit application on the OAuth application page. +msgctxt "EDITAPP" +msgid "Edit" +msgstr "" + +#. TRANS: Button text on the OAuth application page. +#. TRANS: Resets the OAuth consumer key and secret. +msgid "Reset key & secret" +msgstr "" + +#. TRANS: Header on the OAuth application page. +msgid "Application info" +msgstr "" + +#. TRANS: Note on the OAuth application page about signature support. +msgid "" +"Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " +"not supported." +msgstr "" + +#. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#. TRANS: Title for all but the first page of favourite notices of a user. +#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number. +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "" + +#. TRANS: Server error displayed when favourite notices could not be retrieved from the database. +msgid "Could not retrieve favorite notices." +msgstr "" + +#. TRANS: Feed link text. %s is a username. +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s(r)en gogokoenen jarioa (RSS 1.0)" + +#. TRANS: Feed link text. %s is a username. +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s(r)en gogokoenen jarioa (RSS 2.0)" + +#. TRANS: Feed link text. %s is a username. +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s(r)en gogokoenen jarioa (Atom)" + +#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites. +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in. +#. TRANS: %s is a username. +#, php-format +msgid "" +"%s hasn't added any favorite notices yet. Post something interesting they " +"would add to their favorites :)" +msgstr "" + +#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in. +#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page. +#. TRANS: (link text)[link] is a Mark Down link. +#, php-format +msgid "" +"%s hasn't added any favorite notices yet. Why not [register an account](%%%%" +"action.register%%%%) and then post something interesting they would add to " +"their favorites :)" +msgstr "" + +#. TRANS: Page notice for show favourites page. +msgid "This is a way to share what you like." +msgstr "" + +#. TRANS: Page title for first group page. %s is a group name. +#, php-format +msgid "%s group" +msgstr "%s taldea" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group, page %2$d" +msgstr "%1$s taldea, %2$d orrialdea" + +#. TRANS: Tooltip for feed link. %s is a group nickname. +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#. TRANS: Tooltip for feed link. %s is a group nickname. +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#. TRANS: Tooltip for feed link. %s is a group nickname. +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#. TRANS: Tooltip for feed link. %s is a group nickname. +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#. TRANS: Header for mini list of group members on a group page (h2). +msgid "Members" +msgstr "" + +#. TRANS: Description for mini list of group members on a group page when the group has no members. +#. TRANS: Content of "Listed" page if there are no listed users. +#. TRANS: Content of "People following tag x" if there are no subscribed users. +#. TRANS: Empty list message for tags. +#. TRANS: Text for user subscription statistics if the user has no subscriptions. +#. TRANS: Text for user subscriber statistics if user has no subscribers. +#. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. +msgid "(None)" +msgstr "" + +#. TRANS: Link to all group members from mini list of group members if group has more than n members. +msgid "All members" +msgstr "" + +#. TRANS: Header for group statistics on a group page (h2). +#. TRANS: H2 text for user statistics. +msgid "Statistics" +msgstr "Estatistikak" + +#. TRANS: Label for group creation date. +msgctxt "LABEL" +msgid "Created" +msgstr "" + +#. TRANS: Label for member count in statistics on group page. +msgctxt "LABEL" +msgid "Members" +msgstr "" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. +#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#. TRANS: Title for list of group administrators on a group page. +msgctxt "TITLE" +msgid "Admins" +msgstr "" + +#. TRANS: Client error displayed requesting a single message that does not exist. +msgid "No such message." +msgstr "" + +#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. +msgid "Only the sender and recipient may read this message." +msgstr "" + +#. TRANS: Page title for single direct message display when viewing user is the sender. +#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#. TRANS: Page title for single message display. +#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "" + +#. TRANS: Client error displayed trying to show a deleted notice. +msgid "Notice deleted." +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format +msgid "Private timeline for %1$s list by you, page %2$d" +msgstr "" + +#. TRANS: Title for public list timeline where the viewer is the tagger. +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format +msgid "Timeline for %1$s list by you, page %2$d" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format +msgid "Timeline for %1$s list by %2$s, page %3$d" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %s is a list. +#, php-format +msgid "Private timeline of %s list by you" +msgstr "" + +#. TRANS: Title for public list timeline where the viewer is the tagger. +#. TRANS: %s is a list. +#, php-format +msgid "Timeline for %s list by you" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname. +#, php-format +msgid "Timeline for %1$s list by %2$s" +msgstr "" + +#. TRANS: Feed title. +#. TRANS: %1$s is a list, %2$s is tagger's nickname. +#, php-format +msgid "Feed for %1$s list by %2$s (Atom)" +msgstr "" + +#. TRANS: Empty list message for list timeline. +#. TRANS: %1$s is a list, %2$s is a tagger's nickname. +#, php-format +msgid "" +"This is the timeline for %1$s list by %2$s but no one has posted anything " +"yet." +msgstr "" + +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. +msgid "Try tagging more people." +msgstr "" + +#. TRANS: Additional empty list message for list timeline. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and start following " +"this timeline!" +msgstr "" + +#. TRANS: Header on show list page. +msgid "Listed" +msgstr "" + +#. TRANS: Link for more "People in list x by a user" +#. TRANS: if there are more than the mini list's maximum. +msgid "Show all" +msgstr "" + +#. TRANS: Header for tag subscribers. +#. TRANS: Link description for link to list of users subscribed to a tag. +msgid "Subscribers" +msgstr "Jarraitzen dituzunak" + +#. TRANS: Link for more "People following tag x" +#. TRANS: if there are more than the mini list's maximum. +msgid "All subscribers" +msgstr "Jarraitzen dituzun guztiak" + +#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: %1$s is the username, %2$s is the hash tag. +#, php-format +msgid "Notices by %1$s tagged %2$s" +msgstr "" + +#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. +#, php-format +msgid "Notices by %1$s tagged %2$s, page %3$d" +msgstr "" + +#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: %1$s is the username, %2$d is the page number. +#, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "" + +#. TRANS: Title for link to notice feed. +#. TRANS: %1$s is a user nickname, %2$s is a hashtag. +#, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "" + +#. TRANS: Title for link to notice feed. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#. TRANS: Title for link to notice feed. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#. TRANS: Title for link to notice feed. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. +#. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. +#, php-format +msgid "FOAF for %s" +msgstr "" + +#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#, php-format +msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." +msgstr "" + +#. TRANS: Second sentence of empty list message for a stream for the user themselves. +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: This message contains a Markdown link. Keep "](" together. +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" +"%?status_textarea=%2$s)." +msgstr "" + +#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: This message contains a Markdown link. Keep "](" together. +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: This message contains a Markdown link. Keep "](" together. +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#. TRANS: Link to the author of a repeated notice. %s is a linked nickname. +#, php-format +msgid "Repeat of %s" +msgstr "" + +#. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. +msgid "You cannot silence users on this site." +msgstr "" + +#. TRANS: Client error displayed trying to silence an already silenced user. +msgid "User is already silenced." +msgstr "" + +#. TRANS: Title for site administration panel. +msgctxt "TITLE" +msgid "Site" +msgstr "" + +#. TRANS: Instructions for site administration panel. +msgid "Basic settings for this StatusNet site" +msgstr "" + +#. TRANS: Client error displayed trying to save an empty site name. +msgid "Site name must have non-zero length." +msgstr "" + +#. TRANS: Client error displayed trying to save site settings without a contact address. +msgid "You must have a valid contact email address." +msgstr "" + +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Logoaren URL okerra." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Logoaren SSL URL okerra." + +#. TRANS: Client error displayed trying to save site settings with an invalid language code. +#. TRANS: %s is the invalid language code. +#, php-format +msgid "Unknown language \"%s\"." +msgstr "" + +#. TRANS: Client error displayed trying to save site settings with a text limit below 0. +msgid "Minimum text limit is 0 (unlimited)." +msgstr "" + +#. TRANS: Client error displayed trying to save site settings with a text limit below 1. +msgid "Dupe limit must be one or more seconds." +msgstr "" + +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" +msgid "General" +msgstr "" + +#. TRANS: Field label on site settings panel. +msgctxt "LABEL" +msgid "Site name" +msgstr "" + +#. TRANS: Field title on site settings panel. +msgid "The name of your site, like \"Yourcompany Microblog\"." +msgstr "" + +#. TRANS: Field label on site settings panel. +msgid "Brought by" +msgstr "" + +#. TRANS: Field title on site settings panel. +msgid "Text used for credits link in footer of each page." +msgstr "" + +#. TRANS: Field label on site settings panel. +msgid "Brought by URL" +msgstr "" + +#. TRANS: Field title on site settings panel. +msgid "URL used for credits link in footer of each page." +msgstr "" + +#. TRANS: Field label on site settings panel. +msgid "Email" +msgstr "Posta-e" + +#. TRANS: Field title on site settings panel. +msgid "Contact email address for your site." +msgstr "" + +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" +msgid "Local" +msgstr "" + +#. TRANS: Dropdown label on site settings panel. +msgid "Default timezone" +msgstr "" + +#. TRANS: Dropdown title on site settings panel. +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#. TRANS: Dropdown label on site settings panel. +msgid "Default language" +msgstr "" + +#. TRANS: Dropdown title on site settings panel. +msgid "" +"The site language when autodetection from browser settings is not available." +msgstr "" + +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" +msgid "Limits" +msgstr "" + +#. TRANS: Field label on site settings panel. +msgid "Text limit" +msgstr "" + +#. TRANS: Field title on site settings panel. +msgid "Maximum number of characters for notices." +msgstr "" + +#. TRANS: Field label on site settings panel. +msgid "Dupe limit" +msgstr "" + +#. TRANS: Field title on site settings panel. +msgid "How long users must wait (in seconds) to post the same thing again." +msgstr "" + +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotipoa" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Guneko logoa" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL logoa" + +#. TRANS: Button title for saving site settings. +#, fuzzy +msgid "Save the site settings." +msgstr "Gorde gunearen ezarpenak" + +#. TRANS: Page title for site-wide notice tab in admin panel. +msgid "Site Notice" +msgstr "Guneko mezua" + +#. TRANS: Instructions for site-wide notice tab in admin panel. +msgid "Edit site-wide message" +msgstr "Editatu gune osoko mezua" + +#. TRANS: Server error displayed when saving a site-wide notice was impossible. +msgid "Unable to save site notice." +msgstr "Ezinezkoa izan da guneko mezua gordetzea." + +#. TRANS: Client error displayed when a site-wide notice was longer than allowed. +msgid "Maximum length for the site-wide notice is 255 characters." +msgstr "Gune osoko mezuaren luzera maximoa 255 karaktere da." + +#. TRANS: Label for site-wide notice text field in admin panel. +msgid "Site notice text" +msgstr "Guneko mezuaren testua" + +#. TRANS: Tooltip for site-wide notice text field in admin panel. +msgid "Site-wide notice text (255 characters maximum; HTML allowed)" +msgstr "Gune osoko mezuaren testua (gehienez 255 karaktere; HTML-a baimendua)" + +#. TRANS: Title for button to save site notice in admin panel. +msgid "Save site notice." +msgstr "Guneko mezua gorde." + +#. TRANS: Title for SMS settings. +msgid "SMS settings" +msgstr "SMS ezarpenak" + +#. TRANS: SMS settings page instructions. +#. TRANS: %%site.name%% is the name of the site. +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#. TRANS: Message given in the SMS settings if SMS is not enabled on the site. +msgid "SMS is not available." +msgstr "SMS ez dago erabilgarri." + +#. TRANS: Form legend for SMS settings form. +msgid "SMS address" +msgstr "SMS helbidea" + +#. TRANS: Form guide in SMS settings form. +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#. TRANS: Form guide in IM settings form. +msgid "Awaiting confirmation on this phone number." +msgstr "" + +#. TRANS: Field label for SMS address input in SMS settings form. +msgid "Confirmation code" +msgstr "Baieztapen kodea" + +#. TRANS: Form field instructions in SMS settings form. +msgid "Enter the code you received on your phone." +msgstr "Sartu zure mugikorrean jasotako kodea." + +#. TRANS: Button label to confirm SMS confirmation code in SMS settings. +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Baieztatu" + +#. TRANS: Field label for SMS phone number input in SMS settings form. +msgid "SMS phone number" +msgstr "SMS telefono zenbakia" + +#. TRANS: SMS phone number input field instructions in SMS settings form. +msgid "Phone number, no punctuation or spaces, with area code." +msgstr "" + +#. TRANS: Form legend for SMS preferences form. +msgid "SMS preferences" +msgstr "SMS hobespenak" + +#. TRANS: Checkbox label in SMS preferences form. +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#. TRANS: Confirmation message for successful SMS preferences save. +msgid "SMS preferences saved." +msgstr "SMS hobespenak gordeak." + +#. TRANS: Message given saving SMS phone number without having provided one. +msgid "No phone number." +msgstr "Telefono zenbakirik ez." + +#. TRANS: Message given saving SMS phone number without having selected a carrier. +msgid "No carrier selected." +msgstr "Ez da enpresa aukeratu." + +#. TRANS: Message given saving SMS phone number that is already set. +msgid "That is already your phone number." +msgstr "Hori dagoeneko zure telefono zenbakia da." + +#. TRANS: Message given saving SMS phone number that is already set for another user. +msgid "That phone number already belongs to another user." +msgstr "Telefono zenbaki hori dagoeneko beste erabiltzaile batena da." + +#. TRANS: Message given saving valid SMS phone number that is to be confirmed. +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" + +#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. +msgid "That is the wrong confirmation number." +msgstr "Posta-e helbide hori okerrekoa da." + +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +msgid "Could not delete SMS confirmation." +msgstr "" + +#. TRANS: Message given after successfully canceling SMS phone number confirmation. +msgid "SMS confirmation cancelled." +msgstr "SMS baieztapena ezeztatuta." + +#. TRANS: Message given trying to remove an SMS phone number that is not +#. TRANS: registered for the active user. +msgid "That is not your phone number." +msgstr "Hori ez da zure telefono zenbakia." + +#. TRANS: Message given after successfully removing a registered SMS phone number. +msgid "The SMS phone number was removed." +msgstr "SMS telefono zenbakia ezabatuta dago." + +#. TRANS: Label for mobile carrier dropdown menu in SMS settings. +msgid "Mobile carrier" +msgstr "Mugikorreko enpresa" + +#. TRANS: Default option for mobile carrier dropdown menu in SMS settings. +msgid "Select a carrier" +msgstr "Aukeratu enpresa bat" + +#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. +#. TRANS: %s is an administrative contact's e-mail address. +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#. TRANS: Message given saving SMS phone number confirmation code without having provided one. +msgid "No code entered." +msgstr "Ez da koderik sartu." + +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" +msgid "Snapshots" +msgstr "Kapturak" + +#. TRANS: Instructions for admin panel to configure snapshots. +msgid "Manage snapshot configuration" +msgstr "Kapturen konfigurazioa kudeatu" + +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. +msgid "Invalid snapshot run value." +msgstr "" + +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. +msgid "Snapshot frequency must be a number." +msgstr "Kapturen maiztasuna zenbaki bat izan behar da." + +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. +msgid "Invalid snapshot report URL." +msgstr "" + +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "Kapturak" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +msgid "Randomly during web hit" +msgstr "Ausaz web bisita bitartean" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. +msgid "In a scheduled job" +msgstr "Programatutako ataza batean" + +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. +msgid "Data snapshots" +msgstr "Datu kapturak" + +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." +msgstr "Noiz bidali datu estatistikoak status.net-en zerbitzarietara" + +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. +msgid "Frequency" +msgstr "Maiztasuna" + +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." +msgstr "" + +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. +msgid "Report URL" +msgstr "" + +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." +msgstr "URL honetara bidaliko dira kapturak." + +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "Gorde gunearen ezarpenak" + +#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. +msgid "You are not subscribed to that profile." +msgstr "Ez zaude profil horretara harpidetua." + +#. TRANS: Server error displayed when updating a subscription fails with a database error. +#. TRANS: Exception thrown when a subscription could not be stored on the server. +msgid "Could not save subscription." +msgstr "Ezin izan da harpidetza gorde." + +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." +msgstr "" + +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "" + +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Page title when subscription succeeded. +msgid "Subscribed" +msgstr "Harpidetua" + +#. TRANS: Client error displayed when trying to perform an action while not logged in. +msgid "You must be logged in to unsubscribe from a list." +msgstr "" + +#. TRANS: Client error displayed when trying to perform an action without providing an ID. +msgid "No ID given." +msgstr "" + +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" +msgstr "" + +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, php-format +msgid "%1$s subscribed to list %2$s by %3$s" +msgstr "" + +#. TRANS: Header for list of subscribers for a user (first page). +#. TRANS: %s is the user's nickname. +#, php-format +msgid "%s subscribers" +msgstr "%s harpidedun" + +#. TRANS: Header for list of subscribers for a user (not first page). +#. TRANS: %1$s is the user's nickname, $2$d is the page number. +#, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "%1$s harpidedun, %2$d. orrialdea" + +#. TRANS: Page notice for page with an overview of all subscribers +#. TRANS: of the logged in user's own profile. +msgid "These are the people who listen to your notices." +msgstr "Hauek dira zure mezuak jarraitzen dituzten pertsonak." + +#. TRANS: Page notice for page with an overview of all subscribers of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "Hauek dira %s(r)en mezuak jarraitzen dituzten pertsonak." + +#. TRANS: Subscriber list text when the logged in user has no subscribers. +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor." +msgstr "" +"Ez duzu harpidedunik. Saiatu ezagutzen duzun pertsonetara harpidetzen eta " +"baliteke mesedea itzultzea." + +#. TRANS: Subscriber list text when looking at the subscribers for a of a user other +#. TRANS: than the logged in user that has no subscribers. %s is the user nickname. +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#. TRANS: This message contains a Markdown URL. The link description is between +#. TRANS: square brackets, and the link between parentheses. Do not separate "](" +#. TRANS: and do not change the URL part. +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "%1$s harpidetza,%2$d orrialdea" + +#. TRANS: Page notice for page with an overview of all subscriptions +#. TRANS: of the logged in user's own profile. +msgid "These are the people whose notices you listen to." +msgstr "Pertsona hauen mezuak dira jarraitzen dituzunak." + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#. TRANS: Subscription list text when the logged in user has no subscriptions. +#. TRANS: This message contains Markdown URLs. The link description is between +#. TRANS: square brackets, and the link between parentheses. Do not separate "](" +#. TRANS: and do not change the URL part. +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" +"Oraintxe bertan ez dituzu inoren mezuak jarraitzen, saiatu ezagutzen duzun " +"jendera harpidetzen. Egin froga [jende bilaketarekin](%%action.peoplesearch%" +"%), zure intereseko taldeetako kideak begiratu eta baita gure [bereizitako " +"erabiltzaileak](%%action.featured%%). [Twitter erabiltzailea](%%action." +"twittersettings%%) bazara, bertan jarraitzen duzun jendera automatikoki " +"harpidetu zaitezke." + +#. TRANS: Subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not listening to anyone." +msgstr "%s(e)k ez du inor jarraitzen." + +#. TRANS: Atom feed title. %s is a profile nickname. +#, php-format +msgid "Subscription feed for %s (Atom)" +msgstr "" + +#. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. +msgctxt "LABEL" +msgid "IM" +msgstr "BM" + +#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. +msgid "SMS" +msgstr "SMS" + +#. TRANS: Title for all but the first page of notices with tags. +#. TRANS: %1$s is the tag, %2$d is the page number. +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "%1$s(r)ekin etiketatutako mezuak, %2$d. orrialdea" + +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s etiketarentzako ohar jarioa (RSS 1.0)" + +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s etiketarentzako ohar jarioa (RSS 2.0)" + +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s etiketarentzako ohar jarioa (Atom)" + +#. TRANS: Client error displayed when trying to tag a user that cannot be tagged. +#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. +#. TRANS: Error displayed when trying to tag a user that cannot be tagged. +msgid "You cannot tag this user." +msgstr "" + +#. TRANS: Title for list form when not on a profile page. +msgid "List a profile" +msgstr "" + +#. TRANS: Title for list form when on a profile page. +#. TRANS: %s is a profile nickname. +#, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "" + +#. TRANS: Title for list form when an error has occurred. +msgctxt "TITLE" +msgid "Error" +msgstr "" + +#. TRANS: Header in list form. +msgid "User profile" +msgstr "Erabiltzaile profila" + +#. TRANS: Fieldset legend for list form. +msgid "List user" +msgstr "" + +#. TRANS: Field label on list form. +msgctxt "LABEL" +msgid "Lists" +msgstr "" + +#. TRANS: Field title on list form. +msgid "" +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " +"separated." +msgstr "" + +#. TRANS: Title for personal tag cloud section. +msgctxt "TITLE" +msgid "Tags" +msgstr "Etiketak" + +#. TRANS: Success message if lists are saved. +msgid "Lists saved." +msgstr "" + +#. TRANS: Page notice. +msgid "Use this form to add your subscribers or subscriptions to lists." +msgstr "" + +#. TRANS: Client error when requesting a tag feed for a non-existing tag. +msgid "No such tag." +msgstr "Etiketa hori ez dago." + +#. TRANS: Client error displayed when trying to unblock a non-blocked user. +msgid "You haven't blocked that user." +msgstr "Ez duzu erabiltzaile hori blokeatu." + +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. +msgid "User is not sandboxed." +msgstr "" + +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. +msgid "User is not silenced." +msgstr "Erabiltzailea ez da isilarazi." + +#. TRANS: Page title for page to unsubscribe. +msgid "Unsubscribed" +msgstr "Ez harpidetua" + +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" +msgstr "" + +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. +#, php-format +msgid "" +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." +msgstr "" + +#. TRANS: Title of URL settings tab in profile settings. +msgid "URL settings" +msgstr "" + +#. TRANS: Instructions for tab "Other" in user profile settings. +msgid "Manage various other options." +msgstr "Kudeatu bestelako aukera batzuk." + +#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a +#. TRANS: user's profile settings. This message has one space at the beginning. Use your +#. TRANS: language's word separator here if it has one (most likely a single space). +msgid " (free service)" +msgstr "(zerbitzu askea)" + +#. TRANS: Default value for URL shortening settings. +msgid "[none]" +msgstr "[bat ere ez]" + +#. TRANS: Default value for URL shortening settings. +msgid "[internal]" +msgstr "[barnekoa]" + +#. TRANS: Label for dropdown with URL shortener services. +msgid "Shorten URLs with" +msgstr "URLak laburtu hauekin" + +#. TRANS: Tooltip for for dropdown with URL shortener services. +msgid "Automatic shortening service to use." +msgstr "Laburtze automatikorako erabiliko den zerbitzua." + +#. TRANS: Field label in URL settings in profile. +msgid "URL longer than" +msgstr "" + +#. TRANS: Field title in URL settings in profile. +msgid "URLs longer than this will be shortened, 0 means always shorten." +msgstr "" + +#. TRANS: Field label in URL settings in profile. +msgid "Text longer than" +msgstr "" + +#. TRANS: Field title in URL settings in profile. +msgid "" +"URLs in notices longer than this will be shortened, 0 means always shorten." +msgstr "" + +#. TRANS: Form validation error for form "Other settings" in user profile. +msgid "URL shortening service is too long (maximum 50 characters)." +msgstr "URLak laburtzeko zerbitzua luzeegia da (gehienez 50 karaktere)." + +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." +msgstr "" + +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." +msgstr "" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. +msgid "Error saving user URL shortening preferences." +msgstr "" + +#. TRANS: User admin panel title. +msgctxt "TITLE" +msgid "User" +msgstr "Erabiltzailea" + +#. TRANS: Instruction for user admin panel. +msgid "User settings for this StatusNet site" +msgstr "Erabiltzailearen ezarpenak StatusNet gune honetarako" + +#. TRANS: Form validation error in user admin panel when a non-numeric character limit was set. +msgid "Invalid bio limit. Must be numeric." +msgstr "Biografia luzera baliogabea. Zenbakia izan behar da." + +#. TRANS: Form validation error in user admin panel when welcome text is too long. +msgid "Invalid welcome text. Maximum length is 255 characters." +msgstr "Sarrera testu baliogabea. Gehienez 255 karaktere izan ditzake." + +#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new +#. TRANS: users in user admin panel. %1$s is the invalid nickname. +#, php-format +msgid "Invalid default subscripton: \"%1$s\" is not a user." +msgstr "" + +#. TRANS: Fieldset legend in user administration panel. +msgctxt "LEGEND" +msgid "Profile" +msgstr "Profila" + +#. TRANS: Field label in user admin panel for setting the character limit for the bio field. +msgid "Bio Limit" +msgstr "Biografiaren muga" + +#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. +msgid "Maximum length of a profile bio in characters." +msgstr "Profileko biografiaren luzera maximoa karakteretan." + +#. TRANS: Form legend in user admin panel. +msgid "New users" +msgstr "Erabiltzaile berriak" + +#. TRANS: Field label in user admin panel for setting new user welcome text. +msgid "New user welcome" +msgstr "Erabiltzaile berriaren ongi etorria" + +#. TRANS: Tooltip in user admin panel for setting new user welcome text. +msgid "Welcome text for new users (maximum 255 characters)." +msgstr "Ongi etorri testua erabiltzaile berrientzat (gehienez 255 karaktere)." + +#. TRANS: Field label in user admin panel for setting default subscription for new users. +msgid "Default subscription" +msgstr "" + +#. TRANS: Tooltip in user admin panel for setting default subscription for new users. +msgid "Automatically subscribe new users to this user." +msgstr "" + +#. TRANS: Form legend in user admin panel. +msgid "Invitations" +msgstr "Gonbidapenak" + +#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. +msgid "Invitations enabled" +msgstr "Gonbidapenak gaituta" + +#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. +msgid "Whether to allow users to invite new users." +msgstr "Onartu erabiltzaileek beste erabiltzaile batzuk gonbidatzea." + +#. TRANS: Title for button to save user settings in user admin panel. +msgid "Save user settings." +msgstr "Gorde erabiltzailearen ezarpenak" + +#. TRANS: Page title. +msgid "Authorize subscription" +msgstr "Baimendu harpidetzea" + +#. TRANS: Page notice on "Authorize subscription" page. +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click \"Reject\"." +msgstr "" + +#. TRANS: Button text on Authorise Subscription page. +#. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Onartu" + +#. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. +msgid "Subscribe to this user." +msgstr "Erabiltzaile hau jarraitu." + +#. TRANS: Button text on Authorise Subscription page. +#. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Uko egin" + +#. TRANS: Title for button on Authorise Subscription page. +msgid "Reject this subscription." +msgstr "Harpidetzari uko egin." + +#. TRANS: Client error displayed for an empty authorisation request. +msgid "No authorization request!" +msgstr "Ez dago baimen eskaerarik!" + +#. TRANS: Accept message header from Authorise subscription page. +msgid "Subscription authorized" +msgstr "Harpidetza baimendua" + +#. TRANS: Accept message text from Authorise subscription page. +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#. TRANS: Reject message header from Authorise subscription page. +msgid "Subscription rejected" +msgstr "Harpidetzari uko egin saio" + +#. TRANS: Reject message from Authorise subscription page. +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. +#, php-format +msgid "Listener URI \"%s\" not found here." +msgstr "Entzulearen \"%s\" URIa ez da hemen aurkitu." + +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. +#, php-format +msgid "Listenee URI \"%s\" is too long." +msgstr "Entzulearen \"%s\" URIa luzeegia da." + +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. +#, php-format +msgid "Listenee URI \"%s\" is a local user." +msgstr "Entzulearen \"%s\" URIa erabiltzaile lokala da." + +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. +#, php-format +msgid "Profile URL \"%s\" is for a local user." +msgstr "Profilaren \"%s\" URLa erabiltzaile lokal batena da." + +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. +#, php-format +msgid "Avatar URL \"%s\" is not valid." +msgstr "Avatarraren \"%s\" URLa ez da baliozkoa." + +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#, php-format +msgid "Cannot read avatar URL \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#, php-format +msgid "Wrong image type for avatar URL \"%s\"." +msgstr "" + +#. TRANS: Page title for all but the first page of groups for a user. +#. TRANS: %1$s is a nickname, %2$d is a page number. +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "%1$s talde, %2$d. orrialdea" + +#. TRANS: Link text on group page to search for groups. +msgid "Search for more groups" +msgstr "Talde gehiago bilatu" + +#. TRANS: Text on group page for a user that is not a member of any group. +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#. TRANS: Text on group page for a user that is not a member of any group. This message contains +#. TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed. +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" +"Saiatu [taldeak bilatzen](%%action.groupsearch%%) eta beraietara batzen." + +#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom group notice feed. +#. TRANS: %1$s is a group name, %2$s is a site name. +#. TRANS: Message is used as a subtitle in atom user notice feed. +#. TRANS: %1$s is a user name, %2$s is a site name. +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s(e)n %1$s(e)k bidalitako azken mezuak!" + +#. TRANS: Title for version page. %s is the StatusNet version. +#, php-format +msgid "StatusNet %s" +msgstr "StatusNet %s" + +#. TRANS: Content part of StatusNet version page. +#. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. +#, php-format +msgid "" +"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " +"Inc. and contributors." +msgstr "" +"Gune hau %1$s(e)n %2$s bertsioak kudeatzen du, Copyright-a 2008-2011 " +"StatusNet, Inc. eta bere laguntzaileena." + +#. TRANS: Header for StatusNet contributors section on the version page. +msgid "Contributors" +msgstr "" + +#. TRANS: Header for StatusNet license section on the version page. +msgid "License" +msgstr "Lizentzia" + +#. TRANS: Content part of StatusNet version page. +msgid "" +"StatusNet is free software: you can redistribute it and/or modify it under " +"the terms of the GNU Affero General Public License as published by the Free " +"Software Foundation, either version 3 of the License, or (at your option) " +"any later version. " +msgstr "" + +#. TRANS: Content part of StatusNet version page. +msgid "" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " +"for more details. " +msgstr "" + +#. TRANS: Content part of StatusNet version page. +#. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". +#, php-format +msgid "" +"You should have received a copy of the GNU Affero General Public License " +"along with this program. If not, see %s." +msgstr "" + +#. TRANS: Header for StatusNet plugins section on the version page. +msgid "Plugins" +msgstr "Pluginak" + +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Name" +msgstr "Izena" + +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Version" +msgstr "Bertsioa" + +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Author(s)" +msgstr "Egilea(k)" + +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Description" +msgstr "" + +#. TRANS: Activity title when marking a notice as favorite. +msgid "Favor" +msgstr "" + +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" + +#. TRANS: Server exception thrown when a URL cannot be processed. +#, php-format +msgid "Cannot process URL '%s'" +msgstr "'%s' URL-a ezin da prozesatu" + +#. TRANS: Server exception thrown when... Robin thinks something is impossible! +msgid "Robin thinks something is impossible." +msgstr "Aitorrek zerbait ezinezkoa dela uste du." + +#. TRANS: Message given if an upload is larger than the configured maximum. +#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. +#. TRANS: %1$s is used for plural. +#, php-format +msgid "" +"No file may be larger than %1$d byte and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgid_plural "" +"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " +"Try to upload a smaller version." +msgstr[0] "" +"Fitxategiek ezin dute byte %1$detik gorako tamainarik izan eta bidali " +"duzunak %2$d dauzka. Saiatu fitxategi txikiagoa igotzen." +msgstr[1] "" +"Fitxategiek ezin dute %1$d bytetik gorako tamainarik izan eta bidali duzunak " +"%2$d dauzka. Saiatu fitxategi txikiagoa igotzen." + +#. TRANS: Message given if an upload would exceed user quota. +#. TRANS: %d (number) is the user quota in bytes and is used for plural. +#, php-format +msgid "A file this large would exceed your user quota of %d byte." +msgid_plural "A file this large would exceed your user quota of %d bytes." +msgstr[0] "Neurri honetako fitxategiak zure byte %deko kuota gainditu lezake." +msgstr[1] "Neurri honetako fitxategiak zure %d byteko kuota gainditu lezake." + +#. TRANS: Message given id an upload would exceed a user's monthly quota. +#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. +#, php-format +msgid "A file this large would exceed your monthly quota of %d byte." +msgid_plural "A file this large would exceed your monthly quota of %d bytes." +msgstr[0] "" +"Neurri honetako fitxategiak zure hileko byte %deko kuota gainditu lezake." +msgstr[1] "" +"Neurri honetako fitxategiak zure hileko %d byteko kuota gainditu lezake." + +#. TRANS: Client exception thrown if a file upload does not have a valid name. +msgid "Invalid filename." +msgstr "" + +#. TRANS: Exception thrown providing an invalid profile ID. +#. TRANS: %s is the invalid profile ID. +#, php-format +msgid "Profile ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown providing an invalid group ID. +#. TRANS: %s is the invalid group ID. +#, php-format +msgid "Group ID %s is invalid." +msgstr "" + +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "" + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "" + +#. TRANS: Activity title. +msgid "Join" +msgstr "Bat egin" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s %2$s taldera batu da." + +#. TRANS: Server exception thrown when updating a local group fails. +msgid "Could not update local group." +msgstr "Ezin izan da talde lokala eguneratu." + +#. TRANS: Exception thrown when trying creating a login token failed. +#. TRANS: %s is the user nickname for which token creation failed. +#, php-format +msgid "Could not create login token for %s" +msgstr "" + +#. TRANS: Exception thrown when database name or Data Source Name could not be found. +msgid "No database name or DSN found anywhere." +msgstr "" + +#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. +msgid "You are banned from sending direct messages." +msgstr "" + +#. TRANS: Message given when a message could not be stored on the server. +msgid "Could not insert message." +msgstr "Ezin izan da mezua txertatu." + +#. TRANS: Message given when a message could not be updated on the server. +msgid "Could not update message with new URI." +msgstr "" + +#. TRANS: Server exception thrown when a user profile for a notice cannot be found. +#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). +#, php-format +msgid "No such profile (%1$d) for notice (%2$d)." +msgstr "" + +#. TRANS: Server exception. %s are the error details. +#, php-format +msgid "Database error inserting hashtag: %s." +msgstr "" + +#. TRANS: Client exception thrown if a notice contains too many characters. +msgid "Problem saving notice. Too long." +msgstr "Arazoa mezua gordetzean. Luzeegia da." + +#. TRANS: Client exception thrown when trying to save a notice for an unknown user. +msgid "Problem saving notice. Unknown user." +msgstr "" + +#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#. TRANS: Client exception thrown when a user tries to post while being banned. +msgid "You are banned from posting notices on this site." +msgstr "" + +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +msgid "Cannot repeat a private notice." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "" + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "" + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + +#. TRANS: Server exception thrown when a notice cannot be saved. +#. TRANS: Server exception thrown when a notice cannot be updated. +msgid "Problem saving notice." +msgstr "Arazoa mezua gordetzean." + +#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). +msgid "Bad type provided to saveKnownGroups." +msgstr "" + +#. TRANS: Server exception thrown when an update for a group inbox fails. +msgid "Problem saving group inbox." +msgstr "" + +#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. +#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" + +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. +#. TRANS: Full name of a profile or group followed by nickname in parens +#, php-format +msgctxt "FANCYNAME" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. +#. TRANS: %1$s is the role name, %2$s is the user ID (number). +#, php-format +msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." +msgstr "#%2$d erabiltzaileari ezin zaio \"%1$s\" rola kendu; ez da existitzen." + +#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. +#. TRANS: %1$s is the role name, %2$s is the user ID (number). +#, php-format +msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." +msgstr "" +"#%2$d erabiltzaileari ezin zaio \"%1$s\" rola kendu; errorea datu-basean." + +#. TRANS: Server exception. +msgid "The tag you are trying to rename to already exists." +msgstr "" + +#. TRANS: Server exception saving new tag without having a tagger specified. +msgid "No tagger specified." +msgstr "" + +#. TRANS: Server exception saving new tag without having a tag specified. +msgid "No tag specified." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not create profile tag." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not set profile tag URI." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not set profile tag mainpage." +msgstr "" + +#. TRANS: Client exception thrown trying to set more tags than allowed. +#, php-format +msgid "" +"You already have created %d or more tags which is the maximum allowed number " +"of tags. Try using or deleting some existing tags." +msgstr "" + +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, php-format +msgid "" +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." +msgstr "" + +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +msgid "Adding list subscription failed." +msgstr "" + +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +msgid "Removing list subscription failed." +msgstr "" + +#. TRANS: Exception thrown when a right for a non-existing user profile is checked. +msgid "Missing profile." +msgstr "Erabiltzaileak ez du profilik." + +#. TRANS: Exception thrown when a tag cannot be saved. +msgid "Unable to save tag." +msgstr "Ezin izan da etiketa gorde." + +#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. +#. TRANS: Error message displayed to a banned user when they try to subscribe. +msgid "You have been banned from subscribing." +msgstr "Erabiltzaileak ez dizu harpidetza uzten." + +#. TRANS: Exception thrown when trying to subscribe while already subscribed. +msgid "Already subscribed!" +msgstr "Dagoeneko harpidetua!" + +#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. +msgid "User has blocked you." +msgstr "Lankideak blokeatu zaitu." + +#. TRANS: Exception thrown when trying to unsibscribe without a subscription. +msgid "Not subscribed!" +msgstr "Ez harpidetua!" + +#. TRANS: Exception thrown when trying to unsubscribe a user from themselves. +msgid "Could not delete self-subscription." +msgstr "" + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "" + +#. TRANS: Exception thrown when a subscription could not be deleted on the server. +msgid "Could not delete subscription." +msgstr "Ezin izan da harpidetza ezabatu." + +#. TRANS: Activity title when subscribing to another person. +msgctxt "TITLE" +msgid "Follow" +msgstr "Jarraitu" + +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s(e)k orain %2$s jarraitzen du." + +#. TRANS: Notice given on user registration. +#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Ongi etorri %1$s(e)ra, @%2$s!" + +#. TRANS: Exception thrown when trying view "repeated to me". +msgid "Not implemented since inbox change." +msgstr "" + +#. TRANS: Server exception. +msgid "No single user defined for single-user mode." +msgstr "" + +#. TRANS: Server exception. +msgid "Single-user mode code called when not enabled." +msgstr "" + +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "" + +#. TRANS: Server exception thrown when creating a group failed. +msgid "Could not create group." +msgstr "Ezin izan da taldea sortu." + +#. TRANS: Server exception thrown when updating a group URI failed. +msgid "Could not set group URI." +msgstr "" + +#. TRANS: Server exception thrown when setting group membership failed. +msgid "Could not set group membership." +msgstr "" + +#. TRANS: Server exception thrown when saving local group information failed. +msgid "Could not save local group info." +msgstr "" + +#. TRANS: Exception thrown when an account could not be located when it should be moved. +#. TRANS: %s is the remote site. +#, php-format +msgid "Cannot locate account %s." +msgstr "" + +#. TRANS: Exception thrown when a service document could not be located account move. +#. TRANS: %s is the remote site. +#, php-format +msgid "Cannot find XRD for %s." +msgstr "" + +#. TRANS: Exception thrown when an account could not be located when it should be moved. +#. TRANS: %s is the remote site. +#, php-format +msgid "No AtomPub API service for %s." +msgstr "" + +#. TRANS: H2 for user actions in a profile. +#. TRANS: H2 for entity actions in a profile. +msgid "User actions" +msgstr "Erabiltzailearen ekintzak" + +#. TRANS: Text shown in user profile of not yet compeltely deleted users. +msgid "User deletion in progress..." +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Edit profile settings." +msgstr "Editatu profileko ezarpenak." + +#. TRANS: Link text for link on user profile. +msgctxt "BUTTON" +msgid "Edit" +msgstr "Editatu" + +#. TRANS: Link title for link on user profile. +msgid "Send a direct message to this user." +msgstr "Bidali mezu bat zuzenean erabiltzaile honi" + +#. TRANS: Link text for link on user profile. +msgctxt "BUTTON" +msgid "Message" +msgstr "Mezua" + +#. TRANS: Label text on user profile to select a user role. +msgid "Moderate" +msgstr "Moderatu" + +#. TRANS: Label text on user profile to select a user role. +msgid "User role" +msgstr "Erabiltzaile rola" + +#. TRANS: Role that can be set for a user profile. +msgctxt "role" +msgid "Administrator" +msgstr "Administratzailea" + +#. TRANS: Role that can be set for a user profile. +msgctxt "role" +msgid "Moderator" +msgstr "Moderatzailea" + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" + +#. TRANS: Page title for a page without a title set. +msgid "Untitled page" +msgstr "Orrialde izengabea" + +#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. +msgctxt "TOOLTIP" +msgid "Show more" +msgstr "Erakutsi gehiago" + +#. TRANS: Inline reply form submit button: submits a reply comment. +msgctxt "BUTTON" +msgid "Reply" +msgstr "Erantzun" + +#. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. +#. TRANS: Field label for reply mini form. +msgid "Write a reply..." +msgstr "Erantzuna idatzi..." + +#. TRANS: Tab on the notice form. +msgctxt "TAB" +msgid "Status" +msgstr "Egoera" + +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." +msgstr "" + +#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. +#, php-format +msgid "**%%site.name%%** is a microblogging service." +msgstr "" + +#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. +#. TRANS: Make sure there is no whitespace between "]" and "(". +#. TRANS: Text between [] is a link description, text between () is the link itself. +#. TRANS: %s is the version of StatusNet that is being used. +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + +#. TRANS: Content license displayed when license is set to 'private'. +#. TRANS: %1$s is the site name. +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "%1$s(r)en datuak eta edukia pribatuak eta isilpekoak dira." + +#. TRANS: Content license displayed when license is set to 'allrightsreserved'. +#. TRANS: %1$s is the copyright owner. +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" +"%1$s(r)en copyright-arekin babestutako eduki eta datuak. Eskubide guztiak " +"gordeak." + +#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#. TRANS: license message in footer. +#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. +#, php-format +msgid "All %1$s content and data are available under the %2$s license." +msgstr "" + +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: present than the currently displayed information. +msgid "After" +msgstr "Lehenago" + +#. TRANS: Pagination message to go to a page displaying information more in the +#. TRANS: past than the currently displayed information. +msgid "Before" +msgstr "Beranduago" + +#. TRANS: Client exception thrown when a feed instance is a DOMDocument. +msgid "Expecting a root feed element but got a whole XML document." +msgstr "" + +#. TRANS: Client exception thrown when using an unknown verb for the activity importer. +#, php-format +msgid "Unknown verb: \"%s\"." +msgstr "Hizkuntza ezezaguna: \"%s\"" + +#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. +msgid "Cannot force subscription for untrusted user." +msgstr "" + +#. TRANS: Client exception thrown when trying to force a remote user to subscribe. +msgid "Cannot force remote user to subscribe." +msgstr "" + +#. TRANS: Client exception thrown when trying to subscribe to an unknown profile. +msgid "Unknown profile." +msgstr "Profil ezezaguna." + +#. TRANS: Client exception thrown when trying to import an event not related to the importing user. +msgid "This activity seems unrelated to our user." +msgstr "" + +#. TRANS: Client exception thrown when trying to join a remote group that is not a group. +msgid "Remote profile is not a group!" +msgstr "" + +#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. +msgid "User is already a member of this group." +msgstr "Erabiltzailea dagoeneko talde honetako partaidea da." + +#. TRANS: Client exception thrown when trying to import a notice by another user. +#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. +#, php-format +msgid "Already know about notice %1$s and it has a different author %2$s." +msgstr "" + +#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. +msgid "Not overwriting author info for non-trusted user." +msgstr "" + +#. TRANS: Client exception thrown when trying to import a notice without content. +#. TRANS: %s is the notice URI. +#, php-format +msgid "No content for notice %s." +msgstr "" + +#. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. +#, php-format +msgid "No such user \"%s\"." +msgstr "" + +#. TRANS: Client exception thrown when post to collection fails with a 400 status. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#. TRANS: Server exception thrown when post to collection fails with a 500 status. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#. TRANS: Exception thrown when post to collection fails with a status that is not handled. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#, php-format +msgctxt "URLSTATUSREASON" +msgid "%1$s %2$s %3$s" +msgstr "" + +#. TRANS: Client exception thrown when there is no source attribute. +msgid "Can't handle remote content yet." +msgstr "" + +#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. +msgid "Can't handle embedded XML content yet." +msgstr "" + +#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. +msgid "Can't handle embedded Base64 content yet." +msgstr "" + +#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. +msgid "You cannot make changes to this site." +msgstr "" + +#. TRANS: Client error message throw when a certain panel's settings cannot be changed. +msgid "Changes to that panel are not allowed." +msgstr "" + +#. TRANS: Client error message. +msgid "showForm() not implemented." +msgstr "showForm() ez dago inplementaturik." + +#. TRANS: Client error message +msgid "saveSettings() not implemented." +msgstr "saveSettings() ez dago inplementaturik." + +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Home" +msgstr "Etxea" + +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Home" +msgstr "" + +#. TRANS: Header in administrator navigation panel. +msgctxt "HEADER" +msgid "Admin" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Basic site configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Site" +msgstr "Gunea" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "User configuration" +msgstr "Erabiltzailearen konfigurazioa" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "User" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Access configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Paths configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Sessions configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Sessions" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Edit site notice" +msgstr "Aldatu guneko oharra" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Site notice" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Snapshots configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Set site license" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "License" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Plugins configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + +#. TRANS: Client error 401. +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#. TRANS: OAuth exception thrown when no application is found for a given consumer key. +msgid "No application for that consumer key." +msgstr "" + +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. +msgid "Not allowed to use API." +msgstr "" + +#. TRANS: OAuth exception given when an incorrect access token was given for a user. +msgid "Bad access token." +msgstr "" + +#. TRANS: OAuth exception given when no user was found for a given token (no token was found). +msgid "No user for that token." +msgstr "" + +#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". +#. TRANS: Client error thrown when authentication fails. +msgid "Could not authenticate you." +msgstr "" + +#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. +msgid "Could not create anonymous consumer." +msgstr "" + +#. TRANS: Server error displayed when trying to create an anynymous OAuth application. +msgid "Could not create anonymous OAuth application." +msgstr "" + +#. TRANS: Exception thrown when no token association could be found. +msgid "" +"Could not find a profile and application associated with the request token." +msgstr "" + +#. TRANS: Exception thrown when no access token can be issued. +msgid "Could not issue access token." +msgstr "" + +#. TRANS: Exception thrown when a database error occurs. +msgid "Database error inserting OAuth application user." +msgstr "OAuth Aplikazioaren lankidea ezartzean datu basearen errorea." + +#. TRANS: Exception thrown when a database error occurs. +msgid "Database error updating OAuth application user." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to revoke an unknown token. +msgid "Tried to revoke unknown token." +msgstr "" + +#. TRANS: Exception thrown when an attempt is made to remove a revoked token. +msgid "Failed to delete revoked token." +msgstr "" + +#. TRANS: Form input field label for application icon. +msgid "Icon" +msgstr "Ikonoa" + +#. TRANS: Form guide. +msgid "Icon for this application" +msgstr "" + +#. TRANS: Form input field label for application name. +msgid "Name" +msgstr "Izena" + +#. TRANS: Form input field instructions. +#. TRANS: %d is the number of available characters for the description. +#, php-format +msgid "Describe your application in %d character" +msgid_plural "Describe your application in %d characters" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Form input field instructions. +msgid "Describe your application" +msgstr "" + +#. TRANS: Form input field label. +#. TRANS: Text area label on group edit form; contains description of group. +#. TRANS: Field label for description of list. +#. TRANS: Dropdown option for searching in profiles. +msgid "Description" +msgstr "Deskripzioa" + +#. TRANS: Form input field instructions. +msgid "URL of the homepage of this application" +msgstr "" + +#. TRANS: Form input field label. +msgid "Source URL" +msgstr "" + +#. TRANS: Form input field instructions. +msgid "Organization responsible for this application" +msgstr "" + +#. TRANS: Form input field label. +msgid "Organization" +msgstr "Erakundea" + +#. TRANS: Form input field instructions. +msgid "URL for the homepage of the organization" +msgstr "" + +#. TRANS: Form input field instructions. +msgid "URL to redirect to after authentication" +msgstr "" + +#. TRANS: Radio button label for application type +msgid "Browser" +msgstr "" + +#. TRANS: Radio button label for application type +msgid "Desktop" +msgstr "" + +#. TRANS: Form guide. +msgid "Type of application, browser or desktop" +msgstr "" + +#. TRANS: Radio button label for access type. +msgid "Read-only" +msgstr "" + +#. TRANS: Radio button label for access type. +msgid "Read-write" +msgstr "" + +#. TRANS: Form guide. +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#. TRANS: Submit button title. +msgid "Cancel" +msgstr "" + +#. TRANS: Submit button title. +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Gorde" + +#. TRANS: Name for an anonymous application in application list. +msgid "Unknown application" +msgstr "" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. +msgid " by " +msgstr "" + +#. TRANS: Application access type +msgid "read-write" +msgstr "" + +#. TRANS: Application access type +msgid "read-only" +msgstr "" + +#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") +#, php-format +msgid "Approved %1$s - \"%2$s\" access." +msgstr "" + +#. TRANS: Access token in the application list. +#. TRANS: %s are the first 7 characters of the access token. +#, php-format +msgid "Access token starting with: %s" +msgstr "" + +#. TRANS: Button label in application list to revoke access to user data. +msgctxt "BUTTON" +msgid "Revoke" +msgstr "" + +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. +msgid "Author element must contain a name element." +msgstr "" + +#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. +msgid "Do not use this method!" +msgstr "" + +#. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. +#, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "" + +#. TRANS: Message is used as a subtitle in atom list notice feed. +#. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. +#, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" +msgstr "" + +#. TRANS: Title. +msgid "Notices where this attachment appears" +msgstr "" + +#. TRANS: Title. +msgid "Tags for this attachment" +msgstr "" + +#. TRANS: Exception thrown when a password change fails. +msgid "Password changing failed." +msgstr "" + +#. TRANS: Exception thrown when a password change attempt fails because it is not allowed. +msgid "Password changing is not allowed." +msgstr "" + +#. TRANS: Title for the form to block a user. +msgid "Block" +msgstr "" + +#. TRANS: Description of the form to block a user. +msgid "Block this user" +msgstr "Erabiltzaile hau blokeatu" + +#. TRANS: Submit button text on form to cancel group join request. +msgctxt "BUTTON" +msgid "Cancel join request" +msgstr "" + +#. TRANS: Button text for form action to cancel a subscription request. +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "" + +#. TRANS: Title for command results. +msgid "Command results" +msgstr "" + +#. TRANS: Title for command results. +msgid "AJAX error" +msgstr "" + +#. TRANS: E-mail subject when a command has completed. +#. TRANS: E-mail subject for reply to an e-mail command. +msgid "Command complete" +msgstr "" + +#. TRANS: E-mail subject when a command has failed. +msgid "Command failed" +msgstr "" + +#. TRANS: Command exception text shown when a notice ID is requested that does not exist. +msgid "Notice with that id does not exist." +msgstr "" + +#. TRANS: Command exception text shown when a last user notice is requested and it does not exist. +#. TRANS: Error text shown when a last user notice is requested and it does not exist. +msgid "User has no last notice." +msgstr "" + +#. TRANS: Message given requesting a profile for a non-existing user. +#. TRANS: %s is the nickname of the user for which the profile could not be found. +#, php-format +msgid "Could not find a user with nickname %s." +msgstr "" + +#. TRANS: Message given getting a non-existing user. +#. TRANS: %s is the nickname of the user that could not be found. +#, php-format +msgid "Could not find a local user with nickname %s." +msgstr "" + +#. TRANS: Error text shown when an unimplemented command is given. +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#. TRANS: Command exception text shown when a user tries to nudge themselves. +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#. TRANS: Message given having nudged another user. +#. TRANS: %s is the nickname of the user that was nudged. +#, php-format +msgid "Nudge sent to %s." +msgstr "" + +#. TRANS: User statistics text. +#. TRANS: %1$s is the number of other user the user is subscribed to. +#. TRANS: %2$s is the number of users that are subscribed to the user. +#. TRANS: %3$s is the number of notices the user has sent. +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. +msgid "Could not create favorite: Already favorited." +msgstr "" + +#. TRANS: Text shown when a notice has been marked as favourite successfully. +msgid "Notice marked as fave." +msgstr "" + +#. TRANS: Message given having added a user to a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#, php-format +msgid "%1$s joined group %2$s." +msgstr "" + +#. TRANS: Message given having removed a user from a group. +#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. +#, php-format +msgid "%1$s left group %2$s." +msgstr "" + +#. TRANS: Error displayed if tagging a user fails. +#. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). +#, php-format +msgid "Error tagging %1$s: %2$s" +msgstr "" + +#. TRANS: Succes message displayed if tagging a user succeeds. +#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. +#. TRANS: Plural is decided based on the number of tags added (not part of message). +#, php-format +msgid "%1$s was tagged %2$s" +msgid_plural "%1$s was tagged %2$s" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Separator for list of tags. +#. TRANS: Separator in list of user names like "Jim, Bob, Mary". +msgid ", " +msgstr "" + +#. TRANS: Error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Etiketa okerra: \"%s\"" + +#. TRANS: Error displayed if untagging a user fails. +#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). +#, php-format +msgid "Error untagging %1$s: %2$s" +msgstr "" + +#. TRANS: Succes message displayed if untagging a user succeeds. +#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. +#. TRANS: Plural is decided based on the number of tags removed (not part of message). +#, php-format +msgid "The following tag was removed from user %1$s: %2$s." +msgid_plural "The following tags were removed from user %1$s: %2$s." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Whois output. +#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. +#, php-format +msgctxt "WHOIS" +msgid "%1$s (%2$s)" +msgstr "" + +#. TRANS: Whois output. %s is the full name of the queried user. +#, php-format +msgid "Fullname: %s" +msgstr "" + +#. TRANS: Whois output. %s is the location of the queried user. +#. TRANS: Profile info line in notification e-mail. +#. TRANS: %s is a location. +#, php-format +msgid "Location: %s" +msgstr "" + +#. TRANS: Whois output. %s is the homepage of the queried user. +#. TRANS: Profile info line in notification e-mail. +#. TRANS: %s is a homepage. +#, php-format +msgid "Homepage: %s" +msgstr "" + +#. TRANS: Whois output. %s is the bio information of the queried user. +#, php-format +msgid "About: %s" +msgstr "" + +#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). +#. TRANS: %s is a remote profile. +#, php-format +msgid "" +"%s is a remote profile; you can only send direct messages to users on the " +"same server." +msgstr "" + +#. TRANS: Message given if content is too long. %1$sd is used for plural. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). +#, php-format +msgid "Message too long - maximum is %1$d character, you sent %2$d." +msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). +msgid "You can't send a message to this user." +msgstr "Ezin diozu mezurik bidali erabiltzaile honi." + +#. TRANS: Error text shown sending a direct message fails with an unknown reason. +msgid "Error sending direct message." +msgstr "" + +#. TRANS: Message given having repeated a notice from another user. +#. TRANS: %s is the name of the user for which the notice was repeated. +#, php-format +msgid "Notice from %s repeated." +msgstr "" + +#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. +#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. +#, php-format +msgid "Notice too long - maximum is %1$d character, you sent %2$d." +msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Text shown having sent a reply to a notice successfully. +#. TRANS: %s is the nickname of the user of the notice the reply was sent to. +#, php-format +msgid "Reply to %s sent." +msgstr "" + +#. TRANS: Error text shown when a reply to a notice fails with an unknown reason. +msgid "Error saving notice." +msgstr "" + +#. TRANS: Error text shown when no username was provided when issuing a subscribe command. +msgid "Specify the name of the user to subscribe to." +msgstr "" + +#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. +msgid "Can't subscribe to OMB profiles by command." +msgstr "" + +#. TRANS: Text shown after having subscribed to another user successfully. +#. TRANS: %s is the name of the user the subscription was requested for. +#, php-format +msgid "Subscribed to %s." +msgstr "" + +#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. +#. TRANS: Error text shown when no username was provided when issuing the command. +msgid "Specify the name of the user to unsubscribe from." +msgstr "" + +#. TRANS: Text shown after having unsubscribed from another user successfully. +#. TRANS: %s is the name of the user the unsubscription was requested for. +#, php-format +msgid "Unsubscribed from %s." +msgstr "" + +#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. +#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. +msgid "Command not yet implemented." +msgstr "" + +#. TRANS: Text shown when issuing the command "off" successfully. +msgid "Notification off." +msgstr "" + +#. TRANS: Error text shown when the command "off" fails for an unknown reason. +msgid "Can't turn off notification." +msgstr "" + +#. TRANS: Text shown when issuing the command "on" successfully. +msgid "Notification on." +msgstr "" + +#. TRANS: Error text shown when the command "on" fails for an unknown reason. +msgid "Can't turn on notification." +msgstr "" + +#. TRANS: Error text shown when issuing the login command while login is disabled. +msgid "Login command is disabled." +msgstr "" + +#. TRANS: Text shown after issuing the login command successfully. +#. TRANS: %s is a logon link.. +#, php-format +msgid "This link is useable only once and is valid for only 2 minutes: %s." +msgstr "" + +#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). +#. TRANS: %s is the name of the user the unsubscription was requested for. +#, php-format +msgid "Unsubscribed %s." +msgstr "" + +#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. +msgid "You are not subscribed to anyone." +msgstr "" + +#. TRANS: Text shown after requesting other users a user is subscribed to. +#. TRANS: This message supports plural forms. This message is followed by a +#. TRANS: hard coded space and a comma separated list of subscribed users. +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Text shown after requesting other users that are subscribed to a user +#. TRANS: (followers) without having any subscribers. +msgid "No one is subscribed to you." +msgstr "" + +#. TRANS: Text shown after requesting other users that are subscribed to a user (followers). +#. TRANS: This message supports plural forms. This message is followed by a +#. TRANS: hard coded space and a comma separated list of subscribing users. +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Text shown after requesting groups a user is subscribed to without having +#. TRANS: any group subscriptions. +msgid "You are not a member of any groups." +msgstr "" + +#. TRANS: Text shown after requesting groups a user is subscribed to. +#. TRANS: This message supports plural forms. This message is followed by a +#. TRANS: hard coded space and a comma separated list of subscribed groups. +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Header line of help text for commands. +msgctxt "COMMANDHELP" +msgid "Commands:" +msgstr "" + +#. TRANS: Help message for IM/SMS command "on". +msgctxt "COMMANDHELP" +msgid "turn on notifications" +msgstr "" + +#. TRANS: Help message for IM/SMS command "off". +msgctxt "COMMANDHELP" +msgid "turn off notifications" +msgstr "" + +#. TRANS: Help message for IM/SMS command "help". +msgctxt "COMMANDHELP" +msgid "show this help" +msgstr "" + +#. TRANS: Help message for IM/SMS command "follow ". +msgctxt "COMMANDHELP" +msgid "subscribe to user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "groups". +msgctxt "COMMANDHELP" +msgid "lists the groups you have joined" +msgstr "" + +#. TRANS: Help message for IM/SMS command "tag". +msgctxt "COMMANDHELP" +msgid "tag a user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "untag". +msgctxt "COMMANDHELP" +msgid "untag a user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "subscriptions". +msgctxt "COMMANDHELP" +msgid "list the people you follow" +msgstr "" + +#. TRANS: Help message for IM/SMS command "subscribers". +msgctxt "COMMANDHELP" +msgid "list the people that follow you" +msgstr "" + +#. TRANS: Help message for IM/SMS command "leave ". +msgctxt "COMMANDHELP" +msgid "unsubscribe from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "d ". +msgctxt "COMMANDHELP" +msgid "direct message to user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "get ". +msgctxt "COMMANDHELP" +msgid "get last notice from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "whois ". +msgctxt "COMMANDHELP" +msgid "get profile info on user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "lose ". +msgctxt "COMMANDHELP" +msgid "force user to stop following you" +msgstr "" + +#. TRANS: Help message for IM/SMS command "fav ". +msgctxt "COMMANDHELP" +msgid "add user's last notice as a 'fave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "fav #". +msgctxt "COMMANDHELP" +msgid "add notice with the given id as a 'fave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "repeat #". +msgctxt "COMMANDHELP" +msgid "repeat a notice with a given id" +msgstr "" + +#. TRANS: Help message for IM/SMS command "repeat ". +msgctxt "COMMANDHELP" +msgid "repeat the last notice from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "reply #". +msgctxt "COMMANDHELP" +msgid "reply to notice with a given id" +msgstr "" + +#. TRANS: Help message for IM/SMS command "reply ". +msgctxt "COMMANDHELP" +msgid "reply to the last notice from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "join ". +msgctxt "COMMANDHELP" +msgid "join group" +msgstr "" + +#. TRANS: Help message for IM/SMS command "login". +msgctxt "COMMANDHELP" +msgid "Get a link to login to the web interface" +msgstr "" + +#. TRANS: Help message for IM/SMS command "drop ". +msgctxt "COMMANDHELP" +msgid "leave group" +msgstr "" + +#. TRANS: Help message for IM/SMS command "stats". +msgctxt "COMMANDHELP" +msgid "get your stats" +msgstr "" + +#. TRANS: Help message for IM/SMS command "stop". +#. TRANS: Help message for IM/SMS command "quit". +msgctxt "COMMANDHELP" +msgid "same as 'off'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "sub ". +msgctxt "COMMANDHELP" +msgid "same as 'follow'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "unsub ". +msgctxt "COMMANDHELP" +msgid "same as 'leave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "last ". +msgctxt "COMMANDHELP" +msgid "same as 'get'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "on ". +#. TRANS: Help message for IM/SMS command "off ". +#. TRANS: Help message for IM/SMS command "invite ". +#. TRANS: Help message for IM/SMS command "track ". +#. TRANS: Help message for IM/SMS command "untrack ". +#. TRANS: Help message for IM/SMS command "track off". +#. TRANS: Help message for IM/SMS command "untrack all". +#. TRANS: Help message for IM/SMS command "tracks". +#. TRANS: Help message for IM/SMS command "tracking". +msgctxt "COMMANDHELP" +msgid "not yet implemented." +msgstr "" + +#. TRANS: Help message for IM/SMS command "nudge ". +msgctxt "COMMANDHELP" +msgid "remind a user to update." +msgstr "" + +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +msgid "No configuration file found." +msgstr "" + +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: Is followed by a list of directories (separated by HTML breaks). +msgid "I looked for configuration files in the following places:" +msgstr "" + +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +msgid "You may wish to run the installer to fix this." +msgstr "" + +#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. +#. TRANS: The text is link text that leads to the installer page. +msgid "Go to the installer." +msgstr "" + +#. TRANS: Page title for when a database error occurs. +msgid "Database error" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Public" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item title in local navigation menu. +msgctxt "MENU" +msgid "Lists" +msgstr "" + +#. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. +msgid "Delete" +msgstr "Ezabatu" + +#. TRANS: Description of form for deleting a user. +msgid "Delete this user" +msgstr "" + +#. TRANS: Exception. %s is an ID. +#, php-format +msgid "Unable to find services for %s." +msgstr "" + +#. TRANS: Form legend for removing the favourite status for a favourite notice. +#. TRANS: Title for button text for removing the favourite status for a favourite notice. +msgid "Disfavor this notice" +msgstr "" + +#. TRANS: Button text for removing the favourite status for a favourite notice. +msgctxt "BUTTON" +msgid "Disfavor favorite" +msgstr "" + +#. TRANS: Form legend for adding the favourite status to a notice. +#. TRANS: Title for button text for adding the favourite status to a notice. +msgid "Favor this notice" +msgstr "" + +#. TRANS: Button text for adding the favourite status to a notice. +msgctxt "BUTTON" +msgid "Favor" +msgstr "" + +#. TRANS: Feed type name. +msgid "RSS 1.0" +msgstr "RSS 1.0" + +#. TRANS: Feed type name. +msgid "RSS 2.0" +msgstr "RSS 2.0" + +#. TRANS: Feed type name. +msgid "Atom" +msgstr "Atom" + +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. +msgid "FOAF" +msgstr "FOAF" + +#. TRANS: Client exception thrown when an imported feed does not have an author. +msgid "No author in the feed." +msgstr "" + +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." +msgstr "" + +#. TRANS: Header for feed links (h2). +msgid "Feeds" +msgstr "" + +#. TRANS: List element on gallery action page to show all tags. +msgctxt "TAGS" +msgid "All" +msgstr "" + +#. TRANS: Dropdown field label on gallery action page for a list containing tags. +msgid "Tag" +msgstr "Etiketa" + +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." +msgstr "" + +#. TRANS: Description on form for granting a role. +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + +#. TRANS: Button text for the form that will block a user from a group. +msgctxt "BUTTON" +msgid "Block" +msgstr "" + +#. TRANS: Submit button title. +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + +#. TRANS: Field title on group edit form. +msgid "URL of the homepage or blog of the group or topic." +msgstr "" + +#. TRANS: Text area title for group description when there is no text limit. +msgid "Describe the group or topic." +msgstr "" + +#. TRANS: Text area title for group description. +#. TRANS: %d is the number of characters available for the description. +#, php-format +msgid "Describe the group or topic in %d character or less." +msgid_plural "Describe the group or topic in %d characters or less." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Field title on group edit form. +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"." +msgstr "" + +#. TRANS: Field label on group edit form. +msgid "Aliases" +msgstr "" + +#. TRANS: Input field title for group aliases. +#. TRANS: %d is the maximum number of group aliases available. +#, php-format +msgid "" +"Extra nicknames for the group, separated with commas or spaces. Maximum %d " +"alias allowed." +msgid_plural "" +"Extra nicknames for the group, separated with commas or spaces. Maximum %d " +"aliases allowed." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Checkbox field title on group edit form to mark a group private. +msgid "" +"New members must be approved by admin and all posts are forced to be private." +msgstr "" + +#. TRANS: Indicator in group members list that this user is a group administrator. +msgctxt "GROUPADMIN" +msgid "Admin" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "Group" +msgstr "Taldea" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "%s group" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "Members" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "%s group members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %d is the number of pending members. +#, php-format +msgctxt "MENU" +msgid "Pending members (%d)" +msgid_plural "Pending members (%d)" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "%s pending members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +msgctxt "MENU" +msgid "Blocked" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "%s blocked users" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "Edit %s group properties" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +msgctxt "MENU" +msgid "Logo" +msgstr "Logotipoa" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "Add or edit %s logo" +msgstr "" + +#. TRANS: Group actions header (h2). Text hidden by default. +msgid "Group actions" +msgstr "" + +#. TRANS: Title for groups with the most members section. +msgid "Popular groups" +msgstr "" + +#. TRANS: Title for groups with the most posts section. +msgid "Active groups" +msgstr "" + +#. TRANS: Title for group tag cloud section. +#. TRANS: %s is a group name. +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#. TRANS: Client exception 406 +msgid "This page is not available in a media type you accept" +msgstr "" + +#. TRANS: Exception thrown when trying to upload an unsupported image file format. +msgid "Unsupported image file format." +msgstr "" + +#. TRANS: Exception thrown when too large a file is uploaded. +#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "" + +#. TRANS: Exception thrown when uploading an image and that action could not be completed. +msgid "Partial upload." +msgstr "" + +#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file. +msgid "Not an image or corrupt file." +msgstr "" + +#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there. +msgid "Lost our file." +msgstr "" + +#. TRANS: Exception thrown when trying to resize an unknown file type. +#. TRANS: Exception thrown when trying resize an unknown file type. +msgid "Unknown file type" +msgstr "" + +#. TRANS: Number of megabytes. %d is the number. +#, php-format +msgid "%dMB" +msgid_plural "%dMB" +msgstr[0] "%dMB" +msgstr[1] "%dMB" + +#. TRANS: Number of kilobytes. %d is the number. +#, php-format +msgid "%dkB" +msgid_plural "%dkB" +msgstr[0] "%dkB" +msgstr[1] "%dkB" + +#. TRANS: Number of bytes. %d is the number. +#, php-format +msgid "%dB" +msgid_plural "%dB" +msgstr[0] "%dB" +msgstr[1] "%dB" + +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. +#, php-format +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." +msgstr "" + +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Title for inbox tag cloud section. +msgctxt "TITLE" +msgid "Trends" +msgstr "" + +#. TRANS: Button text for inviting more users to the StatusNet instance. +msgctxt "BUTTON" +msgid "Invite more colleagues" +msgstr "" + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "" + +#. TRANS: Field label for a list of e-mail addresses. +msgid "Email addresses" +msgstr "Posta-e helbideak" + +#. TRANS: Field title for a list of e-mail addresses. +msgid "Addresses of friends to invite (one per line)." +msgstr "" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "Mezu pertsonala" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#. TRANS: Send button for inviting friends +#. TRANS: Button text for sending notice. +msgctxt "BUTTON" +msgid "Send" +msgstr "Bidali" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "" + +#. TRANS: Button text for joining a group. +msgctxt "BUTTON" +msgid "Join" +msgstr "" + +#. TRANS: Button text on form to leave a group. +msgctxt "BUTTON" +msgid "Leave" +msgstr "" + +#. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Login" +msgstr "Izena eman" + +#. TRANS: Title for menu item for logging in to the StatusNet site. +msgid "Login with a username and password" +msgstr "" + +#. TRANS: Menu item for registering with the StatusNet site. +msgctxt "MENU" +msgid "Register" +msgstr "Izena eman" + +#. TRANS: Title for menu item for registering with the StatusNet site. +msgid "Sign up for a new account" +msgstr "" + +#. TRANS: Subject for address confirmation email. +msgid "Email address confirmation" +msgstr "" + +#. TRANS: Body for address confirmation email. +#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the URL to confirm at. +#, php-format +msgid "" +"Hey, %1$s.\n" +"\n" +"Someone just entered this email address on %2$s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%3$s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%2$s\n" +msgstr "" + +#. TRANS: Subject of new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#. TRANS: Main body of new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s is now following you on %2$s." +msgstr "" + +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + +#. TRANS: Common footer block for StatusNet notification emails. +#. TRANS: %1$s is the StatusNet sitename, +#. TRANS: %2$s is a link to the addressed user's e-mail settings. +#, php-format +msgid "" +"Faithfully yours,\n" +"%1$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %2$s" +msgstr "" + +#. TRANS: Profile info line in notification e-mail. +#. TRANS: %s is a URL. +#, php-format +msgid "Profile: %s" +msgstr "" + +#. TRANS: Profile info line in notification e-mail. +#. TRANS: %s is biographical information. +#, php-format +msgid "Bio: %s" +msgstr "" + +#. TRANS: This is a paragraph in a new-subscriber e-mail. +#. TRANS: %s is a URL where the subscriber can be reported as abusive. +#, php-format +msgid "" +"If you believe this account is being used abusively, you can block them from " +"your subscribers list and report as spam to site administrators at %s." +msgstr "" + +#. TRANS: Subject of notification mail for new posting email address. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#. TRANS: Body of notification mail for new posting email address. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send +#. TRANS: to to post by e-mail, %3$s is a URL to more instructions. +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s." +msgstr "" + +#. TRANS: Subject line for SMS-by-email notification messages. +#. TRANS: %s is the posting user's nickname. +#, php-format +msgid "%s status" +msgstr "" + +#. TRANS: Subject line for SMS-by-email address confirmation message. +msgid "SMS confirmation" +msgstr "" + +#. TRANS: Main body heading for SMS-by-email address confirmation message. +#. TRANS: %s is the addressed user's nickname. +#, php-format +msgid "%s: confirm you own this phone number with this code:" +msgstr "" + +#. TRANS: Subject for 'nudge' notification email. +#. TRANS: %s is the nudging user. +#, php-format +msgid "You have been nudged by %s" +msgstr "" + +#. TRANS: Body for 'nudge' notification email. +#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, +#. TRANS: %3$s is a URL to post notices at. +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them." +msgstr "" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %s is the sending user's nickname. +#, php-format +msgid "New private message from %s" +msgstr "" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them." +msgstr "" + +#. TRANS: Subject for favorite notification e-mail. +#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. +#, php-format +msgid "%1$s (@%2$s) added your notice as a favorite" +msgstr "" + +#. TRANS: Body for favorite notification e-mail. +#. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created, +#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, +#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, +#. TRANS: %7$s is the adding user's nickname. +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s" +msgstr "" + +#. TRANS: Line in @-reply notification e-mail. %s is conversation URL. +#, php-format +msgid "" +"The full conversation can be read here:\n" +"\n" +"\t%s" +msgstr "" + +#. TRANS: E-mail subject for notice notification. +#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. +#, php-format +msgid "%1$s (@%2$s) sent a notice to your attention" +msgstr "" + +#. TRANS: Body of @-reply notification e-mail. +#. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, +#. TRANS: %3$s is a URL to the notice, %4$s is the notice text, +#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), +#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"%5$sYou can reply back here:\n" +"\n" +"\t%6$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%7$s" +msgstr "" + +#. TRANS: Subject of group join notification e-mail. +#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. +#. TRANS: Main body of group join notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, +#. TRANS: %4$s is a block of profile info about the subscriber. +#. TRANS: %5$s is a link to the addressed user's e-mail settings. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s." +msgstr "" + +#. TRANS: Subject of pending group join request notification e-mail. +#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. +#, php-format +msgid "%1$s wants to join your group %2$s on %3$s." +msgstr "" + +#. TRANS: Main body of pending group join request notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, +#. TRANS: %4$s is the URL to the moderation queue page. +#, php-format +msgid "" +"%1$s would like to join your group %2$s on %3$s. You may approve or reject " +"their group membership at %4$s" +msgstr "" + +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. +msgid "Only the user can read their own mailboxes." +msgstr "" + +#. TRANS: Message displayed when there are no private messages in the inbox of a user. +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" +msgid "Inbox" +msgstr "Sarrera-ontzia" + +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +msgid "Your incoming messages." +msgstr "" + +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" +msgid "Outbox" +msgstr "Bidalitakoak" + +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +msgid "Your sent messages." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. +msgid "Could not parse message." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. +msgid "Not a registered user." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. +msgid "Sorry, no incoming email allowed." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, php-format +msgid "Unsupported message type: %s." +msgstr "" + +#. TRANS: Form legend for form to make a user a group admin. +msgid "Make user an admin of the group" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" + +#. TRANS: Client exception thrown when a database error was thrown during a file upload operation. +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. +msgid "File exceeds user's quota." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation fails because the file could +#. TRANS: not be moved from the temporary folder to the permanent file location. +msgid "File could not be moved to destination directory." +msgstr "" + +#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME +#. TRANS: type of the uploaded file could not be determined. +msgid "Could not determine file's MIME type." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %1$s is the file type that was denied, %2$s is the application part of +#. TRANS: the MIME type that was denied. +#, php-format +msgid "" +"\"%1$s\" is not a supported file type on this server. Try using another %2$s " +"format." +msgstr "" + +#. TRANS: Client exception thrown trying to upload a forbidden MIME type. +#. TRANS: %s is the file type that was denied. +#, php-format +msgid "\"%s\" is not a supported file type on this server." +msgstr "" + +#. TRANS: Form legend for direct notice. +msgid "Send a direct notice" +msgstr "" + +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. +msgid "Select recipient:" +msgstr "" + +#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +msgid "No mutual subscribers." +msgstr "" + +#. TRANS: Dropdown label in direct notice form. +msgid "To" +msgstr "" + +#. TRANS: Button text for sending a direct notice. +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Bidali" + +#. TRANS: Header in message list. +msgid "Messages" +msgstr "" + +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. +msgid "from" +msgstr "" + +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" +msgstr "" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "" + +#. TRANS: A possible notice source (e-mail). +msgctxt "SOURCE" +msgid "mail" +msgstr "" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception thrown when ... +msgid "Bookmark not posted to this group." +msgstr "" + +#. TRANS: Client exception when ... +msgid "Object not posted to this user." +msgstr "" + +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." +msgstr "" + +#. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. +msgid "You must implement either adaptNoticeListItem() or showNotice()." +msgstr "" + +#. TRANS: Validation error in form for registration, profile and group settings, etc. +msgid "Nickname cannot be empty." +msgstr "" + +#. TRANS: Validation error in form for registration, profile and group settings, etc. +#, php-format +msgid "Nickname cannot be more than %d character long." +msgid_plural "Nickname cannot be more than %d characters long." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Form legend for notice form. +msgid "Send a notice" +msgstr "" + +#. TRANS: Title for notice label. %s is the user's nickname. +#, php-format +msgid "What's up, %s?" +msgstr "" + +#. TRANS: Input label in notice form for adding an attachment. +msgid "Attach" +msgstr "" + +#. TRANS: Title for input field to attach a file to a notice. +msgid "Attach a file." +msgstr "" + +#. TRANS: Field label to add location to a notice. +msgid "Share my location" +msgstr "" + +#. TRANS: Text to not share location for a notice in notice form. +msgid "Do not share my location" +msgstr "" + +#. TRANS: Timeout error text for location retrieval in notice form. +msgid "" +"Sorry, retrieving your geo location is taking longer than expected, please " +"try again later" +msgstr "" + +#. TRANS: Separator in profile addressees list. +msgctxt "SEPARATOR" +msgid ", " +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of north. +msgid "N" +msgstr "I" + +#. TRANS: Used in coordinates as abbreviation of south. +msgid "S" +msgstr "H" + +#. TRANS: Used in coordinates as abbreviation of east. +msgid "E" +msgstr "E" + +#. TRANS: Used in coordinates as abbreviation of west. +msgid "W" +msgstr "M" + +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#. TRANS: Followed by geo location. +msgid "at" +msgstr "" + +#. TRANS: Addition in notice list item if notice is part of a conversation. +msgid "in context" +msgstr "" + +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. +msgid "Repeated by" +msgstr "" + +#. TRANS: Link title in notice list item to reply to a notice. +msgid "Reply to this notice" +msgstr "" + +#. TRANS: Link text in notice list item to reply to a notice. +msgid "Reply" +msgstr "" + +#. TRANS: Link title in notice list item to delete a notice. +msgid "Delete this notice" +msgstr "" + +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "" + +#. TRANS: Field label for notice text. +msgid "Update your status..." +msgstr "" + +#. TRANS: Form legend of form to nudge/ping another user. +msgid "Nudge this user" +msgstr "" + +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" +msgid "Nudge" +msgstr "" + +#. TRANS: Button title to nudge/ping another user. +msgid "Send a nudge to this user." +msgstr "" + +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. +msgid "Error inserting new profile." +msgstr "" + +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. +msgid "Error inserting avatar." +msgstr "" + +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. +msgid "Error inserting remote profile." +msgstr "" + +#. TRANS: Exception thrown when a notice is denied because it has been sent before. +msgid "Duplicate notice." +msgstr "" + +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +msgid "Could not insert new subscription." +msgstr "" + +#. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. +msgid "No oEmbed API endpoint available." +msgstr "" + +#. TRANS: Field label for list. +msgctxt "LABEL" +msgid "List" +msgstr "" + +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." +msgstr "" + +#. TRANS: Field title for description of list. +msgid "Describe the list or topic." +msgstr "" + +#. TRANS: Field title for description of list. +#. TRANS: %d is the maximum number of characters for the description. +#, php-format +msgid "Describe the list or topic in %d character." +msgid_plural "Describe the list or topic in %d characters." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Button title to delete a list. +msgid "Delete this list." +msgstr "" + +#. TRANS: Header in list edit form. +msgid "Add or remove people" +msgstr "" + +#. TRANS: Header in list edit form. +msgctxt "HEADER" +msgid "Search" +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "List" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %1$s is a list, %2$s is a nickname. +#, php-format +msgid "%1$s list by %2$s." +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "Listed" +msgstr "" + +#. TRANS: Menu item in list navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscribers" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %1$s is a list, %2$s is a nickname. +#, php-format +msgid "Subscribers to %1$s list by %2$s." +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "Edit" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %s is a list. +#, php-format +msgid "Edit %s list by you." +msgstr "" + +#. TRANS: Link description for link to list of users tagged with a tag. +msgid "Tagged" +msgstr "" + +#. TRANS: Title for link to edit list settings. +msgid "Edit list settings." +msgstr "" + +#. TRANS: Text for link to edit list settings. +msgid "Edit" +msgstr "Aldatu" + +#. TRANS: Privacy mode text in list list item for private list. +msgctxt "MODE" +msgid "Private" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "List Subscriptions" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists subscribed to by %s." +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "MENU" +msgid "Lists with %s" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists with %s." +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "MENU" +msgid "Lists by %s" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists by %s." +msgstr "" + +#. TRANS: Label in lists widget. +msgctxt "LABEL" +msgid "Your lists" +msgstr "" + +#. TRANS: Fieldset legend in lists widget. +msgctxt "LEGEND" +msgid "Edit lists" +msgstr "" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +#. TRANS: Title for section contaning lists with the most subscribers. +msgid "Popular lists" +msgstr "" + +#. TRANS: List summary. %1$d is the number of users in the list, +#. TRANS: %2$d is the number of subscribers to the list. +#, php-format +msgid "Listed: %1$d Subscribers: %2$d" +msgstr "" + +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format +msgid "Lists with you" +msgstr "" + +#. TRANS: Title for page that displays which lists a user is part of. +#. TRANS: %s is a profile name. +#, php-format +msgid "Lists with %s" +msgstr "" + +#. TRANS: Title for page that displays lists a user has subscribed to. +msgid "List subscriptions" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "Profila" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your profile" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Replies" +msgstr "Erantzunak" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Favorites" +msgstr "Gogokoenak" + +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +msgctxt "FIXME" +msgid "User" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Messages" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your incoming messages" +msgstr "Jaso dituzun mezuak" + +#. TRANS: Displayed as version information for a plugin if no version information was found. +msgid "Unknown" +msgstr "" + +#. TRANS: Plugin admin panel controls +msgctxt "plugin" +msgid "Disable" +msgstr "" + +#. TRANS: Plugin admin panel controls +msgctxt "plugin" +msgid "Enable" +msgstr "" + +msgctxt "plugin-description" +msgid "(Plugin descriptions unavailable when disabled.)" +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Settings" +msgstr "" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Change your personal settings." +msgstr "" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Site configuration." +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Logout" +msgstr "Saioa itxi" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Logout from the site." +msgstr "" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Login to the site." +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Search" +msgstr "Bilatu" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Search the site." +msgstr "" + +#. TRANS: H2 text for user subscription statistics. +msgid "Following" +msgstr "" + +#. TRANS: H2 text for user subscriber statistics. +msgid "Followers" +msgstr "" + +#. TRANS: Label for user statistics. +msgid "User ID" +msgstr "Erabiltzaile IDa" + +#. TRANS: Label for user statistics. +msgid "Member since" +msgstr "Partaidea noiztik" + +#. TRANS: Label for user statistics. +msgid "Notices" +msgstr "" + +#. TRANS: Label for user statistics. +#. TRANS: Average count of posts made per day since account registration. +msgid "Daily average" +msgstr "Eguneko batez bestekoa" + +#. TRANS: H2 text for user group membership statistics. +msgid "Groups" +msgstr "Taldeak" + +#. TRANS: H2 text for user list membership statistics. +msgid "Lists" +msgstr "" + +#. TRANS: Server error displayed when using an unimplemented method. +msgid "Unimplemented method." +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +msgid "User groups" +msgstr "Erabiltzailearen taldeak" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "Etiketa berriak" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Featured" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Popular" +msgstr "" + +#. TRANS: Title for inbox tag cloud section. +msgctxt "TITLE" +msgid "Trending topics" +msgstr "" + +#. TRANS: Client error displayed when return-to was defined without a target. +msgid "No return-to arguments." +msgstr "" + +#. TRANS: For legend for notice repeat form. +msgid "Repeat this notice?" +msgstr "Ohar hau errepikatu?" + +#. TRANS: Button title to repeat a notice on notice repeat form. +msgid "Repeat this notice." +msgstr "" + +#. TRANS: Description of role revoke form. %s is the role to be revoked. +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#. TRANS: Client error on action trying to visit a non-existing page. +msgid "Page not found." +msgstr "" + +#. TRANS: Title of form to sandbox a user. +msgctxt "TITLE" +msgid "Sandbox" +msgstr "" + +#. TRANS: Description of form to sandbox a user. +msgid "Sandbox this user" +msgstr "" + +#. TRANS: Fieldset legend for the search form. +msgid "Search site" +msgstr "" + +#. TRANS: Used as a field label for the field where one or more keywords +#. TRANS: for searching can be entered. +msgid "Keyword(s)" +msgstr "Hitz gakoa(k)" + +#. TRANS: Button text for searching site. +#. TRANS: Button text to search profiles. +msgctxt "BUTTON" +msgid "Search" +msgstr "Bilatu" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords." +msgstr "" + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "People" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +msgid "Find people on this site" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Notices" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +msgid "Find content of notices" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. +msgid "Find groups on this site" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Laguntza" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" +msgid "TOS" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to privacy policy. +msgctxt "MENU" +msgid "Privacy" +msgstr "" + +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +msgctxt "MENU" +msgid "Source" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +msgctxt "MENU" +msgid "Version" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "" + +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" +msgid "Badge" +msgstr "" + +#. TRANS: Default title for section/sidebar widget. +msgid "Untitled section" +msgstr "" + +#. TRANS: Default "More..." title for section/sidebar widget. +msgid "More..." +msgstr "" + +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Settings" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change your profile settings" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Avatar" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Upload an avatar" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Password" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change your password" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Email" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change email handling" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "URL" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "URL shorteners" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Updates by instant messenger (IM)" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Updates by SMS" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Connections" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Authorized connected applications" +msgstr "" + +#. TRANS: Title of form to silence a user. +msgctxt "TITLE" +msgid "Silence" +msgstr "" + +#. TRANS: Description of form to silence a user. +msgid "Silence this user" +msgstr "" + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscriptions" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "People %s subscribes to." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "People subscribed to %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Groups %s is a member of." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "List subscriptions by %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Invite friends and colleagues to join you on %s." +msgstr "" + +#. TRANS: Form of form to subscribe to a user. +msgid "Subscribe to this user" +msgstr "" + +#. TRANS: Title of personal tag cloud section. +msgid "People Tagcloud as self-tagged" +msgstr "" + +#. TRANS: Title of personal tag cloud section. +msgid "People Tagcloud as tagged" +msgstr "" + +#. TRANS: Content displayed in a tag cloud section if there are no tags. +msgctxt "NOTAGS" +msgid "None" +msgstr "" + +#. TRANS: Server exception displayed if a theme name was invalid. +msgid "Invalid theme name." +msgstr "" + +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. +msgid "This server cannot handle theme uploads without ZIP support." +msgstr "" + +#. TRANS: Server exception thrown when uploading a theme fails. +msgid "The theme file is missing or the upload failed." +msgstr "" + +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. +msgid "Failed saving theme." +msgstr "" + +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." +msgstr "" + +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. +#, php-format +msgid "Uploaded theme is too large; must be less than %d byte uncompressed." +msgid_plural "" +"Uploaded theme is too large; must be less than %d bytes uncompressed." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" +msgstr "" + +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. +msgid "" +"Theme contains invalid file or folder name. Stick with ASCII letters, " +"digits, underscore, and minus sign." +msgstr "" + +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. +msgid "Theme contains unsafe file extension names; may be unsafe." +msgstr "" + +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. +#, php-format +msgid "Theme contains file of type \".%s\", which is not allowed." +msgstr "" + +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. +msgid "Error opening theme archive." +msgstr "" + +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "" + +#. TRANS: Link to show replies for a notice. +#. TRANS: %d is the number of replies to a notice and used for plural. +#, php-format +msgid "Show reply" +msgid_plural "Show all %d replies" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Reference to the logged in user in favourite list. +msgctxt "FAVELIST" +msgid "You" +msgstr "" + +#. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". +#. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. +#, php-format +msgctxt "FAVELIST" +msgid "%1$s and %2$s" +msgstr "" + +#. TRANS: List message for notice favoured by logged in user. +msgctxt "FAVELIST" +msgid "You like this." +msgstr "" + +#. TRANS: List message for when more than 4 people like something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d others like this." +msgid_plural "%%s and %d others like this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s likes this." +msgid_plural "%%s like this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for notice repeated by logged in user. +msgctxt "REPEATLIST" +msgid "You have repeated this notice." +msgstr "" + +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, php-format +msgid "One person has repeated this notice." +msgid_plural "%d people have repeated this notice." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Form legend. +#, php-format +msgid "Search and list people" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "Everything" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "Fullname" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "URI (Remote users)" +msgstr "" + +#. TRANS: Dropdown field label. +msgctxt "LABEL" +msgid "Search in" +msgstr "" + +#. TRANS: Dropdown field title. +msgid "Choose a field to search." +msgstr "" + +#. TRANS: Form legend. +#. TRANS: %1$s is a nickname, $2$s is a list. +#, php-format +msgid "Remove %1$s from list %2$s" +msgstr "" + +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, php-format +msgid "Add %1$s to list %2$s" +msgstr "" + +#. TRANS: Title for top posters section. +msgid "Top posters" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. +msgid "Private?" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + +#. TRANS: Title for the form to unblock a user. +msgctxt "TITLE" +msgid "Unblock" +msgstr "" + +#. TRANS: Title for unsandbox form. +msgctxt "TITLE" +msgid "Unsandbox" +msgstr "" + +#. TRANS: Description for unsandbox form. +msgid "Unsandbox this user" +msgstr "" + +#. TRANS: Title for unsilence form. +msgid "Unsilence" +msgstr "" + +#. TRANS: Form description for unsilence form. +msgid "Unsilence this user" +msgstr "" + +#. TRANS: Form legend on unsubscribe form. +#. TRANS: Button title on unsubscribe form. +msgid "Unsubscribe from this user" +msgstr "" + +#. TRANS: Button text on unsubscribe form. +#. TRANS: Button text for unsubscribing from a list. +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "" + +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "" + +#. TRANS: Authorisation exception thrown when a user a not allowed to login. +msgid "Not allowed to log in." +msgstr "" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "a few seconds ago" +msgstr "orain dela segundu gutxi batzuk" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "about a minute ago" +msgstr "orain dela minutu bat inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#, php-format +msgid "about one minute ago" +msgid_plural "about %d minutes ago" +msgstr[0] "orain dela minutu bat inguru" +msgstr[1] "orain dela %d minutu inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "about an hour ago" +msgstr "orain dela ordu bat inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#, php-format +msgid "about one hour ago" +msgid_plural "about %d hours ago" +msgstr[0] "orain dela ordu bat inguru" +msgstr[1] "orain dela %d ordu inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "about a day ago" +msgstr "orain dela egun bat inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#, php-format +msgid "about one day ago" +msgid_plural "about %d days ago" +msgstr[0] "orain dela egun bat inguru" +msgstr[1] "orain dela %d egun inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "about a month ago" +msgstr "orain dela hilabete bat inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +#, php-format +msgid "about one month ago" +msgid_plural "about %d months ago" +msgstr[0] "orain dela hilabete bat inguru" +msgstr[1] "orain dela %d hilabete inguru" + +#. TRANS: Used in notices to indicate when the notice was made compared to now. +msgid "about a year ago" +msgstr "orain dela urte bat inguru" + +#. TRANS: Web color exception thrown when a hexadecimal color code does not validate. +#. TRANS: %s is the provided (invalid) color code. +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex characters." +msgstr "" + +#. TRANS: Exception. +msgid "Invalid XML." +msgstr "" + +#. TRANS: Exception. +msgid "Invalid XML, missing XRD root." +msgstr "" + +#. TRANS: Commandline script output. %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file '%s'." +msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Etiketa baliogabea: \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Errorea urruneko profila eguneratzean." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Ezin izan da etiketa gorde." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Ezin izan da profila gorde." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Taldearen jarioa ezin izan da sortu - %s" + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Posta-e helbidea okerra da." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Ezin izan da profila gorde." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Ezinezkoa izan da zure diseinu ezarpenak gordetzea." + +#~ msgid "Could not update your design." +#~ msgstr "Zure diseinua ezin da eguneratu." + +#~ msgid "Design" +#~ msgstr "Diseinua" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "StaturNet gune honentzako diseinu ezarpenak" + +#~ msgid "Theme not available: %s." +#~ msgstr "%s itxura ez dago eskuragai." + +#~ msgid "Change logo" +#~ msgstr "Logoa aldatu" + +#~ msgid "Change theme" +#~ msgstr "Itxura aldatu" + +#~ msgid "Site theme" +#~ msgstr "Guneko itxura" + +#~ msgid "Theme for the site." +#~ msgstr "Gunearentzako itxura" + +#~ msgid "Custom theme" +#~ msgstr "Itxura pertsonalizatua" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr ".ZIP fitxategi bat igo dezakezu zure itxurarakin" + +#~ msgid "Change background image" +#~ msgstr "Aldatu atzeko planoko irudia" + +#~ msgid "Background" +#~ msgstr "Atzeko planoa" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Gunearen atzeko planorako irudi bat igo dezakezu. Fitxategiaren " +#~ "gehienezko tamaina %1$s da." + +#~ msgid "On" +#~ msgstr "Gaitu" + +#~ msgid "Off" +#~ msgstr "Ezgaitu" + +#~ msgid "Turn background image on or off." +#~ msgstr "Gaitu edo ezgaitu atzeko planoko irudia." + +#~ msgid "Tile background image" +#~ msgstr "Egin mosaikoa atzeko planoko irudiarekin" + +#~ msgid "Change colors" +#~ msgstr "Aldatu koloreak" + +#~ msgid "Content" +#~ msgstr "Edukia" + +#~ msgid "Sidebar" +#~ msgstr "Albo-barra" + +#~ msgid "Text" +#~ msgstr "Testua" + +#~ msgid "Links" +#~ msgstr "Estekak" + +#~ msgid "Advanced" +#~ msgstr "Aurreratua" + +#~ msgid "Custom CSS" +#~ msgstr "CSS pertsonalizatua" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Erabili lehenetsiak" + +#~ msgid "Restore default designs." +#~ msgstr "Berrezarri diseinu lehenetsia." + +#~ msgid "Reset back to default." +#~ msgstr "Berrezarri lehenetsiak." + +#~ msgid "Save design." +#~ msgstr "Gorde diseinua." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Saioa hasi behar duzu talde bat editatzeko." + +#~ msgid "Group design" +#~ msgstr "Taldearen diseinua" + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ezinezkoa izan da zure diseinu ezarpenak eguneratzea." + +#~ msgid "Design preferences saved." +#~ msgstr "Diseinu-hobespenak gordeta." + +#~ msgid "Backgrounds" +#~ msgstr "Behekoak" + +#~ msgid "Server for backgrounds." +#~ msgstr "Behekoen zerbitzaria." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Behekoen web bidea." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "SSL orrialdetako behekoen zerbitzaria." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "SSL orrialdetako behekoen web bidea." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Behekoak gordetzen diren direktorioa." + +#~ msgid "Profile design" +#~ msgstr "Profilaren diseinua" + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Gozatu zure taloa!" + +#~ msgid "Design settings" +#~ msgstr "Diseinu ezarpenak " + +#~ msgid "View profile designs" +#~ msgstr "Ikusi profilaren diseinuak" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Erakutsi ala ezkutatu profilaren diseinuak." + +#~ msgid "Unable to delete design setting." +#~ msgstr "Ezin dira diseinuko ezarpenak ezabatu." + +#~ msgid "Design configuration" +#~ msgstr "Diseinuaren konfigurazioa" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Diseinua" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 8ed03aeb1b..ba76aef3be 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,9 +29,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -112,7 +112,6 @@ msgid "Save access settings" msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -128,7 +127,6 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -203,7 +201,6 @@ msgstr "چنین ØµÙØ­Ù‡â€ŒØ§ÛŒ وجود ندارد." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -369,7 +366,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." @@ -384,7 +380,6 @@ msgstr "نمی‌توان نمایه را ذخیره کرد." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -395,24 +390,6 @@ msgid_plural "" msgstr[0] "" "به دلیل تنظبمات، سرور نمی‌تواند این مقدار اطلاعات (%s بایت( را Ø¯Ø±ÛŒØ§ÙØª کند." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -501,6 +478,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "نمی‌توان پیام مستقیم را به کاربرانی Ú©Ù‡ دوست شما نیستند، ÙØ±Ø³ØªØ§Ø¯." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -730,7 +709,6 @@ msgstr "گروه‌ها در %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "برای ویرایش گروه باید یک مدیر باشید." @@ -850,7 +828,6 @@ msgstr "هنگام Ø§ÙØ²ÙˆØ¯Ù† کاربر برنامهٔ OAuth در پایگا #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -859,7 +836,6 @@ msgstr "هنگام Ø§ÙØ²ÙˆØ¯Ù† کاربر برنامهٔ OAuth در پایگا #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "ارسال غیر قابل انتظار ÙØ±Ù…." @@ -1222,7 +1198,6 @@ msgstr "برای ترک یک گروه، شما باید وارد شده باشی #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1308,6 +1283,7 @@ msgid "Join request canceled." msgstr "درخواست عضویت لغو شد." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "یک Ùهرست از کاربران در این گروه" @@ -1471,7 +1447,6 @@ msgstr "چنین پیوستی وجود ندارد." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1983,159 +1958,6 @@ msgstr "این کاربر را حذ٠نکن" msgid "Delete this user." msgstr "این کاربر حذ٠شود." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "طرح" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "نشانی اینترنتی نشان نامعتبر است." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "نشانی اینترنتی نشان نامعتبر است." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "پوسته در دسترس نیست: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "تغییر نشان" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "نشان وب‌گاه" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "نشان وب‌گاه" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "تغییر پوسته" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "پوستهٔ وب‌گاه" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "پوسته برای وب‌گاه" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "پوستهٔ اختصاصی" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"شما می‌توانید یک پوستهٔ اختصاصی StatusNet را به‌عنوان یک آرشیو .ZIP بارگذاری " -"کنید." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "تغییر تصویر پیش‌زمینه" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "پیش‌زمینه" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"شما می‌توانید یک تصویر پیش‌زمینه را برای وب‌گاه بارگذاری کنید. بیشینهٔ اندازهٔ " -"پرونده %1 $s است." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "روشن" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "خاموش" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "تصویر پیش‌زمینه را ÙØ¹Ø§Ù„ یا ØºÛŒØ±ÙØ¹Ø§Ù„ کنید." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "تصویر پیش‌زمینهٔ موزاییکی" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "تغییر رنگ‌ها" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "محتوا" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "ستون کناری" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "متن" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "پیوندها" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Ù¾ÛŒØ´Ø±ÙØªÙ‡" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS اختصاصی" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "بازگرداندن طرح‌های Ù¾ÛŒØ´â€ŒÙØ±Ø¶" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "برگشت به حالت پیش گزیده" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "ذخیره‌کردن طرح" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "این پیام یک پیام برگزیده نیست!" @@ -2753,30 +2575,6 @@ msgstr "اشکال پایگاه داده در مسدود کردن کاربر" msgid "No ID." msgstr "هیچ ID وجود ندارد." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "برای ویرایش گروه باید وارد شوید." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "ظاهر گروه" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "ظاهر گروه را تغییر دهید تا شما را راضی کند." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ترجیحات طرح ذخیره شد." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3454,12 +3252,6 @@ msgstr "محتوایی وحود ندارد!" msgid "No recipient specified." msgstr "هیچ گیرنده ای مشخص نشده" -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "یک پیام را به خودتان Ù†ÙØ±Ø³ØªÛŒØ¯Ø› در عوض آن را آهسته برای خود بگویید." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "پیام ÙØ±Ø³ØªØ§Ø¯Ù‡â€ŒØ´Ø¯" @@ -3745,7 +3537,7 @@ msgid "Confirm" msgstr "تایید" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3938,32 +3730,6 @@ msgstr "شاخهٔ نیم‌رخ" msgid "Directory where avatars are located." msgstr "مسیر پوشه برای زبان‌های محلی" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "پس زمینه‌ها" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "پوسته برای وب‌گاه" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "مسیر پوشه برای زبان‌های محلی" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "ضمائم" @@ -4779,7 +4545,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "Û¶ نویسه یا بیش‌تر، Ùˆ این را ÙØ±Ø§Ù…وش نکنید!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4789,18 +4554,6 @@ msgstr "بازنشاندن" msgid "Enter a nickname or email address." msgstr "یک نام کاربری یا نشانی پست الکترونیکی وارد کنید." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "هیچ کاربری با آن نشانی پست الکترونیکی یا نام کاربری وجود ندارد." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "برای آن کاربر نشانی پست الکترونیکی ثبت شده وجود ندارد." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "هنگام ذخیرهٔ تایید نشانی خطا رخ داد." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5779,6 +5532,15 @@ msgstr "نام وب‌گاه باید طولی غیر ØµÙØ± داشته باشد msgid "You must have a valid contact email address." msgstr "شما باید یک نشانی پست الکترونیکی معتبر برای ارتباط داشته باشید." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "نشانی اینترنتی نشان نامعتبر است." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "نشانی اینترنتی نشان نامعتبر است." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5856,7 +5618,9 @@ msgid "Default language" msgstr "زبان Ù¾ÛŒØ´â€ŒÙØ±Ø¶" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "شناسایی خودکار زبان وب‌گاه از راه تنظیمات مرورگر در دسترس نیست." #. TRANS: Fieldset legend on site settings panel. @@ -5883,8 +5647,23 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Ú†Ù‡ مدت کاربران باید منتظر بمانند (به ثانیه) تا همان چیز را دوباره Ø¨ÙØ±Ø³ØªÙ†Ø¯." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "خروج" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "نشان وب‌گاه" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "نشان وب‌گاه" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "ذخیرهٔ تنظیمات وب‌گاه" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6668,42 +6447,6 @@ msgstr "نمی‌توان نشانی اینترنتی چهره را خواند« msgid "Wrong image type for avatar URL \"%s\"." msgstr "نوع تصویر برای نشانی اینترنتی چهره نادرست است «%s»." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "طراحی نمایه" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"شیوهٔ نمایش نمایهٔ خود را با یک تصویر پیش‌زمینه Ùˆ یک رنگ از جعبهٔ رنگ‌ها به " -"انتخاب خودتان Ø³ÙØ§Ø±Ø´ÛŒâ€ŒØ³Ø§Ø²ÛŒ کنید." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "از هات داگ خود لذت ببرید!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "ذخیرهٔ تنظیمات وب‌گاه" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "نمایش طراحی‌های نمایه" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "نمایش دادن یا پنهان کردن طراحی‌های نمایه." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "پیش‌زمینه" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7162,6 +6905,18 @@ msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مش msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "هیچ کاربری با آن نشانی پست الکترونیکی یا نام کاربری وجود ندارد." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "برای آن کاربر نشانی پست الکترونیکی ثبت شده وجود ندارد." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "هنگام ذخیرهٔ تایید نشانی خطا رخ داد." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" @@ -7437,11 +7192,6 @@ msgstr "showForm() پیاده نشده است." msgid "saveSettings() not implemented." msgstr "saveSettings() پیاده نشده است." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7473,17 +7223,6 @@ msgctxt "MENU" msgid "Site" msgstr "وب‌گاه" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "پیکربندی طرح" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "طرح" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "پیکربندی کاربر" @@ -8350,47 +8089,6 @@ msgstr "حذÙ" msgid "Delete this user" msgstr "حذ٠این کاربر" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "ذخیره‌کردن طرح" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "تغییر رنگ‌ها" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "بارگذاری پرونده" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"شما می‌توانید تصویر پیش‌زمینهٔ شخصی خود را بارگذاری کنید. بیشینهٔ اندازهٔ پرونده " -"Û² مگابایت است." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "روشن" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "خاموش" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§ÛŒ طراحی برگردانده شدند." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8604,13 +8302,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "اعمال گروه" @@ -8992,7 +8683,7 @@ msgstr "" "به این پست الکترونیک پاسخ ندهید، چون پاسخ شما به آن‌ها نمی‌رسد.\n" "\n" "با احترام،\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10022,10 +9713,6 @@ msgstr "پست الکترونیکی" msgid "Change email handling" msgstr "تغیر تنظیمات ایمل ." -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "نمایهٔ خود را طراحی کنید" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10450,3 +10137,239 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "نمی‌توان نشانی اینترنتی چهره را خواند«%s»." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "نمی‌توان دسترسی را برای برنامهٔ %s لغو کرد." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "نمی‌توان نمایه را ذخیره کرد." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "نمی‌توان یک کاربر را با نام مستعار %s پیدا کرد." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "یک نشانی پست الکترونیکی معتبر نیست." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "نمی‌توان نمایه را ذخیره کرد." + +#~ msgid "Unable to save your design settings." +#~ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." + +#~ msgid "Could not update your design." +#~ msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." + +#~ msgid "Design" +#~ msgstr "طرح" + +#~ msgid "Theme not available: %s." +#~ msgstr "پوسته در دسترس نیست: %s." + +#~ msgid "Change logo" +#~ msgstr "تغییر نشان" + +#~ msgid "Change theme" +#~ msgstr "تغییر پوسته" + +#~ msgid "Site theme" +#~ msgstr "پوستهٔ وب‌گاه" + +#~ msgid "Theme for the site." +#~ msgstr "پوسته برای وب‌گاه" + +#~ msgid "Custom theme" +#~ msgstr "پوستهٔ اختصاصی" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "شما می‌توانید یک پوستهٔ اختصاصی StatusNet را به‌عنوان یک آرشیو .ZIP بارگذاری " +#~ "کنید." + +#~ msgid "Change background image" +#~ msgstr "تغییر تصویر پیش‌زمینه" + +#~ msgid "Background" +#~ msgstr "پیش‌زمینه" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "شما می‌توانید یک تصویر پیش‌زمینه را برای وب‌گاه بارگذاری کنید. بیشینهٔ اندازهٔ " +#~ "پرونده %1 $s است." + +#~ msgid "On" +#~ msgstr "روشن" + +#~ msgid "Off" +#~ msgstr "خاموش" + +#~ msgid "Turn background image on or off." +#~ msgstr "تصویر پیش‌زمینه را ÙØ¹Ø§Ù„ یا ØºÛŒØ±ÙØ¹Ø§Ù„ کنید." + +#~ msgid "Tile background image" +#~ msgstr "تصویر پیش‌زمینهٔ موزاییکی" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "تغییر رنگ‌ها" + +#~ msgid "Content" +#~ msgstr "محتوا" + +#~ msgid "Sidebar" +#~ msgstr "ستون کناری" + +#~ msgid "Text" +#~ msgstr "متن" + +#~ msgid "Links" +#~ msgstr "پیوندها" + +#~ msgid "Advanced" +#~ msgstr "Ù¾ÛŒØ´Ø±ÙØªÙ‡" + +#~ msgid "Custom CSS" +#~ msgstr "CSS اختصاصی" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "بازگرداندن طرح‌های Ù¾ÛŒØ´â€ŒÙØ±Ø¶" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "برگشت به حالت پیش گزیده" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "ذخیره‌کردن طرح" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "برای ویرایش گروه باید وارد شوید." + +#~ msgid "Group design" +#~ msgstr "ظاهر گروه" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "ظاهر گروه را تغییر دهید تا شما را راضی کند." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." + +#~ msgid "Design preferences saved." +#~ msgstr "ترجیحات طرح ذخیره شد." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "یک پیام را به خودتان Ù†ÙØ±Ø³ØªÛŒØ¯Ø› در عوض آن را آهسته برای خود بگویید." + +#~ msgid "Backgrounds" +#~ msgstr "پس زمینه‌ها" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "پوسته برای وب‌گاه" + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "مسیر پوشه برای زبان‌های محلی" + +#~ msgid "Profile design" +#~ msgstr "طراحی نمایه" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "شیوهٔ نمایش نمایهٔ خود را با یک تصویر پیش‌زمینه Ùˆ یک رنگ از جعبهٔ رنگ‌ها به " +#~ "انتخاب خودتان Ø³ÙØ§Ø±Ø´ÛŒâ€ŒØ³Ø§Ø²ÛŒ کنید." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "از هات داگ خود لذت ببرید!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "ذخیرهٔ تنظیمات وب‌گاه" + +#~ msgid "View profile designs" +#~ msgstr "نمایش طراحی‌های نمایه" + +#~ msgid "Show or hide profile designs." +#~ msgstr "نمایش دادن یا پنهان کردن طراحی‌های نمایه." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "پیش‌زمینه" + +#~ msgid "Unable to delete design setting." +#~ msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." + +#~ msgid "Design configuration" +#~ msgstr "پیکربندی طرح" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "طرح" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "ذخیره‌کردن طرح" + +#~ msgid "Change colours" +#~ msgstr "تغییر رنگ‌ها" + +#~ msgid "Use defaults" +#~ msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" + +#~ msgid "Upload file" +#~ msgstr "بارگذاری پرونده" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "شما می‌توانید تصویر پیش‌زمینهٔ شخصی خود را بارگذاری کنید. بیشینهٔ اندازهٔ " +#~ "پرونده Û² مگابایت است." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "روشن" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "خاموش" + +#~ msgid "Design defaults restored." +#~ msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§ÛŒ طراحی برگردانده شدند." + +#~ msgid "Design your profile" +#~ msgstr "نمایهٔ خود را طراحی کنید" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index ddbaddb79e..e70521e0c2 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -8,6 +8,7 @@ # Author: Nike # Author: Silvonen # Author: Str4nd +# Author: Tne # Author: Wwwwolf # Author: XTL # -- @@ -17,32 +18,38 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. -#, php-format +#, fuzzy, php-format msgid "" "The database for %1$s is not responding correctly, so the site will not work " "properly. The site admins probably know about the problem, but you can " "contact them at %2$s to make sure. Otherwise, wait a few minutes and try " "again." msgstr "" +"Sivuston %1s tietokanta ei vastaa oikein joten sivusto ei toimi kunnolla. " +"Ylläpitäjät tietävät todennäköisesti ongelmasta mutta voit ottaa heihin " +"varmuuden vuoksi yhteyttä osoitteella %2$s. Muussa tapauksessa odota muutama " +"minuutti ja yritä uudelleen." #. TRANS: Error message. msgid "" "An important error occured, probably related to email setup. Check logfiles " "for more info." msgstr "" +"Tapahtui kriittinen virhe todennäköisesti liittyen sähköpostiasetuksiin. " +"Tarkista logitiedostot saadaksesi lisätietoja." #. TRANS: Error message. msgid "An error occurred." @@ -108,7 +115,6 @@ msgid "Save access settings" msgstr "Tallenna käyttöoikeusasetukset" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -124,7 +130,6 @@ msgstr "Tallenna käyttöoikeusasetukset" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -173,7 +178,7 @@ msgstr "Et voi pyytää OMB 0.1 -etäprofiilia tällä toiminnolla." #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while listing %s." -msgstr "" +msgstr "Odottamaton virhe listattaessa käyttäjää %s." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a profile URL. @@ -182,6 +187,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly. Please try retrying later." msgstr "" +"Virhe listattaessa URL:ia %s. Etäpalvelin ei todennäköisesti vastaa oikein. " +"Ole hyvä ja yritä myöhemmin uudelleen." #. TRANS: Title after adding a user to a list. msgctxt "TITLE" @@ -198,7 +205,6 @@ msgstr "Sivua ei ole." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -249,15 +255,14 @@ msgid "No such user." msgstr "Käyttäjää ei ole." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "%s aikajana" +msgstr "Kotisivun aikajana" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. -#, fuzzy, php-format +#, php-format msgid "%s's home timeline" -msgstr "%s aikajana" +msgstr "%s:n kotisivun aikajana" #. TRANS: %s is user nickname. #, php-format @@ -296,13 +301,13 @@ msgstr "" #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@". #. TRANS: This message contains Markdown links. Keep "](" together. -#, fuzzy, php-format +#, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." -"newnotice%%%%?status_textarea=%s)!" +"Voit yrittää [nykäistä %1$s](../%2$s) heidän profiilinsa kautta tai [lähetä " +"heille viesti](%%%%action.newnotice%%%%?status_textarea=%3$s)." #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. @@ -366,7 +371,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Käyttäjän päivitys epäonnistui." @@ -381,7 +385,6 @@ msgstr "Profiilin tallennus epäonnistui." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -396,28 +399,10 @@ msgstr[1] "" "Nykyisien asetusten johdosta palvelin ei voinut käsitellä näin paljoa POST-" "dataa (%s tavua)." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Ulkoasun tallennus epäonnistui." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Ulkoasua ei voitu päivittää." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" -msgstr "" +msgstr "Pääsivu" #. TRANS: Title for Atom feed. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. @@ -504,6 +489,8 @@ msgstr "" "Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Et voi lähettää viestiä itsellesi. Kuiskaa se hiljaa itsellesi." @@ -617,8 +604,8 @@ msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." #, fuzzy, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "kuvaus on liian pitkä (max %d merkkiä)." -msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)." +msgstr[0] "Kuvaus on liian pitkä (maksimipituus %d merkkiä)." +msgstr[1] "Kuvaus on liian pitkä (maksimipituus %d merkkiä)." #. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: API validation exception thrown when location does not validate. @@ -732,7 +719,6 @@ msgstr "sivun %s ryhmiä" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "" @@ -758,9 +744,8 @@ msgstr "" #. TRANS: API validation exception thrown when alias is the same as nickname. #. TRANS: Group create form validation error. -#, fuzzy msgid "Alias cannot be the same as nickname." -msgstr "Alias ei voi olla sama kuin ryhmätunnus." +msgstr "Alias ei voi olla sama kuin käyttäjänimi." #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to perform an action related to a non-existing list. @@ -784,24 +769,20 @@ msgid "You cannot delete lists that do not belong to you." msgstr "Et voi poistaa luetteloita, joita et omista." #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." -msgstr "Käyttäjä ei kuulu tähän ryhmään." +msgstr "Käyttäjä ei kuulu ole listan jäsen." #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "Sinä et kuulu tähän ryhmään." +msgstr "Sinulla ei ole oikeuksia lisätä jäseniä listalle." #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "Profiili on pakollinen." +msgstr "Sinun pitää valita jäsen." #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "Sinä et kuulu tähän ryhmään." +msgstr "Sinulla ei ole oikeuksia poistaa jäseniä listalta." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." @@ -813,12 +794,11 @@ msgstr "Luettelolla pitää olla nimi." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "Annettu käyttäjä ei ole tämän listan tilaaja." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "Et ole tilannut tämän käyttäjän päivityksiä." +msgstr "Et ole tilaajana tällä listalla." #. TRANS: Client error displayed when uploading a media file has failed. msgid "Upload failed." @@ -850,7 +830,6 @@ msgstr "Tietokantavirhe lisättäessä oauth_token_association-arvoa." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -859,7 +838,6 @@ msgstr "Tietokantavirhe lisättäessä oauth_token_association-arvoa." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." @@ -1036,11 +1014,11 @@ msgstr "Asiakasohjelman on annettava 'status'-parametri arvoineen." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. #. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. -#, fuzzy, php-format +#, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." -msgstr[0] "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." -msgstr[1] "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." +msgstr[0] "Viesti on liian pitkä. Viestin enimmäispituus on %d merkki." +msgstr[1] "Viesti on liian pitkä. Viestin enimmäispituus on %d merkkiä." #. TRANS: Client error displayed when replying to a non-existing notice. msgid "Parent notice not found." @@ -1050,11 +1028,11 @@ msgstr "Viestiä, johon vastataan, ei löytynyt." #. TRANS: %d is the maximum lenth for a notice. #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum length for a notice. -#, fuzzy, php-format +#, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." -msgstr[0] "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." -msgstr[1] "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." +msgstr[0] "Päivityksen enimmäispituus on %d merkki mukaan lukien URL-osoite." +msgstr[1] "Päivityksen enimmäispituus on %d merkkiä mukaan lukien URL-osoite." #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. @@ -1116,10 +1094,9 @@ msgstr "Toistettu käyttäjälle %s" #. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. #. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that were to repeated to %2$s / %3$s." -msgstr "" -"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." +msgstr "Sivuston %1$s päivitykset, jotka toistettiin käyttäjälle %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. @@ -1129,9 +1106,9 @@ msgstr "Toistot käyttäjältä %s" #. TRANS: Subtitle of API time with retweets of me. #. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. -#, fuzzy, php-format +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." +msgstr "Sivuston %1$s päivitykset, jotka %2$s / %3$s on toistanut." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1218,7 +1195,6 @@ msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1255,7 +1231,7 @@ msgstr "Et ole kirjautunut sisään." #. TRANS: Client error displayed when trying to approve or cancel a group join request without #. TRANS: being a group administrator. msgid "Only group admin can approve or cancel join requests." -msgstr "" +msgstr "Vain ryhmän ylläpitäjä voi hyväksyä tai hylätä liittymispyyntöjä." #. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. @@ -1266,9 +1242,9 @@ msgstr "Profiili on pakollinen." #. TRANS: %s is a nickname. #. TRANS: Client error displayed when trying to approve a non-existing group join request. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for this group." -msgstr "Lista ryhmän käyttäjistä." +msgstr "%s ei ole ryhmän moderointijonossa." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. @@ -1290,10 +1266,10 @@ msgstr "" #. TRANS: Title for leave group page after group join request is approved/disapproved. #. TRANS: %1$s is the user nickname, %2$s is the group nickname. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request for %2$s" -msgstr "Käyttäjän %1$s päivitys %2$s" +msgstr "Käyttäjän %1$s liittymispyyntö ryhmään %2$s" #. TRANS: Message on page for group admin after approving a join request. msgid "Join request approved." @@ -1304,22 +1280,24 @@ msgid "Join request canceled." msgstr "Liittymispyyntö peruttu." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "Lista ryhmän käyttäjistä." +msgstr "Käyttäjä %s ei ole hyväksyttävien listalla tilauksiisi." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#, fuzzy, php-format +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." -msgstr "Käyttäjä %1$s ei voinut liittyä ryhmään %2$s." +msgstr "" +"Käyttäjän %1$s pyyntöä liittyä ryhmään %2$s ei voitu hylätä tai hyväksyä." #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s's request" -msgstr "Käyttäjän %1$s päivitys %2$s" +msgstr "Käyttäjän %1$s pyyntö" #. TRANS: Message on page for user after approving a subscription request. msgid "Subscription approved." @@ -1412,9 +1390,9 @@ msgstr "Ei profiilia tällä tunnuksella: %d." #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. -#, fuzzy, php-format +#, php-format msgid "Profile %1$d not subscribed to profile %2$d." -msgstr "Et ole tilannut tämän käyttäjän päivityksiä." +msgstr "Profiili %1$d ei ole profiilin %2$d tilaaja." #. TRANS: Client exception thrown when trying to delete a subscription of another user. msgid "Cannot delete someone else's subscription." @@ -1422,9 +1400,9 @@ msgstr "Et voi toisen vieraan käyttäjän tilausta." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +msgstr "Henkilöt joita %1$s seuraa sivustolla %2$s" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1453,7 +1431,6 @@ msgstr "Liitettä ei ole." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1672,10 +1649,10 @@ msgstr "Vastaukset käyttäjälle %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" -msgstr "Käyttäjän %1$s päivitys %2$s" +msgstr "%1$s poistui ryhmästä %2$s" #. TRANS: Client error displayed when trying to leave a group without specifying an ID. #. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. @@ -1722,14 +1699,12 @@ msgstr "Tämä osoite on jo vahvistettu." #. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#, fuzzy msgid "Could not update user IM preferences." -msgstr "Ei voitu päivittää käyttäjän asetuksia." +msgstr "Käyttäjän pikaviestinasetuksia ei voitu päivittää." #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "Ei voitu lisätä uutta tilausta." +msgstr "Käyttäjän pikaviestinasetuksia ei voitu lisätä." #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. @@ -1959,148 +1934,6 @@ msgstr "Älä poista tätä käyttäjää." msgid "Delete this user." msgstr "Poista tämä käyttäjä." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Ulkoasu" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Ulkoasuasetukset tälle StatusNet-sivustolle" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Virheellinen logon URL-osoite." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Virheellinen logon salattu URL-osoite." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Teema ei ole käytettävissä: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Vaihda väriä" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Sivuston logo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Teeman vaihto" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Sivuston teema" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Teema sivustolle." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Mukautettu ulkoasu" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Voit ladata mukautetun StatusNet-teeman .ZIP-pakettina." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Vaihda tautakuva" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Tausta" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "Voit ladata ryhmälle taustakuvan. Enimmäiskoko on %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "On" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Off" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Kytke taustakuva päälle tai pois päältä." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Taustakuvan toisto vierekkäin" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Vaihda värejä" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Sisältö" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Sivupalkki" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Teksti" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Linkit" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Lisäasetukset" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Mukautettu CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Käytä oletusasetuksia" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Palauta oletusulkonäkö." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Palauta oletusulkoasu." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Tallenna ulkoasu." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Tämä päivitys ei ole suosikki!" @@ -2179,12 +2012,12 @@ msgstr "Organisaation kotisivu on pakollinen." #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. msgid "Callback is too long." -msgstr "" +msgstr "Takaisinsoitto-osoite on liian pitkä." #. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form. msgid "Callback URL is not valid." -msgstr "" +msgstr "Takaisinsoitto-osoite ei kelpaa." #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. msgid "Could not update application." @@ -2219,20 +2052,19 @@ msgstr "Asetukset tallennettu." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Poista käyttäjä" +msgstr "Listan %s poistaminen" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Tuo ei ole kelvollinen sähköpostiosoite." +msgstr "Listan %s muokkaus" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." msgstr "Tunnusta tai ID:tä ei ole." @@ -2241,15 +2073,12 @@ msgid "Not a local user." msgstr "Käyttäjää ei ole." #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "" -"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." +msgstr "Vain tagien luojat voivat muokata tageja." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Käytä tätä lomaketta muokataksesi ryhmää." +msgstr "Muokkaa listaa tällä lomakkeella." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2260,23 +2089,26 @@ msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" +"Tagin poistaminen poistaa pysyvästi kaikki sen tilaaja- ja jäsentiedot. " +"Haluatko silti jatkaa?" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "Koko ei kelpaa." +msgstr "Virheellinen tagi." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "Sinä kuulut jo tähän ryhmään." +msgstr "Sinulla on jo tagi nimeltä %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" +"Julkisen tagin muuttaminen yksityiseksi poistaa pysyvästi siihen liittyvät " +"tilaukset. Haluatko silti jatkaa?" #. TRANS: TRANS: Server error displayed when updating a list fails. msgid "Could not update list." @@ -2522,6 +2354,8 @@ msgid "" "Be the first to add a notice to your favorites by clicking the fave button " "next to any notice you like." msgstr "" +"Ole ensimmmäinen ja lisää viesti suosikkeihisi napsauttamalla tykkää-" +"painiketta haluamasi viestin vieressä." #. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users. #. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting. @@ -2530,6 +2364,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" +"Mikset [rekisteröidy](%%action.register%%) ja ole ensimmäinen, joka lisää " +"viestin suosikkeihinsa?" #. TRANS: Title of RSS feed with favourite notices of a user. #. TRANS: %s is a user's nickname. @@ -2701,30 +2537,6 @@ msgstr "Tietokantavirhe estettäessä käyttäjää ryhmästä." msgid "No ID." msgstr "Ei ID:tä." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "" -"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Ryhmän ulkoasu" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "Mukauta ryhmäsi ulkonäköä taustakuvan ja väripaletin valinnalla." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Ulkoasun tallennus epäonnistui." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Ulkoasuasetukset tallennettu." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -2785,9 +2597,9 @@ msgstr "%s ryhmien jäsenyydet" #. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s group members awaiting approval, page %2$d" -msgstr "Ryhmän %s jäsenet" +msgstr "Hyväksymistä odottavat ryhmän %1$s jäsenet, sivu %2$d" #. TRANS: Page notice for group members page. msgid "A list of users awaiting approval to join this group." @@ -2821,6 +2633,11 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" "%%%)!" msgstr "" +"Sivuston %%%%site.name%%%% ryhmistä voit löytää samoista asioista " +"kiinnostuneita ihmisiä ja keskustella heidän kanssaan. Liityttyäsi ryhmään " +"voit lähettää viestejä sen muille jäsenille lisäämällä viestiin tagin !" +"ryhmännimi. Jos et näe haluamaasi ryhmää, kokeile [hakea ryhmää](%%%%action." +"groupsearch%%%%) tai [perusta oma ryhmä](%%%%action.newgroup%%%%)!" #. TRANS: Link to create a new group on the group list page. #. TRANS: Link text on group page to create a new group. @@ -2856,6 +2673,7 @@ msgid "" "If you cannot find the group you're looking for, you can [create it](%%" "action.newgroup%%) yourself." msgstr "" +"Jos et löydä etsimääsi ryhmää voit [luoda](%%action.newgroup%%) sellaisen." #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). @@ -2864,6 +2682,8 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" +"[Rekisteröidy käyttäjäksi](%%action.register%%) ja [luo ryhmä](%%action." +"newgroup%%) ihan itse!" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. msgid "Only an admin can unblock group members." @@ -3357,9 +3177,8 @@ msgstr "" msgid "Could not create application." msgstr "Ei voitu lisätä aliasta." -#, fuzzy msgid "Invalid image." -msgstr "Koko ei kelpaa." +msgstr "Virheellinen kuva." #. TRANS: Title for form to create a group. msgid "New group" @@ -3396,12 +3215,6 @@ msgstr "Ei sisältöä!" msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Viesti lähetetty" @@ -3476,9 +3289,9 @@ msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" #. TRANS: RSS notice search feed description. #. TRANS: %1$s is the query, %2$s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s." -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +msgstr "Hakua %1$s vastaavat päivitykset palvelussa %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. #, fuzzy @@ -3616,34 +3429,30 @@ msgid "Notice Search" msgstr "Etsi Päivityksistä" #. TRANS: Client error displayed trying to use "one time password login" without specifying a user. -#, fuzzy msgid "No user ID specified." -msgstr "Ryhmää ei ole määritelty." +msgstr "Käyttäjätunnus puuttuu." #. TRANS: Client error displayed trying to use "one time password login" without specifying a login token. -#, fuzzy msgid "No login token specified." -msgstr "Profiilia ei ole määritelty." +msgstr "Kirjautumiskoodi puuttuu." #. TRANS: Client error displayed trying to use "one time password login" without requesting a login token. msgid "No login token requested." msgstr "Ei valtuutuspyyntöä!" #. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token. -#, fuzzy msgid "Invalid login token specified." -msgstr "Päivityksen sisältö ei kelpaa" +msgstr "Virheellinen kirjautumiskoodi." #. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token. -#, fuzzy msgid "Login token expired." -msgstr "Kirjaudu sisään" +msgstr "Vanhentunut kirjautumiskoodi." #. TRANS: Title for outbox for any but the fist page. #. TRANS: %1$s is the user nickname, %2$d is the page number. -#, fuzzy, php-format +#, php-format msgid "Outbox for %1$s - page %2$d" -msgstr "Käyttäjän %s lähetetyt viestit" +msgstr "Käyttäjän %1$s lähetetyt viestit - sivu %2$d" #. TRANS: Title for first page of outbox. #, php-format @@ -3655,10 +3464,9 @@ msgid "This is your outbox, which lists private messages you have sent." msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." #. TRANS: Title for page where to change password. -#, fuzzy msgctxt "TITLE" msgid "Change password" -msgstr "Vaihda salasana" +msgstr "Salasanan vaihto" #. TRANS: Instructions for page where to change password. msgid "Change your password." @@ -3680,25 +3488,21 @@ msgstr "Uusi salasana" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#, fuzzy msgid "6 or more characters." -msgstr "6 tai useampia merkkejä" +msgstr "vähintään 6 merkkiä" #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. -#, fuzzy msgctxt "LABEL" msgid "Confirm" -msgstr "Vahvista" +msgstr "Uudestaan" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Same as password above." msgstr "Sama kuin ylläoleva salasana" #. TRANS: Button text on page where to change password. -#, fuzzy msgctxt "BUTTON" msgid "Change" msgstr "Vaihda" @@ -3710,14 +3514,12 @@ msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." -msgstr "Väärä vanha salasana" +msgstr "Väärä vanha salasana." #. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." @@ -3726,7 +3528,6 @@ msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." msgstr "Uutta salasanaa ei voida tallentaa." @@ -3740,41 +3541,40 @@ msgstr "Polut" #. TRANS: Form instructions for Path admin panel. msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "StatusNet sivuston polku- ja palvelinasetukset" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the directory that could not be read from. -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "Pikaviestin ei ole käytettävissä." +msgstr "Teemahakemisto ei ole luettavissa: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the avatar directory that could not be written to. -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "Pikaviestin ei ole käytettävissä." +msgstr "Avatar-hakemistoon ei voi kirjoittaa: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the background directory that could not be written to. -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "Taustakuvan hakemisto" +msgstr "Taustahakemistoon ei voi kirjoittaa: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the locales directory that could not be read from. -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "Pikaviestin ei ole käytettävissä." +msgstr "Paikallisasetustohakemistoon ei voi kirjoittaa: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the SSL server URL that is too long. msgid "Invalid SSL server. The maximum length is 255 characters." -msgstr "" +msgstr "Virheellinen SSL-palvelin. Enimmäispituus on 255 merkkiä." #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgid "Site" -msgstr "Kutsu" +msgstr "Sivusto" #. TRANS: Field label in Paths admin panel. msgid "Server" @@ -3782,100 +3582,88 @@ msgstr "Palvelin" #. TRANS: Field title in Paths admin panel. msgid "Site's server hostname." -msgstr "" +msgstr "Sivuston palvelinnimi." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Path" -msgstr "Polut" +msgstr "Polku" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Site path." -msgstr "Palvelun ilmoitus" +msgstr "Sivuston polku." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Locale directory" -msgstr "Taustakuvan hakemisto" +msgstr "Paikallisasetustohakemisto" #. TRANS: Field title in Paths admin panel. msgid "Directory path to locales." -msgstr "" +msgstr "Polku paikallisasetustohin." #. TRANS: Checkbox label in Paths admin panel. msgid "Fancy URLs" -msgstr "" +msgstr "Lyhyet osoitteet" #. TRANS: Field title in Paths admin panel. msgid "Use fancy URLs (more readable and memorable)?" -msgstr "" +msgstr "Käytetäänkö lyhyitä URL-osoitteita (luettavampia ja muistettavampia)?" #. TRANS: Fieldset legend in Paths admin panel. msgctxt "LEGEND" msgid "Theme" -msgstr "Ulkoasu" +msgstr "Teema" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for themes." -msgstr "Kirjaudu ulos palvelusta" +msgstr "Teemojen palvelin." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." -msgstr "" +msgstr "Www-polku teemoille." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "SSL server" -msgstr "Palauta" +msgstr "SSL-palvelin" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL server for themes (default: SSL server)." -msgstr "" +msgstr "Teemojen SSL-palvelin (oletus: SSL-palvelin)." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "SSL path" -msgstr "Palvelun ilmoitus" +msgstr "SSL-polku" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "" +msgstr "Teemojen SSL-polku (oletus: /theme/)" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Directory" -msgstr "Taustakuvan hakemisto" +msgstr "Hakemisto" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Directory where themes are located." -msgstr "" +msgstr "Hakemisto jossa teemat sijaitsevat." #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgid "Avatars" -msgstr "Kuva" +msgstr "Avatarit" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Avatar server" -msgstr "Profiilikuva-asetukset" +msgstr "Avatar-palvelin" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for avatars." -msgstr "Kirjaudu ulos palvelusta" +msgstr "Palvelin jolla avatarit sijaitsevat." #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Avatar path" -msgstr "Kuva päivitetty." +msgstr "Avatarien polku" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to avatars." -msgstr "Profiilikuvan päivittäminen epäonnistui." +msgstr "Www-polku avatarien luo." #. TRANS: Field label in Paths admin panel. msgid "Avatar directory" @@ -3883,32 +3671,7 @@ msgstr "Taustakuvan hakemisto" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Directory where avatars are located." -msgstr "" - -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Taustakuvat" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Kirjaudu ulos palvelusta" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" +msgstr "Hakemisto jossa avatarit sijaitsevat." #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" @@ -4720,7 +4483,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4730,18 +4492,6 @@ msgstr "Vaihda" msgid "Enter a nickname or email address." msgstr "Syötä käyttäjätunnus tai sähköpostiosoite" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5706,6 +5456,14 @@ msgstr "" msgid "You must have a valid contact email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Virheellinen logon URL-osoite." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Virheellinen logon salattu URL-osoite." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5779,7 +5537,8 @@ msgid "Default language" msgstr "Ensisijainen kieli" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5803,9 +5562,22 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Kirjaudu ulos" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Sivuston logo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-logo" + #. TRANS: Button title for saving site settings. #, fuzzy -msgid "Save site settings" +msgid "Save the site settings." msgstr "Profiilikuva-asetukset" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6587,41 +6359,6 @@ msgstr "Kuvan URL-osoitetta '%s' ei voi avata." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Kuvan '%s' tyyppi on väärä" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -#, fuzzy -msgid "Profile design" -msgstr "Profiiliasetukset" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Profiilikuva-asetukset" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Näytä tai piillota profiilin ulkoasu." - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Näytä tai piillota profiilin ulkoasu." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Tausta" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6849,14 +6586,13 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "Virhe tapahtui profiilikuvan lisäämisessä" +msgstr "Virhe lisätessä hashtagia %s" #. TRANS: Client exception thrown if a notice contains too many characters. -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "Ongelma päivityksen tallentamisessa." +msgstr "Virhe viestin tallennuksessa. Liian pitkä viesti." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. msgid "Problem saving notice. Unknown user." @@ -6882,24 +6618,20 @@ msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Et voi lähettää uudelleen omaa viestiäsi." +msgstr "Ei voi toistaa; alkuperäinen ilmoitus puuttuu tai se on poistettu." #. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy msgid "You cannot repeat your own notice." -msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." +msgstr "Et voi toistaa omia viestejäsi." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Et voi lähettää uudelleen omaa viestiäsi." +msgstr "Et voi toistaa yksityisviestiä." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Et voi lähettää uudelleen omaa viestiäsi." +msgstr "Et voi toistaa viestiä, jota et voi lukea." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6907,9 +6639,9 @@ msgstr "Sinä kuulut jo tähän ryhmään." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Käyttäjällä ei ole viimeistä päivitystä" +msgstr "Käyttäjällä %1$s ei ole oikeuksia lukea viestiä %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6918,12 +6650,11 @@ msgstr "Ongelma päivityksen tallentamisessa." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). msgid "Bad type provided to saveKnownGroups." -msgstr "" +msgstr "Virheellinen tyyppi annettu metodille saveKnownGroups." #. TRANS: Server exception thrown when an update for a group inbox fails. -#, fuzzy msgid "Problem saving group inbox." -msgstr "Ongelma päivityksen tallentamisessa." +msgstr "Virhe ryhmän saapuneiden viestien tallennuksessa." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. @@ -7010,7 +6741,7 @@ msgstr "Käyttäjällä ei ole profiilia." #. TRANS: Exception thrown when a tag cannot be saved. msgid "Unable to save tag." -msgstr "Tagien tallennus epäonnistui." +msgstr "Tagin tallennus epäonnistui." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. #. TRANS: Error message displayed to a banned user when they try to subscribe. @@ -7073,6 +6804,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." @@ -7331,92 +7074,61 @@ msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#, fuzzy msgid "You cannot make changes to this site." -msgstr "Et voi lähettää viestiä tälle käyttäjälle." +msgstr "Et voi tehdä muutoksia sivustoon." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#, fuzzy msgid "Changes to that panel are not allowed." -msgstr "Rekisteröityminen ei ole sallittu." +msgstr "Et voi tehdä muutoksia paneeliin." #. TRANS: Client error message. -#, fuzzy msgid "showForm() not implemented." -msgstr "Komentoa ei ole vielä toteutettu." +msgstr "Komentoa showForm() ei ole toteutettu." #. TRANS: Client error message -#, fuzzy msgid "saveSettings() not implemented." -msgstr "Komentoa ei ole vielä toteutettu." - -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#, fuzzy -msgid "Unable to delete design setting." -msgstr "Twitter-asetuksia ei voitu tallentaa!" +msgstr "Komentoa saveSettings() ei ole toteutettu." #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Kotisivu" +msgstr "Koti" #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Home" -msgstr "Kotisivu" +msgstr "Koti" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Ylläpito" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Basic site configuration" -msgstr "Sähköpostiosoitteen vahvistus" +msgstr "Sivuston perusasetukset" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site" -msgstr "Kutsu" +msgstr "Sivusto" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy -msgid "Design configuration" -msgstr "SMS vahvistus" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Design" -msgstr "Ulkoasu" - -#. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "User configuration" -msgstr "SMS vahvistus" +msgstr "Käyttäjäasetukset" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Käyttäjä" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Access configuration" -msgstr "SMS vahvistus" +msgstr "Käyttöoikeudet" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" @@ -7424,26 +7136,22 @@ msgid "Access" msgstr "Käyttöoikeudet" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Paths configuration" -msgstr "SMS vahvistus" +msgstr "Polkujen asetukset" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Polut" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Sessions configuration" -msgstr "SMS vahvistus" +msgstr "Istuntojen asetukset" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" -msgstr "Omat" +msgstr "Istunnot" #. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" @@ -7455,29 +7163,26 @@ msgid "Site notice" msgstr "Ilmoitukset" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Snapshots configuration" -msgstr "SMS vahvistus" +msgstr "Tilannekuvien asetukset" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "Tilannekuvat" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "Aseta sivuston lisenssi" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Lisenssi" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Plugins configuration" -msgstr "SMS vahvistus" +msgstr "Liitännäiset" #. TRANS: Menu item in administrator navigation panel. #, fuzzy @@ -8282,48 +7987,6 @@ msgstr "Poista" msgid "Delete this user" msgstr "Poista käyttäjä" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Ryhmän ulkoasu" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Vaihda väriä" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Käytä oletusasetuksia" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -#, fuzzy -msgid "Upload file" -msgstr "Lataa" - -#. TRANS: Instructions for form on profile design page. -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "On" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Off" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#, fuzzy -msgid "Design defaults restored." -msgstr "Ulkoasuasetukset tallennettu." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8539,13 +8202,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Ryhmän toiminnot" @@ -9350,166 +9006,152 @@ msgstr "Poista tämä käyttäjä." #. TRANS: Header in list edit form. msgid "Add or remove people" -msgstr "" +msgstr "Lisää tai poista käyttäjiä" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Haku" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Linkit" +msgstr "Lista" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s (%2$s)" +msgstr "Käyttäjän %2$s lista %1$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Lisenssi" +msgstr "Listatut" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Tilaajat" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Viesti käyttäjälle %1$s, %2$s" +msgstr "Käyttäjän %2$s listan %1$s tilaajat." #. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" -msgstr "" +msgstr "Muokkaa" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Muokkaa ryhmää %s" +msgstr "Muokkaa omaa listaa %s." #. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy msgid "Tagged" -msgstr "Tagi" +msgstr "Tagatty" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Profiiliasetukset" +msgstr "Muokkaa listan asetuksia." #. TRANS: Text for link to edit list settings. msgid "Edit" -msgstr "" +msgstr "Muokkaa" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" -msgstr "Yksityisyys" +msgstr "Yksityinen" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Tilaukset" +msgstr "Listan tilaukset" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +msgstr "Käyttäjän %s tilaamat listat." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +msgstr "Listat joilla esiintyy käyttäjä %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +msgstr "Listat joilla esiintyy käyttäjä %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Käyttäjän %s luomat listat" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s (%2$s)" +msgstr "Käyttäjän %s listat." #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "Suosituimmat päivitykset" +msgstr "Omat listat" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "Tuo ei ole kelvollinen sähköpostiosoite." +msgstr "Muokkaa listoja" #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "Tagit" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Suosituimmat päivitykset" +msgstr "Suosituimmat listat" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "Käyttäjän %s tilaajat" +msgstr "Listalla: %1$d Tilaajia: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "API-metodia ei löytynyt." +msgstr "Listat joilla esiinnyt" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +msgstr "Listat joilla %s esiintyy" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Käyttäjän %s tilaukset" +msgstr "Listojen tilaukset" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Profiili" @@ -9519,13 +9161,11 @@ msgid "Your profile" msgstr "Sinun profiilisi" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Vastaukset" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Suosikit" @@ -9536,49 +9176,44 @@ msgid "User" msgstr "Käyttäjä" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Viesti" +msgstr "Viestit" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "Sinulle saapuneet viestit" #. TRANS: Displayed as version information for a plugin if no version information was found. -#, fuzzy msgid "Unknown" -msgstr "Tuntematon toiminto" +msgstr "Tuntematon" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Poista käytöstä" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Ota käyttöön" msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" -msgstr "" +msgstr "(Liitännäinen ei ole käytössä.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Profiilikuva-asetukset" +msgstr "Asetukset" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Vaihda profiiliasetuksesi" +msgstr "Muuta henkilökohtaisia asetuksia." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "SMS vahvistus" +msgstr "Sivuston asetukset." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9586,35 +9221,29 @@ msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Kirjaudu sisään" +msgstr "Kirjaudu ulos sivustolta." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "Kirjaudu sisään" +msgstr "Kirjaudu sisään sivustolle." #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Search" msgstr "Haku" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Search the site." -msgstr "Haku" +msgstr "Hae sivustolta." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Salli" +msgstr "Seuratut" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Salli" +msgstr "Seuraajat" #. TRANS: Label for user statistics. #, fuzzy @@ -9875,11 +9504,6 @@ msgstr "Sähköposti" msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." -#. TRANS: Menu item title in settings navigation panel. -#, fuzzy -msgid "Design your profile" -msgstr "Käyttäjän profiili" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10001,9 +9625,8 @@ msgid "None" msgstr "Ei mitään" #. TRANS: Server exception displayed if a theme name was invalid. -#, fuzzy msgid "Invalid theme name." -msgstr "Koko ei kelpaa." +msgstr "Teeman nimi ei kelpaa." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." @@ -10311,3 +9934,221 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Kuvan URL-osoitetta '%s' ei voi avata." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Virhe tapahtui päivitettäessä etäprofiilia." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Käytä tätä lomaketta muokataksesi ryhmää." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Profiilin tallennus epäonnistui." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Tuo ei ole kelvollinen sähköpostiosoite." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Profiilin tallennus epäonnistui." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Ulkoasun tallennus epäonnistui." + +#~ msgid "Could not update your design." +#~ msgstr "Ulkoasua ei voitu päivittää." + +#~ msgid "Design" +#~ msgstr "Ulkoasu" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Ulkoasuasetukset tälle StatusNet-sivustolle" + +#~ msgid "Theme not available: %s." +#~ msgstr "Teema ei ole käytettävissä: %s." + +#~ msgid "Change logo" +#~ msgstr "Vaihda väriä" + +#~ msgid "Change theme" +#~ msgstr "Teeman vaihto" + +#~ msgid "Site theme" +#~ msgstr "Sivuston teema" + +#~ msgid "Theme for the site." +#~ msgstr "Teema sivustolle." + +#~ msgid "Custom theme" +#~ msgstr "Mukautettu teema" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Voit ladata mukautetun StatusNet-teeman .ZIP-pakettina." + +#~ msgid "Change background image" +#~ msgstr "Vaihda tautakuva" + +#~ msgid "Background" +#~ msgstr "Tausta" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "Voit ladata ryhmälle taustakuvan. Enimmäiskoko on %1$s." + +#~ msgid "On" +#~ msgstr "On" + +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgid "Turn background image on or off." +#~ msgstr "Kytke taustakuva päälle tai pois päältä." + +#~ msgid "Tile background image" +#~ msgstr "Taustakuvan toisto vierekkäin" + +#~ msgid "Change colors" +#~ msgstr "Vaihda värejä" + +#~ msgid "Content" +#~ msgstr "Sisältö" + +#~ msgid "Sidebar" +#~ msgstr "Sivupalkki" + +#~ msgid "Text" +#~ msgstr "Teksti" + +#~ msgid "Links" +#~ msgstr "Linkit" + +#~ msgid "Advanced" +#~ msgstr "Lisäasetukset" + +#~ msgid "Custom CSS" +#~ msgstr "Mukautettu CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Käytä oletusasetuksia" + +#~ msgid "Restore default designs." +#~ msgstr "Palauta oletusulkonäkö." + +#~ msgid "Reset back to default." +#~ msgstr "Palauta oletusulkoasu." + +#~ msgid "Save design." +#~ msgstr "Tallenna ulkoasu." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "" +#~ "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." + +#~ msgid "Group design" +#~ msgstr "Ryhmän ulkoasu" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "Mukauta ryhmäsi ulkonäköä taustakuvan ja väripaletin valinnalla." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ulkoasun tallennus epäonnistui." + +#~ msgid "Design preferences saved." +#~ msgstr "Ulkoasuasetukset tallennettu." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." + +#~ msgid "Backgrounds" +#~ msgstr "Taustakuvat" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Kirjaudu ulos palvelusta" + +#~ msgid "Profile design" +#~ msgstr "Profiilin ulkoasu" + +#~ msgid "Design settings" +#~ msgstr "Ulkoasuasetukset" + +#, fuzzy +#~ msgid "View profile designs" +#~ msgstr "Näytä tai piillota profiilin ulkoasu." + +#~ msgid "Show or hide profile designs." +#~ msgstr "Näytä tai piillota profiilin ulkoasu." + +#~ msgid "Background file" +#~ msgstr "Taustakuvatiedosto" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Ulkoasun asetuksia ei voitu poistaa." + +#~ msgid "Design configuration" +#~ msgstr "Ulkoasun asetukset" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Ulkoasu" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Ryhmän ulkoasu" + +#~ msgid "Change colours" +#~ msgstr "Vaihda väriä" + +#~ msgid "Use defaults" +#~ msgstr "Käytä oletusasetuksia" + +#, fuzzy +#~ msgid "Upload file" +#~ msgstr "Lataa" + +#, fuzzy +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "On" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Off" + +#, fuzzy +#~ msgid "Design defaults restored." +#~ msgstr "Ulkoasuasetukset tallennettu." + +#, fuzzy +#~ msgid "Design your profile" +#~ msgstr "Käyttäjän profiili" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 4ea1de7e6c..595b145600 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -127,7 +127,6 @@ msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -143,7 +142,6 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -220,7 +218,6 @@ msgstr "Page non trouvée." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -390,7 +387,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Impossible de mettre à jour l’utilisateur." @@ -405,7 +401,6 @@ msgstr "Impossible d’enregistrer le profil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -420,24 +415,6 @@ msgstr[1] "" "Le serveur n’a pas pu gérer autant de données de POST (%s octets) en raison " "de sa configuration actuelle." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Échec de la sauvegarde de vos paramètres de conception." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Impossible de mettre à jour votre conception." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -529,6 +506,8 @@ msgstr "" "pas votre ami." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -759,7 +738,6 @@ msgstr "groupes sur %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Vous devez être administrateur pour modifier le groupe." @@ -874,7 +852,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -883,7 +860,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." @@ -1248,7 +1224,6 @@ msgstr "Vous devez ouvrir une session pour quitter un groupe." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1336,6 +1311,7 @@ msgid "Join request canceled." msgstr "Requête d’adhésion refusée." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s n'est pas dans la file de modération pour vos abonnements." @@ -1492,7 +1468,6 @@ msgstr "Pièce jointe non trouvée." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -2007,151 +1982,6 @@ msgstr "Ne pas supprimer ce groupe" msgid "Delete this user." msgstr "Supprimer cet utilisateur" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Conception" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Paramètres de conception pour ce site StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL du logo invalide." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Adresse URL du logo SSL invalide." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Le thème n’est pas disponible : %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Modifier le logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo du site" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Modifier le thème" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Thème du site" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Thème pour le site." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Thème personnalisé" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Vous pouvez importer un thème StatusNet personnalisé dans une archive .ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Changer l’image d’arrière plan" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Arrière plan" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Vous pouvez importer une image d’arrière plan pour ce site. La taille " -"maximale du fichier est de %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Activé" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Désactivé" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Activer ou désactiver l’image d’arrière plan." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Répéter l’image d’arrière plan" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Modifier les couleurs" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contenu" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barre latérale" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texte" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Liens" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avancé" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personnalisé" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Utiliser les valeurs par défaut" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Restaurer les conceptions par défaut." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Revenir aux valeurs par défaut." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Sauvegarder la conception." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Cet avis n’est pas un favori !" @@ -2755,31 +2585,6 @@ msgstr "" msgid "No ID." msgstr "Aucun identifiant." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Vous devez ouvrir une session pour modifier un groupe." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Conception du groupe" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personnalisez l’apparence de votre groupe avec une image d’arrière plan et " -"une palette de couleurs de votre choix" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Échec de la mise à jour de vos paramètres de conception." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Préférences de conception enregistrées." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3469,13 +3274,6 @@ msgstr "Aucun contenu !" msgid "No recipient specified." msgstr "Aucun destinataire n’a été spécifié." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"N’envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Message envoyé" @@ -3762,7 +3560,7 @@ msgid "Confirm" msgstr "Confirmer" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Identique au mot de passe ci-dessus." @@ -3938,30 +3736,6 @@ msgstr "Dossier des avatars" msgid "Directory where avatars are located." msgstr "Le répertoire où les avatars sont stockés." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Arrière plans" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Serveur pour les fonds d’écran." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Chemin d’accès Internet vers les fonds d’écran." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Serveur pour les fonds d’écran sur les pages SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Chemin d’accès Internet vers les fonds d’écran sur les pages SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Le répertoire où les fonds d’écran sont stockés." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Pièces jointes" @@ -4772,7 +4546,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 caractères ou plus, et ne l’oubliez pas !" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Réinitialiser" @@ -4781,18 +4554,6 @@ msgstr "Réinitialiser" msgid "Enter a nickname or email address." msgstr "Entrez un pseudo ou une adresse courriel." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Erreur lors de l’enregistrement de la confirmation du courriel." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5787,6 +5548,14 @@ msgstr "Le nom du site ne peut pas être vide." msgid "You must have a valid contact email address." msgstr "Vous devez avoir une adresse électronique de contact valide." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL du logo invalide." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Adresse URL du logo SSL invalide." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5863,7 +5632,9 @@ msgid "Default language" msgstr "Langue par défaut" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Langue du site lorsque la détection automatique des paramètres du navigateur " "n'est pas disponible" @@ -5892,8 +5663,22 @@ msgstr "" "Combien de temps (en secondes) les utilisateurs doivent attendre pour poster " "la même chose de nouveau." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo du site" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Sauvegarder les paramètres du site" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6694,42 +6479,6 @@ msgstr "Impossible de lire l’URL de l’avatar « %s »." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Format d’image invalide pour l’URL de l’avatar « %s »." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Conception de profil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personnalisez l’apparence de votre profil avec une image d’arrière plan et " -"une palette de couleurs de votre choix." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Bon appétit !" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Sauvegarder les paramètres du site" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Afficher les conceptions de profils" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Afficher ou masquer les paramètres de conception." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Arrière plan" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7194,6 +6943,18 @@ msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." msgid "Single-user mode code called when not enabled." msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Erreur lors de l’enregistrement de la confirmation du courriel." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Impossible de créer le groupe." @@ -7472,11 +7233,6 @@ msgstr "showForm() n’a pas été implémentée." msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Impossible de supprimer les paramètres de conception." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7508,17 +7264,6 @@ msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuration de la conception" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Conception" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration utilisateur" @@ -8395,45 +8140,6 @@ msgstr "Supprimer" msgid "Delete this user" msgstr "Supprimer cet utilisateur" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Sauvegarder la conception" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Modifier les couleurs" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Utiliser les valeurs par défaut" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Importer un fichier" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Vous pouvez importer votre image d’arrière plan personnelle. La taille " -"maximale du fichier est de 2 Mo." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Activé" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Désactivé" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Les paramètre par défaut de la conception ont été restaurés." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8652,13 +8358,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Ajouter ou modifier le logo du groupe « %s »" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Ajouter ou modifier l’apparence du groupe « %s »" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Actions du groupe" @@ -9048,7 +8747,7 @@ msgstr "" "Ne répondez pas à ce courriel ; il ne sera pas envoyé.\n" "\n" "Bien à vous,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10077,10 +9776,6 @@ msgstr "Courriel" msgid "Change email handling" msgstr "Modifier le traitement des courriels" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Concevez votre profil" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10515,3 +10210,248 @@ msgstr "XML invalide, racine XRD manquante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Impossible de lire l’URL de l’avatar « %s »." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Erreur lors de la mise à jour du profil distant." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossible de révoquer l’accès par l’application : %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Impossible d’enregistrer le profil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Impossible de trouver un utilisateur avec le pseudo %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Adresse courriel invalide." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Impossible d’enregistrer le profil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Échec de la sauvegarde de vos paramètres de conception." + +#~ msgid "Could not update your design." +#~ msgstr "Impossible de mettre à jour votre conception." + +#~ msgid "Design" +#~ msgstr "Conception" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Paramètres de conception pour ce site StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Le thème n’est pas disponible : %s." + +#~ msgid "Change logo" +#~ msgstr "Modifier le logo" + +#~ msgid "Change theme" +#~ msgstr "Modifier le thème" + +#~ msgid "Site theme" +#~ msgstr "Thème du site" + +#~ msgid "Theme for the site." +#~ msgstr "Thème pour le site." + +#~ msgid "Custom theme" +#~ msgstr "Thème personnalisé" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Vous pouvez importer un thème StatusNet personnalisé dans une archive ." +#~ "ZIP." + +#~ msgid "Change background image" +#~ msgstr "Changer l’image d’arrière plan" + +#~ msgid "Background" +#~ msgstr "Arrière plan" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Vous pouvez importer une image d’arrière plan pour ce site. La taille " +#~ "maximale du fichier est de %1$s." + +#~ msgid "On" +#~ msgstr "Activé" + +#~ msgid "Off" +#~ msgstr "Désactivé" + +#~ msgid "Turn background image on or off." +#~ msgstr "Activer ou désactiver l’image d’arrière plan." + +#~ msgid "Tile background image" +#~ msgstr "Répéter l’image d’arrière plan" + +#~ msgid "Change colors" +#~ msgstr "Modifier les couleurs" + +#~ msgid "Content" +#~ msgstr "Contenu" + +#~ msgid "Sidebar" +#~ msgstr "Barre latérale" + +#~ msgid "Text" +#~ msgstr "Texte" + +#~ msgid "Links" +#~ msgstr "Liens" + +#~ msgid "Advanced" +#~ msgstr "Avancé" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personnalisé" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Utiliser les valeurs par défaut" + +#~ msgid "Restore default designs." +#~ msgstr "Restaurer les conceptions par défaut." + +#~ msgid "Reset back to default." +#~ msgstr "Revenir aux valeurs par défaut." + +#~ msgid "Save design." +#~ msgstr "Sauvegarder la conception." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Vous devez ouvrir une session pour modifier un groupe." + +#~ msgid "Group design" +#~ msgstr "Conception du groupe" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personnalisez l’apparence de votre groupe avec une image d’arrière plan " +#~ "et une palette de couleurs de votre choix" + +#~ msgid "Unable to update your design settings." +#~ msgstr "Échec de la mise à jour de vos paramètres de conception." + +#~ msgid "Design preferences saved." +#~ msgstr "Préférences de conception enregistrées." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "N’envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." + +#~ msgid "Backgrounds" +#~ msgstr "Arrière plans" + +#~ msgid "Server for backgrounds." +#~ msgstr "Serveur pour les fonds d’écran." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Chemin d’accès Internet vers les fonds d’écran." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Serveur pour les fonds d’écran sur les pages SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Chemin d’accès Internet vers les fonds d’écran sur les pages SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Le répertoire où les fonds d’écran sont stockés." + +#~ msgid "Profile design" +#~ msgstr "Conception de profil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personnalisez l’apparence de votre profil avec une image d’arrière plan " +#~ "et une palette de couleurs de votre choix." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Bon appétit !" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Sauvegarder les paramètres du site" + +#~ msgid "View profile designs" +#~ msgstr "Afficher les conceptions de profils" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Afficher ou masquer les paramètres de conception." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Arrière plan" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Impossible de supprimer les paramètres de conception." + +#~ msgid "Design configuration" +#~ msgstr "Configuration de la conception" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Conception" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Sauvegarder la conception" + +#~ msgid "Change colours" +#~ msgstr "Modifier les couleurs" + +#~ msgid "Use defaults" +#~ msgstr "Utiliser les valeurs par défaut" + +#~ msgid "Upload file" +#~ msgstr "Importer un fichier" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Vous pouvez importer votre image d’arrière plan personnelle. La taille " +#~ "maximale du fichier est de 2 Mo." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Activé" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Désactivé" + +#~ msgid "Design defaults restored." +#~ msgstr "Les paramètre par défaut de la conception ont été restaurés." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Ajouter ou modifier l’apparence du groupe « %s »" + +#~ msgid "Design your profile" +#~ msgstr "Concevez votre profil" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index e02a9dde9e..61c37fe2e2 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -103,7 +103,6 @@ msgid "Save access settings" msgstr "Salve lis impuestazions di acès" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -119,7 +118,6 @@ msgstr "Salve lis impuestazions di acès" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -191,7 +189,6 @@ msgstr "La pagjine no esist." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -357,7 +354,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "No si à podût inzornâ l'utent." @@ -372,7 +368,6 @@ msgstr "No si à podût salvâ il profîl." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -383,24 +378,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "" - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -492,6 +469,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "" #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -720,7 +699,6 @@ msgstr "grups su %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "" @@ -829,7 +807,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -838,7 +815,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "" @@ -1191,7 +1167,6 @@ msgstr "Tu scugnis jessi jentrât par lassâ un grup." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1275,6 +1250,7 @@ msgid "Join request canceled." msgstr "Richieste di union scancelade." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s nol è te code di moderazion pes tôs sotscrizions." @@ -1426,7 +1402,6 @@ msgstr "" #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1787,7 +1762,7 @@ msgstr "" #. TRANS: Client error displayed trying to delete an application that does not exist. msgid "Application not found." -msgstr "" +msgstr "La aplicazion no je stade cjatade." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. @@ -1916,148 +1891,6 @@ msgstr "No stâ eliminâ chest utent" msgid "Delete this user." msgstr "Elimine chest utent" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Grafiche" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Impuestazions de grafiche par chest sît StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "" - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Cambie il logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo dal sît" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Cambie il teme" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Teme dal sît" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Teme pal sît." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Teme personalizât" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Cambie la figure di sfont" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Sfont" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Ativade" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Disativade" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Cambie i colôrs" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contignût" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Bare in bande" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Test" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Leams" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avançadis" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalizât" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Dopre i parametris predeterminâts" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Salve la grafiche" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "" @@ -2648,29 +2481,6 @@ msgstr "" msgid "No ID." msgstr "" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "" - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Grafiche dal grup" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Preferencis pe grafiche salvadis." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3318,12 +3128,6 @@ msgstr "" msgid "No recipient specified." msgstr "" -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Messaç mandât" @@ -3420,11 +3224,11 @@ msgstr "" #. TRANS: Page title for OAuth applications msgid "OAuth applications" -msgstr "" +msgstr "Aplicazions OAuth" #. TRANS: Page instructions for OAuth applications msgid "Applications you have registered" -msgstr "" +msgstr "Lis aplicazions che tu âs regjistrât" #. TRANS: Empty list message on page with OAuth applications. #, php-format @@ -3433,7 +3237,7 @@ msgstr "" #. TRANS: Title for OAuth connection settings. msgid "Connected applications" -msgstr "" +msgstr "Aplicazions conetudis" #. TRANS: Instructions for OAuth connection settings. msgid "The following connections exist for your account." @@ -3459,7 +3263,7 @@ msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. msgid "You have not authorized any applications to use your account." -msgstr "" +msgstr "No tu âs autorizât nissune aplicazion a doprâ la tô identitât." #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". @@ -3600,7 +3404,7 @@ msgid "Confirm" msgstr "Conferme" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Compagn che la password parsore" @@ -3776,30 +3580,6 @@ msgstr "Cartele pai avatars" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Sfonts" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Alegâts" @@ -4572,7 +4352,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "" @@ -4581,18 +4360,6 @@ msgstr "" msgid "Enter a nickname or email address." msgstr "Inserìs un sorenon o une direzion di pueste eletroniche." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5519,6 +5286,14 @@ msgstr "" msgid "You must have a valid contact email address." msgstr "Tu scugnis vê une direzion di pueste eletroniche valide pai contats." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "" + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5589,7 +5364,9 @@ msgid "Default language" msgstr "Lenghe predeterminade" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Lenghe dal sît cuant che il rilevament automatic da lis impuestazions dal " "sgarfadôr nol è disponibil" @@ -5615,8 +5392,22 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo dal sît" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Salve lis impuestazions dal sît" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6353,38 +6144,6 @@ msgstr "" msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Grafiche dal profîl" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Impuestazions grafichis" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Cjale grafichis dai profîi" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "File dal sfont" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6815,6 +6574,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "" @@ -7083,11 +6854,6 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7116,17 +6882,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sît" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Grafiche" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "" @@ -7961,42 +7716,6 @@ msgstr "Elimine" msgid "Delete this user" msgstr "Elimine chest utent" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Cambie la grafiche" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Cambie i colôrs" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Dopre valôrs predeterminâts" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Cjame sù un file" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Ativade" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Disativade" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8203,13 +7922,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Zonte o cambie il logo di %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Zonte o cambie la grafiche di %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Azions dal grup" @@ -8317,9 +8029,8 @@ msgid "Invite more colleagues" msgstr "Invide gnûfs coleghis" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Invide gnûfs coleghis" +msgstr "Invide i tiei coleghis" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8344,9 +8055,8 @@ msgid "Send" msgstr "Mande" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invîts" +msgstr "Mande invîts." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8404,9 +8114,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s al seguìs cumò %2$s." +msgstr "%1$s cumò ti seguìs su %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -8568,6 +8278,9 @@ msgid "" "\n" "\t%s" msgstr "" +"La tabaiade complete e pues jessi lete culì:\n" +"\n" +"%s" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. @@ -8635,6 +8348,8 @@ msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +"No tu âs nissun messaç privât. Tu puedis mandâ messaçs privâts par scomençâ " +"tabaiadis cun altris utents. La int e pues mandâti messaçs dome pai tiei vôi." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. msgctxt "MENU" @@ -9448,10 +9163,6 @@ msgstr "Pueste eletroniche" msgid "Change email handling" msgstr "Cambie la gjestion de pueste eletroniche" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Disegne il to profîl" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -9861,3 +9572,162 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "La etichete no je valide: \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "No si à podût salvâ il profîl." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "No si à podût salvâ il profîl." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "La direzion di pueste eletroniche no je valide." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "No si à podût salvâ il profîl." + +#~ msgid "Design" +#~ msgstr "Grafiche" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Impuestazions de grafiche par chest sît StatusNet" + +#~ msgid "Change logo" +#~ msgstr "Cambie il logo" + +#~ msgid "Change theme" +#~ msgstr "Cambie il teme" + +#~ msgid "Site theme" +#~ msgstr "Teme dal sît" + +#~ msgid "Theme for the site." +#~ msgstr "Teme pal sît." + +#~ msgid "Custom theme" +#~ msgstr "Teme personalizât" + +#~ msgid "Change background image" +#~ msgstr "Cambie la figure di sfont" + +#~ msgid "Background" +#~ msgstr "Sfont" + +#~ msgid "On" +#~ msgstr "Ativade" + +#~ msgid "Off" +#~ msgstr "Disativade" + +#~ msgid "Turn background image on or off." +#~ msgstr "Ative o disative la figure di sfont." + +#~ msgid "Tile background image" +#~ msgstr "Figure di sfont in stîl mosaic" + +#~ msgid "Change colors" +#~ msgstr "Cambie i colôrs" + +#~ msgid "Content" +#~ msgstr "Contignût" + +#~ msgid "Sidebar" +#~ msgstr "Bare in bande" + +#~ msgid "Text" +#~ msgstr "Test" + +#~ msgid "Links" +#~ msgstr "Leams" + +#~ msgid "Advanced" +#~ msgstr "Avançadis" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalizât" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Dopre i parametris predeterminâts" + +#~ msgid "Restore default designs." +#~ msgstr "Torne ae grafiche predeterminade." + +#~ msgid "Reset back to default." +#~ msgstr "Torne ai valôrs iniziâi." + +#~ msgid "Save design." +#~ msgstr "Salve la grafiche" + +#~ msgid "Group design" +#~ msgstr "Grafiche dal grup" + +#~ msgid "Design preferences saved." +#~ msgstr "Preferencis pe grafiche salvadis." + +#~ msgid "Backgrounds" +#~ msgstr "Sfonts" + +#~ msgid "Profile design" +#~ msgstr "Grafiche dal profîl" + +#~ msgid "Design settings" +#~ msgstr "Impuestazions grafichis" + +#~ msgid "View profile designs" +#~ msgstr "Cjale grafichis dai profîi" + +#~ msgid "Background file" +#~ msgstr "File dal sfont" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Grafiche" + +#~ msgid "Change design" +#~ msgstr "Cambie la grafiche" + +#~ msgid "Change colours" +#~ msgstr "Cambie i colôrs" + +#~ msgid "Use defaults" +#~ msgstr "Dopre valôrs predeterminâts" + +#~ msgid "Upload file" +#~ msgstr "Cjame sù un file" + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Ativade" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Disativade" + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Zonte o cambie la grafiche di %s" + +#~ msgid "Design your profile" +#~ msgstr "Disegne il to profîl" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 7d78036d0e..693f0f774e 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:21+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -102,7 +102,6 @@ msgid "Save access settings" msgstr "Gardar a configuración de acceso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -118,7 +117,6 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -154,9 +152,8 @@ msgstr "Non existe ese perfil." #. TRANS: Client error displayed trying to reference a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to reference a non-existing list. -#, fuzzy msgid "No such list." -msgstr "Esa etiqueta non existe." +msgstr "Non existe tal lista." #. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. #, fuzzy @@ -178,10 +175,9 @@ msgid "" msgstr "" #. TRANS: Title after adding a user to a list. -#, fuzzy msgctxt "TITLE" msgid "Listed" -msgstr "Licenza" +msgstr "Listado" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) @@ -193,7 +189,6 @@ msgstr "Esa páxina non existe." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -362,7 +357,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Non se puido actualizar o usuario." @@ -377,7 +371,6 @@ msgstr "Non se puido gardar o perfil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -392,24 +385,6 @@ msgstr[1] "" "O servidor non puido manexar tantos datos POST (%s bytes) por mor da súa " "configuración actual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Non se puido gardar a súa configuración de deseño." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Non se puido actualizar o seu deseño." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -502,6 +477,8 @@ msgstr "" "Non pode enviar mensaxes directas a usuarios que non sexan amigos seus." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Non se envíe unha mensaxe, limítese a pensar nela." @@ -730,7 +707,6 @@ msgstr "grupos en %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Ten que ser administrador para editar o grupo." @@ -849,7 +825,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -858,7 +833,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -1221,7 +1195,6 @@ msgstr "Ten que identificarse para deixar un grupo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1307,6 +1280,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Unha lista dos usuarios pertencentes a este grupo." @@ -1357,9 +1331,8 @@ msgid "Can only fave notices." msgstr "Buscar nos contidos das notas" #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." -msgstr "Descoñecida" +msgstr "Nota descoñecida." #. TRANS: Client exception thrown when trying favorite an already favorited notice. #, fuzzy @@ -1389,23 +1362,20 @@ msgid "Can only handle join activities." msgstr "Buscar nos contidos das notas" #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. -#, fuzzy msgid "Unknown group." -msgstr "Descoñecida" +msgstr "Grupo descoñecido." #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. -#, fuzzy msgid "Already a member." -msgstr "Todos os membros" +msgstr "Xa é membro." #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. msgid "Blocked by admin." -msgstr "" +msgstr "Bloqueado polo administrador." #. TRANS: Client exception thrown when referencing a non-existing favorite. -#, fuzzy msgid "No such favorite." -msgstr "Non existe tal ficheiro." +msgstr "Non existe tal favorito." #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. #, fuzzy @@ -1413,9 +1383,8 @@ msgid "Cannot delete someone else's favorite." msgstr "Non se puido eliminar o favorito." #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group -#, fuzzy msgid "Not a member." -msgstr "Todos os membros" +msgstr "Non é membro." #. TRANS: Client exception thrown when deleting someone else's membership. #, fuzzy @@ -1472,7 +1441,6 @@ msgstr "Non existe tal dato adxunto." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1590,10 +1558,9 @@ msgid "" msgstr "" #. TRANS: Submit button to backup an account on the backup account page. -#, fuzzy msgctxt "BUTTON" msgid "Backup" -msgstr "Fondo" +msgstr "Copia de seguridade" #. TRANS: Title for submit button to backup an account on the backup account page. msgid "Backup your account." @@ -1994,158 +1961,6 @@ msgstr "Non borrar esta nota" msgid "Delete this user." msgstr "Borrar o usuario" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Deseño" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Configuración de deseño para este sitio StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL do logo incorrecto." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "URL do logo incorrecto." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "O tema visual non está dispoñible: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Cambiar o logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo do sitio" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "Logo do sitio" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Cambiar o tema visual" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema visual do sitio" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema visual para o sitio." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Tema visual personalizado" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Cambiar a imaxe de fondo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fondo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Pode cargar unha imaxe de fondo para o sitio. O tamaño máximo para o " -"ficheiro é de %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Activado" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Desactivado" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Activar ou desactivar a imaxe de fondo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Imaxe de fondo en mosaico" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "Cambiar as cores" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contido" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra lateral" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Ligazóns" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avanzado" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalizado" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Utilizar os valores por defecto" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Restaurar o deseño por defecto" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Volver ao deseño por defecto" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Gardar o deseño" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Esta nota non é unha das favoritas!" @@ -2762,32 +2577,6 @@ msgstr "Houbo un erro na base de datos ao excluír do grupo ao usuario." msgid "No ID." msgstr "Sen ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Ten que estar identificado para editar un grupo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Deseño do grupo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personaliza o aspecto do grupo cunha imaxe de fondo e unha paleta de cores " -"da súa escolla." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Non se puido gardar a súa configuración de deseño." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Gardáronse as preferencias de deseño." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -2865,7 +2654,6 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións de membros de %1$s en %2$s!" #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Grupos" @@ -3482,12 +3270,6 @@ msgstr "Non hai contido ningún!" msgid "No recipient specified." msgstr "Non se especificou ningún destinatario." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non se envíe unha mensaxe, limítese a pensar nela." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Enviouse a mensaxe" @@ -3773,7 +3555,7 @@ msgid "Confirm" msgstr "Confirmar" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3961,32 +3743,6 @@ msgstr "Directorio de avatares" msgid "Directory where avatars are located." msgstr "Ruta do directorio das traducións" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fondos" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Tema visual para o sitio." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "Ruta do directorio das traducións" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Ficheiros anexos" @@ -4812,7 +4568,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "Seis ou máis caracteres, e non o esqueza!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Restablecer" @@ -4821,20 +4576,6 @@ msgstr "Restablecer" msgid "Enter a nickname or email address." msgstr "Introduza un alcume ou enderezo de correo electrónico." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Non hai ningún usuario con ese enderezo de correo electrónico ou alcume." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "" -"Non se rexistrou ningún enderezo de correo electrónico para ese usuario." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Houbo un erro ao gardar a confirmación do enderezo." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5823,6 +5564,15 @@ msgstr "O nome do sitio non pode quedar baleiro." msgid "You must have a valid contact email address." msgstr "Ten que ter un enderezo de correo electrónico de contacto correcto." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL do logo incorrecto." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "URL do logo incorrecto." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5902,7 +5652,9 @@ msgid "Default language" msgstr "Lingua por defecto" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Lingua do sitio para cando a detección automática a partir do navegador non " "sexa posible" @@ -5931,8 +5683,23 @@ msgstr "" "Tempo (en segundos) que teñen que agardar os usuarios para publicar unha " "nota de novo." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotipo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo do sitio" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "Logo do sitio" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Gardar a configuración do sitio" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6733,42 +6500,6 @@ msgstr "Non se puido ler o URL do avatar, \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "O tipo de imaxe do URL do avatar, \"%s\", é incorrecto." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Deseño do perfil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalice a aparencia do seu perfil cunha imaxe de fondo e unha paleta de " -"cores escollida por vostede." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Bo proveito!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Gardar a configuración do sitio" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Deseños visuais do perfil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Amosar ou agochar os deseños do perfil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Fondo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7232,6 +6963,20 @@ msgstr "Non se estableceu ningún usuario único para o modo de usuario único." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Non hai ningún usuario con ese enderezo de correo electrónico ou alcume." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" +"Non se rexistrou ningún enderezo de correo electrónico para ese usuario." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Houbo un erro ao gardar a confirmación do enderezo." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Non se puido crear o grupo." @@ -7511,11 +7256,6 @@ msgstr "showForm() non está integrado." msgid "saveSettings() not implemented." msgstr "saveSettings() non está integrado." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Non se puido borrar a configuración do deseño." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7547,17 +7287,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sitio" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuración do deseño" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Deseño" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuración do usuario" @@ -8439,47 +8168,6 @@ msgstr "Borrar" msgid "Delete this user" msgstr "Borrar o usuario" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Gardar o deseño" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Cambiar as cores" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Utilizar os valores por defecto" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Cargar un ficheiro" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis de " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "Activado" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Desactivado" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Restableceuse o deseño por defecto." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8700,13 +8388,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Engadir ou modificar o logotipo de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Engadir ou modificar o deseño de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Accións do grupo" @@ -9093,7 +8774,7 @@ msgstr "" "Non responda a esta mensaxe, non lle chegará ao remitente.\n" "\n" "Atentamente,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9244,26 +8925,22 @@ msgstr "" "outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. -#, fuzzy msgctxt "MENU" msgid "Inbox" msgstr "Caixa de entrada" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "As mensaxes recibidas" +msgstr "As mensaxes recibidas." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Caixa de saída" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "As mensaxes enviadas" +msgstr "As mensaxes enviadas." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -9283,9 +8960,9 @@ msgstr "Non se permite recibir correo electrónico." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. #. TRANS: %s is the unsupported type. -#, fuzzy, php-format +#, php-format msgid "Unsupported message type: %s." -msgstr "Non se soporta o tipo de mensaxe: %s" +msgstr "Non se soporta o tipo de mensaxe: %s." #. TRANS: Form legend for form to make a user a group admin. msgid "Make user an admin of the group" @@ -9344,9 +9021,8 @@ msgstr "Enviar unha nota directa" #. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. #. TRANS: This is the default entry in the drop-down box, doubling as instructions #. TRANS: and a brake against accidental submissions with the first user in the list. -#, fuzzy msgid "Select recipient:" -msgstr "Seleccionar unha licenza" +msgstr "Seleccionar o destinatario:" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy @@ -9363,9 +9039,8 @@ msgid "Send" msgstr "Enviar" #. TRANS: Header in message list. -#, fuzzy msgid "Messages" -msgstr "Mensaxe" +msgstr "Mensaxes" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. @@ -9373,7 +9048,6 @@ msgid "from" msgstr "de" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "web" @@ -9381,23 +9055,22 @@ msgstr "web" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "xmpp" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "Correo electrónico" +msgstr "correo" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "omb" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" msgid "api" -msgstr "" +msgstr "api" #. TRANS: Client exception thrown when no author for an activity was found. msgid "Cannot get author for activity." @@ -9606,32 +9279,28 @@ msgid "Add or remove people" msgstr "" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Buscar" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Ligazóns" +msgstr "Lista" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s - %2$s" +msgstr "%1$s lista por %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Licenza" +msgstr "Listado" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Subscritores" @@ -9643,7 +9312,6 @@ msgid "Subscribers to %1$s list by %2$s." msgstr "Subscribiuse a %s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Modificar" @@ -9655,9 +9323,8 @@ msgid "Edit %s list by you." msgstr "Editar o grupo %s" #. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy msgid "Tagged" -msgstr "Etiqueta" +msgstr "Etiquetado" #. TRANS: Title for link to edit list settings. #, fuzzy @@ -9669,7 +9336,6 @@ msgid "Edit" msgstr "Modificar" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Privado" @@ -9763,39 +9429,33 @@ msgstr "%s subscricións" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Perfil" #. TRANS: Menu item title in personal group navigation menu. -#, fuzzy msgid "Your profile" -msgstr "Perfil do grupo" +msgstr "O seu perfil" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Respostas" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" -msgstr "Favoritas" +msgstr "Favoritos" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Usuario" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Mensaxe" +msgstr "Mensaxes" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -9808,12 +9468,12 @@ msgstr "Descoñecida" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Desactivar" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Activar" msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" @@ -10000,7 +9660,6 @@ msgid "" msgstr "" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Xente" @@ -10010,7 +9669,6 @@ msgid "Find people on this site" msgstr "Atopar xente neste sitio" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Notas" @@ -10029,50 +9687,42 @@ msgid "Help" msgstr "Axuda" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy msgctxt "MENU" msgid "About" msgstr "Acerca de" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" msgstr "Preguntas máis frecuentes" #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" -msgstr "Condicións do servicio" +msgstr "Condicións do servizo" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Protección de datos" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Código fonte" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Versión" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy msgctxt "MENU" msgid "Contact" msgstr "Contacto" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy msgctxt "MENU" msgid "Badge" msgstr "Insignia" @@ -10086,17 +9736,15 @@ msgid "More..." msgstr "Máis..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "Configuración dos SMS" +msgstr "Configuración" #. TRANS: Menu item title in settings navigation panel. msgid "Change your profile settings" msgstr "Cambie a configuración do seu perfil" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Avatar" @@ -10106,7 +9754,6 @@ msgid "Upload an avatar" msgstr "Cargue un avatar" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Contrasinal" @@ -10116,7 +9763,6 @@ msgid "Change your password" msgstr "Cambie o seu contrasinal" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "Correo electrónico" @@ -10125,22 +9771,16 @@ msgstr "Correo electrónico" msgid "Change email handling" msgstr "Cambie a xestión do correo electrónico" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Deseñe o seu perfil" - #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" #. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" -msgstr "" +msgstr "Redutores de URL" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" msgstr "MI" @@ -10150,7 +9790,6 @@ msgid "Updates by instant messenger (IM)" msgstr "Actualizacións por mensaxería instantánea (MI)" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "SMS" msgstr "SMS" @@ -10160,7 +9799,6 @@ msgid "Updates by SMS" msgstr "Actualizacións por SMS" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "Conexións" @@ -10170,7 +9808,6 @@ msgid "Authorized connected applications" msgstr "Aplicacións conectadas autorizadas" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "Silenciar" @@ -10180,40 +9817,39 @@ msgid "Silence this user" msgstr "Silenciar a este usuario" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "Subscricións" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to." -msgstr "Persoas ás que está subscrito %s" +msgstr "Persoas ás que está subscrito %s." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." -msgstr "Persoas subscritas a %s" +msgstr "Persoas subscritas a %s." #. TRANS: Menu item in local navigation menu. #. TRANS: %d is the number of pending subscription requests. #, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "" +msgstr "Pendentes (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format msgid "Approve pending subscription requests." -msgstr "" +msgstr "Aprobar as peticións de subscrición pendentes." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of." -msgstr "Grupos aos que pertence %s" +msgstr "Grupos aos que pertence %s." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. @@ -10332,14 +9968,14 @@ msgstr[1] "Mostrar máis" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "Vostede" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "%1$s and %2$s" -msgstr "%1$s - %2$s" +msgstr "%1$s e %2$s" #. TRANS: List message for notice favoured by logged in user. #, fuzzy @@ -10386,16 +10022,15 @@ msgstr "Buscar no sitio" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "Todo" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Fullname" msgstr "Nome completo" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" -msgstr "" +msgstr "URI (usuarios remotos)" #. TRANS: Dropdown field label. #, fuzzy @@ -10427,24 +10062,22 @@ msgstr "Os que máis publican" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" msgid "Everyone" -msgstr "" +msgstr "Todos" #. TRANS: Option in drop-down of potential addressees. #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "" +msgstr "Os meus compañeiros en %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "A" +msgstr "A:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -msgstr "Privado" +msgstr "Privada?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. #, fuzzy, php-format @@ -10568,3 +10201,246 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Non se puido ler o URL do avatar, \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Houbo un erro ao actualizar o perfil remoto." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Non se puido revogar o acceso da aplicación: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Non se puido gardar o perfil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Non se deu atopado ningún usuario co alcume %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "O enderezo de correo electrónico é incorrecto." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Non se puido gardar o perfil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Non se puido gardar a súa configuración de deseño." + +#~ msgid "Could not update your design." +#~ msgstr "Non se puido actualizar o seu deseño." + +#~ msgid "Design" +#~ msgstr "Deseño" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Configuración de deseño para este sitio StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "O tema visual non está dispoñible: %s." + +#~ msgid "Change logo" +#~ msgstr "Cambiar o logo" + +#~ msgid "Change theme" +#~ msgstr "Cambiar o tema visual" + +#~ msgid "Site theme" +#~ msgstr "Tema visual do sitio" + +#~ msgid "Theme for the site." +#~ msgstr "Tema visual para o sitio." + +#~ msgid "Custom theme" +#~ msgstr "Tema visual personalizado" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet" + +#~ msgid "Change background image" +#~ msgstr "Cambiar a imaxe de fondo" + +#~ msgid "Background" +#~ msgstr "Fondo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Pode cargar unha imaxe de fondo para o sitio. O tamaño máximo para o " +#~ "ficheiro é de %1$s." + +#~ msgid "On" +#~ msgstr "Activado" + +#~ msgid "Off" +#~ msgstr "Desactivado" + +#~ msgid "Turn background image on or off." +#~ msgstr "Activar ou desactivar a imaxe de fondo." + +#~ msgid "Tile background image" +#~ msgstr "Imaxe de fondo en mosaico" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "Cambiar as cores" + +#~ msgid "Content" +#~ msgstr "Contido" + +#~ msgid "Sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Links" +#~ msgstr "Ligazóns" + +#~ msgid "Advanced" +#~ msgstr "Avanzado" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalizado" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Utilizar os valores por defecto" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Restaurar o deseño por defecto" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Volver ao deseño por defecto" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Gardar o deseño" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Ten que estar identificado para editar un grupo." + +#~ msgid "Group design" +#~ msgstr "Deseño do grupo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personaliza o aspecto do grupo cunha imaxe de fondo e unha paleta de " +#~ "cores da súa escolla." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Non se puido gardar a súa configuración de deseño." + +#~ msgid "Design preferences saved." +#~ msgstr "Gardáronse as preferencias de deseño." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Non se envíe unha mensaxe, limítese a pensar nela." + +#~ msgid "Backgrounds" +#~ msgstr "Fondos" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Tema visual para o sitio." + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Ruta do directorio das traducións" + +#~ msgid "Profile design" +#~ msgstr "Deseño do perfil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalice a aparencia do seu perfil cunha imaxe de fondo e unha paleta " +#~ "de cores escollida por vostede." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Bo proveito!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Gardar a configuración do sitio" + +#~ msgid "View profile designs" +#~ msgstr "Deseños visuais do perfil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Amosar ou agochar os deseños do perfil." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Fondo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Non se puido borrar a configuración do deseño." + +#~ msgid "Design configuration" +#~ msgstr "Configuración do deseño" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Deseño" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Gardar o deseño" + +#~ msgid "Change colours" +#~ msgstr "Cambiar as cores" + +#~ msgid "Use defaults" +#~ msgstr "Utilizar os valores por defecto" + +#~ msgid "Upload file" +#~ msgstr "Cargar un ficheiro" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis " +#~ "de 2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Activado" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Desactivado" + +#~ msgid "Design defaults restored." +#~ msgstr "Restableceuse o deseño por defecto." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Engadir ou modificar o deseño de %s" + +#~ msgid "Design your profile" +#~ msgstr "Deseñe o seu perfil" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 37977510c6..2a77c7345a 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Hebrew (עברית) -# Expored from translatewiki.net +# Exported from translatewiki.net # +# Author: Amire80 # Author: YaronSh # -- # This file is distributed under the same license as the StatusNet package. @@ -9,101 +10,181 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-15 00:20+0000\n" -"PO-Revision-Date: 2011-01-15 00:22:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-15 00:06:50+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" + +#. TRANS: Database error message. +#, php-format +msgid "" +"The database for %1$s is not responding correctly, so the site will not work " +"properly. The site admins probably know about the problem, but you can " +"contact them at %2$s to make sure. Otherwise, wait a few minutes and try " +"again." +msgstr "" +"מסד ×”× ×ª×•× ×™× ×©×œ %1$s ×ינו מגיב ב×ופן תקין, ××– ×”×תר ×ינו יכול לעבוד כר×וי. " +"מנהלי ×”×תר כנר××” ×™×•×“×¢×™× ×¢×œ הבעיה ×”×–×ת, ×בל ×פשר ליצור ×Ö´×ª× ×§×©×¨ דרך %2$s כדי " +"לווד×. ×פשר להמתין מספר דקות ולנסות שוב." + +#. TRANS: Error message. +msgid "" +"An important error occured, probably related to email setup. Check logfiles " +"for more info." +msgstr "" +"×ירעה שגי××” חשובה, שכנר××” קשורה להגדרות דו×ר ×לקטרוני. חפשו מידע נוסף בקובצי " +"יומן." + +#. TRANS: Error message. +msgid "An error occurred." +msgstr "×ירעה שגי××”." + +#. TRANS: Error message displayed when there is no StatusNet configuration file. +#, php-format +msgid "" +"No configuration file found. Try running the installation program first." +msgstr "×œ× × ×ž×¦× ×§×•×‘×¥ ההגדרות. נסה להפעיל ×ת תכנת ההתקנה קוד×." + +#. TRANS: Error message displayed when trying to access a non-existing page. +msgid "Unknown page" +msgstr "דף ×œ× ×™×“×•×¢" + +#. TRANS: Error message displayed when trying to perform an undefined action. +#. TRANS: Title for password recovery page when an unknown action has been specified. +msgid "Unknown action" +msgstr "פעולה ×œ× ×™×“×•×¢×”" #. TRANS: Page title for Access admin panel that allows configuring site access. -#. TRANS: Menu item for site administration -#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363 msgid "Access" msgstr "גישה" #. TRANS: Page notice. -#: actions/accessadminpanel.php:64 msgid "Site access settings" -msgstr "הגדרות הפרופיל" +msgstr "הגדרות גישה ל×תר" #. TRANS: Form legend for registration form. -#: actions/accessadminpanel.php:151 msgid "Registration" msgstr "הרשמה" #. TRANS: Checkbox instructions for admin setting "Private". -#: actions/accessadminpanel.php:155 msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "" +msgstr "ל×סור על ×ž×©×ª×ž×©×™× ××œ×ž×•× ×™×™× (×©×œ× × ×›× ×¡×• לחשבון) לצפות ב×תר?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. -#: actions/accessadminpanel.php:157 -#, fuzzy +#. TRANS: Checkbox label to show private tags. +#. TRANS: Checkbox field label on group edit form to mark a group private. msgctxt "LABEL" msgid "Private" -msgstr "פרטיות" +msgstr "פרטי" #. TRANS: Checkbox instructions for admin setting "Invite only". -#: actions/accessadminpanel.php:164 msgid "Make registration invitation only." -msgstr "" +msgstr "×¨×™×©×•× ×¨×§ לפי הזמנה." #. TRANS: Checkbox label for configuring site as invite only. -#: actions/accessadminpanel.php:166 msgid "Invite only" -msgstr "" +msgstr "רק לפי הזמנה" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). -#: actions/accessadminpanel.php:173 msgid "Disable new registrations." -msgstr "" +msgstr "×œ× ×œ×פשר הרשמות חדשות." #. TRANS: Checkbox label for disabling new user registrations. -#: actions/accessadminpanel.php:175 -#, fuzzy msgid "Closed" -msgstr "×ין משתמש ×›×–×”." +msgstr "סגורה" #. TRANS: Title for button to save access settings in site admin panel. -#: actions/accessadminpanel.php:191 -#, fuzzy msgid "Save access settings" -msgstr "הגדרות" +msgstr "שמירת הגדרות גישה" #. TRANS: Tooltip for button to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. -#. TRANS: Button text for saving "Other settings" in profile. +#. TRANS: Button text in the license admin panel. #. TRANS: Button text to store form data in the Paths admin panel. #. TRANS: Button to save input in profile settings. +#. TRANS: Submit button text on the sessions administration panel. +#. TRANS: Button text for saving site settings. #. TRANS: Button text for saving site notice in admin panel. #. TRANS: Button label to save SMS preferences. +#. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. +#. TRANS: Button text to save lists. +#. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. -#: actions/accessadminpanel.php:193 actions/emailsettings.php:254 -#: actions/imsettings.php:187 actions/othersettings.php:134 -#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201 -#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209 -#: actions/subscriptions.php:262 actions/useradminpanel.php:298 -#: lib/applicationeditform.php:355 lib/designsettings.php:270 -#: lib/groupeditform.php:207 -#, fuzzy +#. TRANS: Text for save button on group edit form. +#. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" msgid "Save" -msgstr "שמור" +msgstr "שמירה" + +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Form validation error. +#. TRANS: Form validation error message. +#. TRANS: Client error displayed when the session token does not match or is not given. +#. TRANS: Client error displayed when the session token is not okay. +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "הייתה בעיה ×¢× ×סימון השיח שלך. × × ×œ× ×¡×•×ª שוב." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "×œ× ×ž×—×•×‘×¨." + +#. TRANS: Client error displayed trying to perform an action related to a non-existing profile. +#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. +#. TRANS: Client exception. +#. TRANS: Client error displayed when referring to a non-existing profile. +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +#. TRANS: Client error displayed trying to perform an action related to a non-existing profile. +msgid "No such profile." +msgstr "×ין דף משתמש ×›×–×”." + +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "×ין רשימה ×›×–×ת." + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "××™Ö¾×פשר ×œ×¨×©×•× ×¤×¨×•×¤×™×œ מרוחק של OMB 0.1 ב×מצעות הפעולה ×”×–×ת." + +#. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "×ירעה שגי××” ×œ× ×¦×¤×•×™×” בזמן ×¨×™×©×•× %s." + +#. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly. Please try retrying later." +msgstr "" +"הייתה בעיה ×‘×¨×™×©×•× %s. השרת המרוחק כנר××” ×œ× ×ž×’×™×‘ נכון. × × ×œ× ×¡×•×ª מ×וחר יותר." + +#. TRANS: Title after adding a user to a list. +msgctxt "TITLE" +msgid "Listed" +msgstr "נרש×" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) -#: actions/all.php:68 actions/public.php:98 actions/replies.php:93 -#: actions/showfavorites.php:138 actions/tag.php:52 +#. TRANS: Server error when page not found (404). msgid "No such page." msgstr "×ין משתמש ×›×–×”." @@ -111,8 +192,9 @@ msgstr "×ין משתמש ×›×–×”." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. +#. TRANS: Client error displayed when making an Atom API request for an unknown user. +#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. #. TRANS: Client error when user not found for an API action to remove a block for a user. #. TRANS: Client error given when a user was not found (404). #. TRANS: Client error when user not found for an API direct message action. @@ -120,6 +202,10 @@ msgstr "×ין משתמש ×›×–×”." #. TRANS: Client error displayed when checking group membership for a non-existing user. #. TRANS: Client error displayed when trying to have a non-existing user join a group. #. TRANS: Client error displayed when trying to have a non-existing user leave a group. +#. TRANS: Client error displayed when user not found for an action. +#. TRANS: Client error displayed when not providing a user or an invalid user. +#. TRANS: Client error displayed when referring to a non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. #. TRANS: Client error displayed when updating a status for a non-existing user. #. TRANS: Client error displayed when requesting a list of followers for a non-existing user. #. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user. @@ -128,222 +214,161 @@ msgstr "×ין משתמש ×›×–×”." #. TRANS: Client error displayed when requesting most recent mentions for a non-existing user. #. TRANS: Client error displayed requesting most recent notices for a non-existing user. #. TRANS: Client error displayed trying to get an avatar for a non-existing user. +#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. +#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. +#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. +#. TRANS: Client error displayed trying to make a micro summary without providing a valid user. +#. TRANS: Client error displayed trying to send a direct message to a non-existing user. +#. TRANS: Client error displayed trying to use "one time password login" without using an existing user. +#. TRANS: Client error displayed when referring to non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. +#. TRANS: Form validation error on page for remote subscribe when no user was provided. +#. TRANS: Form validation error on page for remote subscribe when no user profile was found. +#. TRANS: Client error displayed when trying to reply to a non-exsting user. +#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action. +#. TRANS: Client error. +#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user. +#. TRANS: Client error displayed trying to perform an action related to a non-existing user. +#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID. +#. TRANS: Client error displayed requesting groups for a non-existing user. +#. TRANS: Client error displayed when user not found for an action. +#. TRANS: Client error displayed providing a non-existing nickname. #. TRANS: Error text shown when trying to send a direct message to a user that does not exist. -#: actions/all.php:80 actions/allrss.php:69 -#: actions/apiaccountupdatedeliverydevice.php:110 -#: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:118 -#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60 -#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94 -#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72 -#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89 -#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98 -#: actions/apigrouplist.php:70 actions/apistatusesupdate.php:230 -#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70 -#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78 -#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79 -#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74 -#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67 -#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76 -#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154 -#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116 -#: actions/showfavorites.php:105 actions/userbyid.php:74 -#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 -#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59 -#: lib/mailbox.php:82 lib/profileaction.php:77 +#. TRANS: Client error displayed when trying to perform a gallery action with an unknown user. +#. TRANS: Client error displayed when trying to access a mailbox without providing a user. +#. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." msgstr "×ין משתמש ×›×–×”." -#. TRANS: Page title. %1$s is user nickname, %2$d is page number -#: actions/all.php:91 -#, fuzzy, php-format -msgid "%1$s and friends, page %2$d" -msgstr "%s וחברי×" +#. TRANS: Title of a user's own start page. +msgid "Home timeline" +msgstr "ציר הזמן בדף הבית" -#. TRANS: Page title. %s is user nickname -#. TRANS: H1 text for page. %s is a user nickname. -#. TRANS: Message is used as link title. %s is a user nickname. -#. TRANS: Timeline title for user and friends. %s is a user nickname. -#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117 -#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113 -#: lib/personalgroupnav.php:103 +#. TRANS: Title of another user's start page. +#. TRANS: %s is the other user's name. #, php-format -msgid "%s and friends" -msgstr "%s וחברי×" +msgid "%s's home timeline" +msgstr "ציר הזמן בדף הבית של %s" #. TRANS: %s is user nickname. -#: actions/all.php:108 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנות עבור ×”×—×‘×¨×™× ×©×œ %s†(RSS 1.0)" #. TRANS: %s is user nickname. -#: actions/all.php:117 -#, fuzzy, php-format +#. TRANS: Feed title. +#. TRANS: %s is tagger's nickname. +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנות עבור ×”×—×‘×¨×™× ×©×œ %s†(RSS 2.0)" #. TRANS: %s is user nickname. -#: actions/all.php:126 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנות עבור ×”×—×‘×¨×™× ×©×œ %s†(Atom)" #. TRANS: Empty list message. %s is a user nickname. -#: actions/all.php:139 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" +msgstr "זהו ציר הזמן עבור %s וידידיו, ×בל ×יש ×œ× ×›×ª×‘ פה ×©×•× ×“×‘×¨ עדיין" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:146 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" +"נסה ×œ×”×™×¨×©× ×œ×™×•×ª×¨ ×נשי×, [להצטרף לקבוצה](%%action.groups%%) ×ו ×œ×¤×¨×¡× ×ž×©×”×• " +"שימושי בעצמך." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@". #. TRANS: This message contains Markdown links. Keep "](" together. -#: actions/all.php:150 #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" +"×פשר לנסות [לדחוף ×ת %1$s](../%2$s) מדף המשתמש ×©×œ×”× ×ו [לשלוח ×œ×”× ×ž×©×”×•](%%%%" +"action.newnotice%%%%?status_textarea=%3$s)." #. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. +#. TRANS: Empty list message for page with replies for a user for not logged in users. +#. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). #. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname. #. TRANS: This message contains a Markdown link. Keep "](" together. -#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" +"למה ×œ× [ליצור חשבון](%%%%action.register%%%%) ו××– להטריד ×ת %s ×ו לשלוח ×œ×”× " +"עדכון." -#. TRANS: H1 text for page when viewing a list for self. -#: actions/all.php:188 -#, fuzzy -msgid "You and friends" +#. TRANS: Message is used as link title. %s is a user nickname. +#. TRANS: Title of API timeline for a user and friends. +#. TRANS: %s is a username. +#. TRANS: Timeline title for user and friends. %s is a user nickname. +#. TRANS: Menu item title in administrator navigation panel. +#. TRANS: %s is a username. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#. TRANS: Menu item title in settings navigation panel. +#. TRANS: %s is a username. +#, php-format +msgid "%s and friends" msgstr "%s וחברי×" #. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. #. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. -#: actions/allrss.php:122 actions/apitimelinefriends.php:213 -#: actions/apitimelinehome.php:119 #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "" +msgstr "עדכון מ×ת %1$s וידידיו ב×תר %2$s!" -#. TRANS: Client error displayed handling a non-existing API method. +#. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours. -#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed when trying to handle an unknown API method. -#. TRANS: Client error displayed trying to execute an unknown API method showing friendship. -#. TRANS: Client error given when an API method was not found (404). -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method joining a group. -#. TRANS: Client error displayed trying to execute an unknown API method leaving a group. -#. TRANS: Client error displayed trying to execute an unknown API method checking group membership. -#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups. -#. TRANS: Client error displayed trying to execute an unknown API method showing group membership. -#. TRANS: Client error displayed trying to execute an unknown API method showing a group. -#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity. -#. TRANS: Client error displayed trying to execute an unknown API method deleting a status. -#. TRANS: Client error displayed when trying to handle an unknown API method. -#: actions/apiaccountratelimitstatus.php:69 -#: actions/apiaccountupdatedeliverydevice.php:92 -#: actions/apiaccountupdateprofile.php:94 -#: actions/apiaccountupdateprofilebackgroundimage.php:92 -#: actions/apiaccountupdateprofilecolors.php:115 -#: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157 -#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98 -#: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99 -#: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138 -#: actions/apigroupismember.php:115 actions/apigroupjoin.php:160 -#: actions/apigroupleave.php:145 actions/apigrouplist.php:134 -#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105 -#: actions/apigroupshow.php:114 actions/apihelptest.php:84 -#: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110 -#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138 -#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109 -#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268 -#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173 -#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239 -#: actions/apitimelineretweetedtome.php:118 -#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159 -#: actions/apitimelineuser.php:206 actions/apiusershow.php:100 -#, fuzzy +#. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." -msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." +msgstr "שיטת API ×œ× × ×ž×¦××”." #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. -#: actions/apiaccountupdatedeliverydevice.php:83 -#: actions/apiaccountupdateprofile.php:85 -#: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:106 -#: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87 -#: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107 -#: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88 -#: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89 -#: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89 -#: actions/apigroupleave.php:89 actions/apimediaupload.php:66 -#: actions/apistatusesretweet.php:63 actions/apistatusesupdate.php:194 +#. TRANS: Client error message. POST is a HTTP command. It should not be translated. +#. TRANS: Client error. POST is a HTTP command. It should not be translated. msgid "This method requires a POST." -msgstr "" +msgstr "השיטה ×”×–×ת דורשת POST." #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#: actions/apiaccountupdatedeliverydevice.php:103 msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." -msgstr "" +msgstr "יש להגדיר פרמטר ×‘×©× 'device' ×¢× ×חד ×ž×”×¢×¨×›×™× ×”×‘×¢×™×: smsâ€, imâ€, none." #. TRANS: Server error displayed when a user's delivery device cannot be updated. -#: actions/apiaccountupdatedeliverydevice.php:130 -#, fuzzy +#. TRANS: Server error displayed when confirming an e-mail address or IM address fails. +#. TRANS: Server error thrown on database error updating e-mail preferences. +#. TRANS: Server error thrown on database error removing a registered e-mail address. +#. TRANS: Server error thrown when user profile settings could not be updated. +#. TRANS: Server error thrown on database error updating SMS preferences. +#. TRANS: Server error thrown on database error removing a registered SMS phone number. +#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. msgid "Could not update user." -msgstr "עידכון המשתמש נכשל." +msgstr "עדכון המשתמש נכשל." -#. TRANS: Client error displayed if a user profile could not be found. -#. TRANS: Client error displayed when a user has no profile. -#. TRANS: Client error displayed a user has no profile updating profile colours. -#. TRANS: Client error displayed if a user profile could not be found updating a profile image. -#. TRANS: Client error displayed when requesting user information for a user without a profile. -#. TRANS: Client error displayed trying to get an avatar for a user without a profile. -#: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:199 -#: actions/apiaccountupdateprofilecolors.php:183 -#: actions/apiaccountupdateprofileimage.php:130 -#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108 -#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74 -#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66 -#: lib/profileaction.php:84 +#. TRANS: Error message displayed when referring to a user without a profile. msgid "User has no profile." msgstr "למשתמש ×ין פרופיל." #. TRANS: Server error displayed if a user profile could not be saved. -#: actions/apiaccountupdateprofile.php:147 -#, fuzzy +#. TRANS: Server error thrown when user profile settings could not be saved. msgid "Could not save profile." msgstr "שמירת הפרופיל נכשלה." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. -#: actions/apiaccountupdateprofilebackgroundimage.php:108 -#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 -#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269 -#: actions/designadminpanel.php:125 actions/editapplication.php:121 -#: actions/newapplication.php:104 actions/newnotice.php:95 -#: lib/designsettings.php:298 #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -352,113 +377,84 @@ msgid_plural "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr[0] "" +"השרת ×œ× ×”×™×” מסוגל לטפל במידע POST ×›×” רב (בית ×חד) בשל תצורתו הנוכחית." msgstr[1] "" +"השרת ×œ× ×”×™×” מסוגל לטפל במידע POST ×›×” רב (%s בתי×) בשל תצורתו הנוכחית." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#: actions/apiaccountupdateprofilebackgroundimage.php:138 -#: actions/apiaccountupdateprofilebackgroundimage.php:149 -#: actions/apiaccountupdateprofilecolors.php:160 -#: actions/apiaccountupdateprofilecolors.php:171 -#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -msgid "Unable to save your design settings." -msgstr "" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#: actions/apiaccountupdateprofilebackgroundimage.php:191 -#: actions/apiaccountupdateprofilecolors.php:139 -#, fuzzy -msgid "Could not update your design." -msgstr "עידכון המשתמש נכשל." - -#: actions/apiatomservice.php:86 +#. TRANS: Title for Atom feed. +msgctxt "ATOM" msgid "Main" -msgstr "" +msgstr "ר×שי" +#. TRANS: Title for Atom feed. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title in atom group notice feed. %s is a group name. #. TRANS: Title in atom user notice feed. %s is a user name. -#: actions/apiatomservice.php:93 actions/grouprss.php:139 -#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63 -#: lib/atomusernoticefeed.php:68 -#, fuzzy, php-format +#, php-format msgid "%s timeline" -msgstr "קו זמן ציבורי" +msgstr "קן זמן %s" +#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname. +#. TRANS: Title for Atom subscription feed. +#. TRANS: %s is a user nickname. #. TRANS: Header for subscriptions overview for a user (first page). #. TRANS: %s is a user nickname. -#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147 -#: actions/subscriptions.php:51 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions" -msgstr "כל המנויי×" +msgstr "×ž×™× ×•×™×™× ×©×œ %s" -#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142 +#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname. +#. TRANS: Title for Atom favorites feed. +#. TRANS: %s is a user nickname. #, php-format msgid "%s favorites" -msgstr "" +msgstr "%s – מועדפי×" -#: actions/apiatomservice.php:123 +#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname. #, php-format msgid "%s memberships" -msgstr "" +msgstr "%s – חברויות" #. TRANS: Client error displayed when users try to block themselves. -#: actions/apiblockcreate.php:104 -#, fuzzy msgid "You cannot block yourself!" -msgstr "עידכון המשתמש נכשל." +msgstr "משתמש ×œ× ×™×›×•×œ ×œ×—×¡×•× ×ת עצמו!" #. TRANS: Server error displayed when blocking a user has failed. -#: actions/apiblockcreate.php:126 msgid "Block user failed." -msgstr "" +msgstr "חסימת משתמש נכשלה." #. TRANS: Server error displayed when unblocking a user has failed. -#: actions/apiblockdestroy.php:113 msgid "Unblock user failed." -msgstr "" +msgstr "הסרת החסימה ממשתמש נכשלה." #. TRANS: Title. %s is a user nickname. -#: actions/apidirectmessage.php:88 #, php-format msgid "Direct messages from %s" -msgstr "" +msgstr "הודעות ישירות מ×ת %s" #. TRANS: Subtitle. %s is a user nickname. -#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "" +msgstr "כל ההודעות הישירות שנשלחו מ×ת %s" #. TRANS: Title. %s is a user nickname. -#: actions/apidirectmessage.php:102 #, php-format msgid "Direct messages to %s" -msgstr "" +msgstr "הודעות ישירות ×ל %s" #. TRANS: Subtitle. %s is a user nickname. -#: actions/apidirectmessage.php:107 #, php-format msgid "All the direct messages sent to %s" -msgstr "" +msgstr "כל ההודעות הישירות שנשלחו ×ל %s" #. TRANS: Client error displayed when no message text was submitted (406). -#: actions/apidirectmessagenew.php:117 -#, fuzzy msgid "No message text!" -msgstr "הודעה חדשה" +msgstr "×ין טקסט הודעה" #. TRANS: Client error displayed when message content is too long. #. TRANS: %d is the maximum number of characters for a message. #. TRANS: Form validation error displayed when message content is too long. #. TRANS: %d is the maximum number of characters for a message. -#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152 #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." @@ -466,18 +462,16 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client error displayed if a recipient user could not be found (403). -#: actions/apidirectmessagenew.php:139 -#, fuzzy msgid "Recipient user not found." -msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." +msgstr "משתמש הנמען ×œ× × ×ž×¦×" #. TRANS: Client error displayed trying to direct message another user who's not a friend (403). -#: actions/apidirectmessagenew.php:144 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +msgid "Cannot send direct messages to users who aren't your friend." +msgstr "×œ× × ×™×ª×Ÿ לשלוח הודעות ישירות ×œ×ž×©×ª×ž×©×™× ×©××™× × × ×ž× ×™× ×¢× ×”×—×‘×¨×™× ×©×œ×š." #. TRANS: Client error displayed trying to direct message self (403). -#: actions/apidirectmessagenew.php:154 +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -485,153 +479,132 @@ msgstr "" #. TRANS: Client error displayed when requesting a status with a non-existing ID. #. TRANS: Client error displayed when trying to remove a favourite with an invalid ID. #. TRANS: Client error displayed trying to delete a status with an invalid ID. -#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108 -#: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." -msgstr "" +msgstr "×ין מצב ×¢× ×ž×–×”×” ×›×–×”." #. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite. -#: actions/apifavoritecreate.php:120 -#, fuzzy msgid "This status is already a favorite." -msgstr "זהו כבר זיהוי ×”-Jabber שלך." +msgstr "עדכון המצב ×”×–×” כבר מסומן כמועדף" #. TRANS: Client error displayed when marking a notice as favourite fails. +#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database. #. TRANS: Error message text shown when a favorite could not be set. -#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294 -#, fuzzy msgid "Could not create favorite." -msgstr "שמירת הפרופיל נכשלה." +msgstr "שג××” ביצירת מועדף." #. TRANS: Client error displayed when trying to remove a favourite that was not a favourite. -#: actions/apifavoritedestroy.php:122 msgid "That status is not a favorite." -msgstr "" +msgstr "העדכון ×”×–×” ×ינו מועדף." #. TRANS: Client error displayed when removing a favourite has failed. -#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87 -#, fuzzy +#. TRANS: Server error displayed when removing a favorite from the database fails. msgid "Could not delete favorite." -msgstr "עידכון המשתמש נכשל." +msgstr "שגי××” במחיקת מועדף." #. TRANS: Client error displayed when trying follow who's profile could not be found. -#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: profile not found." msgstr "שמירת הפרופיל נכשלה." #. TRANS: Client error displayed when trying to follow a user that's already being followed. #. TRANS: %s is the nickname of the user that is already being followed. -#: actions/apifriendshipscreate.php:120 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" +msgstr "××™Ö¾×פשר לעקוב ×חרי משתמש: %s כבר ברשימה שלך." #. TRANS: Client error displayed when trying to unfollow a user that cannot be found. -#: actions/apifriendshipsdestroy.php:109 -#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "נכשלה ההפניה לשרת: %s" +msgstr "שגי××” בניתוק ממשתמש: משתמש ×œ× × ×ž×¦×." #. TRANS: Client error displayed when trying to unfollow self. -#: actions/apifriendshipsdestroy.php:121 -#, fuzzy msgid "You cannot unfollow yourself." -msgstr "עידכון המשתמש נכשל." +msgstr "××™Ö¾×פשר להתנתק מכצמך." #. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. -#: actions/apifriendshipsexists.php:88 msgid "Two valid IDs or nick names must be supplied." -msgstr "" +msgstr "יש לספק שני ×ž×–×”×™× ×ו שני שמות משתמש תקיני×." #. TRANS: Client error displayed when a source user could not be determined showing friendship. -#: actions/apifriendshipsshow.php:131 -#, fuzzy msgid "Could not determine source user." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×¦×œ×—×ª×™ להבין מיהו משתמש המקור." #. TRANS: Client error displayed when a target user could not be determined showing friendship. -#: actions/apifriendshipsshow.php:140 -#, fuzzy msgid "Could not find target user." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× × ×ž×¦× ×ž×©×ª×ž×© היעד." #. TRANS: Client error trying to create a group with a nickname this is already in use. +#. TRANS: API validation exception thrown when nickname is already used. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:156 actions/editgroup.php:189 -#: actions/newgroup.php:136 actions/profilesettings.php:277 -#: actions/register.php:214 +#. TRANS: Form validation error displayed when trying to register with an existing nickname. msgid "Nickname already in use. Try another one." msgstr "כינוי ×–×” כבר תפוס. נסה כינוי ×חר." #. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when nickname does not validate. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:164 actions/editgroup.php:193 -#: actions/newgroup.php:140 actions/profilesettings.php:247 -#: actions/register.php:216 +#. TRANS: Form validation error displayed when trying to register with an invalid nickname. msgid "Not a valid nickname." -msgstr "×©× ×ž×©×ª×ž×© ×œ× ×—×•×§×™." +msgstr "×©× ×ž×©×ª×ž×© ×œ× ×ª×§×™×Ÿ." #. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when homepage URL does not validate. #. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form. #. TRANS: Group edit form validation error. +#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form. #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:181 actions/editapplication.php:233 -#: actions/editgroup.php:200 actions/newapplication.php:211 -#: actions/newgroup.php:147 actions/profilesettings.php:252 -#: actions/register.php:223 +#. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. msgid "Homepage is not a valid URL." -msgstr "ל×תר הבית יש כתובת ×œ× ×—×•×§×™×ª." +msgstr "כתובת ×תר הבית ××™× ×” תקינה." #. TRANS: Client error in form for group creation. +#. TRANS: API validation exception thrown when full name does not validate. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:191 actions/editgroup.php:204 -#: actions/newgroup.php:151 actions/profilesettings.php:256 -#: actions/register.php:226 +#. TRANS: Form validation error displayed when trying to register with a too long full name. msgid "Full name is too long (maximum 255 characters)." -msgstr "" +msgstr "×”×©× ×”×ž×œ× ×רוך מדי (מותר 255 ×ª×•×•×™× ×œ×›×œ היותר)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. +#. TRANS: API validation exception thrown when description does not validate. +#. TRANS: %d is the maximum description length and used for plural. #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. +#. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. +#. TRANS: Client error shown when providing too long a description when editing a list. +#. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed characters. -#: actions/apigroupcreate.php:201 actions/editapplication.php:201 -#: actions/editgroup.php:209 actions/newapplication.php:178 -#: actions/newgroup.php:156 #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "התי×ור ×רוך מדי (מותר תו ×חד לכל היותר)." +msgstr[1] "התי×ור ×רוך מדי (מותר %d ×ª×•×•×™× ×œ×›×œ היותר)." #. TRANS: Client error shown when providing too long a location during group creation. +#. TRANS: API validation exception thrown when location does not validate. #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. #. TRANS: Validation error in form for profile settings. -#: actions/apigroupcreate.php:215 actions/editgroup.php:216 -#: actions/newgroup.php:163 actions/profilesettings.php:269 -#: actions/register.php:235 +#. TRANS: Form validation error displayed when trying to register with a too long location. msgid "Location is too long (maximum 255 characters)." -msgstr "" +msgstr "×”×ž×™×§×•× ×רוך מדי (255 ×ª×•×•×™× ×œ×›×œ היותר)." #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. +#. TRANS: API validation exception thrown when aliases do not validate. +#. TRANS: %d is the maximum number of aliases and used for plural. #. TRANS: Group edit form validation error. #. TRANS: %d is the maximum number of allowed aliases. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed aliases. -#: actions/apigroupcreate.php:236 actions/editgroup.php:229 -#: actions/newgroup.php:176 #, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." @@ -640,26 +613,24 @@ msgstr[1] "" #. TRANS: Client error shown when providing an invalid alias during group creation. #. TRANS: %s is the invalid alias. -#: actions/apigroupcreate.php:253 +#. TRANS: API validation exception thrown when aliases does not validate. +#. TRANS: %s is the invalid alias. #, php-format msgid "Invalid alias: \"%s\"." -msgstr "גודל ×œ× ×—×•×§×™." +msgstr "כינוי ×œ× ×ª×§×™×Ÿ: \"%s\"." #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. +#. TRANS: API validation exception thrown when aliases is already used. +#. TRANS: %s is the already used alias. #. TRANS: Group edit form validation error. -#. TRANS: Group create form validation error. -#: actions/apigroupcreate.php:264 actions/editgroup.php:244 -#: actions/newgroup.php:191 -#, fuzzy, php-format +#. TRANS: Group create form validation error. %s is the already used alias. +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "כינוי ×–×” כבר תפוס. נסה כינוי ×חר." +msgstr "הכינוי \"%s\" כבר בשימוש. נסה לבחור כינוי ×חר." #. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname. #. TRANS: Group edit form validation error. -#. TRANS: Group create form validation error. -#: actions/apigroupcreate.php:278 actions/editgroup.php:251 -#: actions/newgroup.php:198 msgid "Alias can't be the same as nickname." msgstr "" @@ -667,129 +638,171 @@ msgstr "" #. TRANS: Client error displayed when trying to join a group that does not exist. #. TRANS: Client error displayed when trying to leave a group that does not exist. #. TRANS: Client error displayed trying to show group membership on a non-existing group. +#. TRANS: Client error displayed when not providing a group or an invalid group. #. TRANS: Client error displayed when trying to show a group that could not be found. #. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. -#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 -#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89 -#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89 msgid "Group not found." msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." #. TRANS: Server error displayed when trying to join a group the user is already a member of. +#. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown a user tries to join a group they already are a member of. -#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333 msgid "You are already a member of that group." msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" #. TRANS: Server error displayed when trying to join a group the user is blocked from joining. +#. TRANS: Client error displayed when trying to join a group while being blocked form joining it. #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. -#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338 msgid "You have been blocked from that group by the admin." -msgstr "" +msgstr "נחסמת מקבוצה זו על־ידי המנהל." -#. TRANS: Server error displayed when joining a group fails. -#. TRANS: %1$s is a user nickname, $2$s is a group nickname. +#. 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. #. TRANS: Message given having failed to add a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350 -#, fuzzy, php-format +#, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "נכשלה ההפניה לשרת: %s" +msgstr "שגי××” בצירוף משתמש %1$s לקבוצה %2$s." #. TRANS: Server error displayed when trying to leave a group the user is not a member of. -#: actions/apigroupleave.php:115 -#, fuzzy msgid "You are not a member of this group." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך חבר בקבוצה ×”×–×ת." -#. TRANS: Server error displayed when leaving a group fails. -#. TRANS: %1$s is a user nickname, $2$s is a group nickname. +#. 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. #. TRANS: Message given having failed to remove a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: actions/apigroupleave.php:127 actions/leavegroup.php:129 -#: lib/command.php:398 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "נכשלה יצירת OpenID מתוך: %s" +msgstr "נכשלה הוצ×ת משתמש %1$s מהקבוצה %2$s." #. TRANS: Used as title in check for group membership. %s is a user name. -#: actions/apigrouplist.php:94 -#, fuzzy, php-format +#, php-format msgid "%s's groups" -msgstr "פרופיל" +msgstr "הקבוצות של %s" -#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name. -#: actions/apigrouplist.php:104 -#, fuzzy, php-format +#. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name. +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "קבוצות %1$s שהמשתמש %2$s חבר בהן." #. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name. -#. TRANS: Message is used as a page title. %s is a nick name. -#: actions/apigrouplistall.php:88 actions/usergroups.php:63 -#, fuzzy, php-format +#. TRANS: Page title for first page of groups for a user. +#. TRANS: %s is a nickname. +#, php-format msgid "%s groups" -msgstr "קבוצות" +msgstr "קבוצות %s" -#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name. -#: actions/apigrouplistall.php:93 +#. TRANS: Message is used as a subtitle when listing the latest 20 groups. %s is a site name. #, php-format msgid "groups on %s" +msgstr "קבוצות ב×תר %s" + +#. TRANS: Client error displayed when trying to edit a group without being an admin. +#. TRANS: Client error displayed trying to edit a group while not being a group admin. +#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. +msgid "You must be an admin to edit the group." +msgstr "עליך להיות מנהל כדי לערוך ×ת הקבוצה." + +#. TRANS: Server error displayed when group update fails. +#. TRANS: Server error displayed when editing a group fails. +msgid "Could not update group." +msgstr "עדכון הקבוצה נכשל." + +#. TRANS: Server error displayed when adding group aliases fails. +#. TRANS: Server error displayed when group aliases could not be added. +#. TRANS: Server exception thrown when creating group aliases failed. +msgid "Could not create aliases." +msgstr "יצירת ×›×™× ×•×™×™× × ×›×©×œ×”." + +#. TRANS: API validation exception thrown when nickname does not validate. +#. TRANS: Validation error in form for registration, profile and group settings, etc. +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "כינוי יכול להכיל רק ×ותיות ×נגליות קטנות ומספרי×, ×•×œ×œ× ×¨×•×•×—×™×." + +#. TRANS: API validation exception thrown when alias is the same as nickname. +#. TRANS: Group create form validation error. +msgid "Alias cannot be the same as nickname." +msgstr "" + +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to perform an action related to a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +msgid "List not found." +msgstr "" + +#. TRANS: Client error displayed when trying to update another user's list. +msgid "You cannot update lists that do not belong to you." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs updating a list. +#. TRANS: Client error displayed when an unknown error occurs viewing list members. +#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. +#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. +msgid "An error occured." +msgstr "" + +#. TRANS: Client error displayed when trying to delete another user's list. +msgid "You cannot delete lists that do not belong to you." +msgstr "" + +#. TRANS: Client error displayed when referring to a non-list member. +msgid "The specified user is not a member of this list." +msgstr "" + +#. TRANS: Client error displayed when trying to add members to a list without having the right to do so. +msgid "You are not allowed to add members to this list." +msgstr "" + +#. TRANS: Client error displayed when trying to modify list members without specifying them. +msgid "You must specify a member." +msgstr "" + +#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. +msgid "You are not allowed to remove members from this list." +msgstr "" + +#. TRANS: Client error displayed when trying to remove a list member that is not part of a list. +msgid "The user you are trying to remove from the list is not a member." +msgstr "" + +#. TRANS: Client error displayed when trying to create a list without a name. +msgid "A list must have a name." +msgstr "" + +#. TRANS: Client error displayed when a membership check for a user is nagative. +msgid "The specified user is not a subscriber of this list." +msgstr "" + +#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. +msgid "You are not subscribed to this list." msgstr "" #. TRANS: Client error displayed when uploading a media file has failed. -#: actions/apimediaupload.php:101 -#, fuzzy msgid "Upload failed." -msgstr "ההעלה" +msgstr "ההעל××” נכשלה." #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#: actions/apioauthaccesstoken.php:101 msgid "Invalid request token or verifier." msgstr "" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. -#: actions/apioauthauthorize.php:107 msgid "No oauth_token parameter provided." msgstr "" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129 msgid "Invalid request token." msgstr "" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#: actions/apioauthauthorize.php:121 msgid "Request token already authorized." msgstr "" -#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token. -#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 -#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55 -#: actions/groupblock.php:66 actions/grouplogo.php:312 -#: actions/groupunblock.php:65 actions/imsettings.php:230 -#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66 -#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80 -#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138 -#: actions/othersettings.php:153 actions/passwordsettings.php:138 -#: actions/profilesettings.php:221 actions/recoverpassword.php:350 -#: actions/register.php:172 actions/remotesubscribe.php:77 -#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40 -#: actions/subscribe.php:86 actions/tagother.php:166 -#: actions/unsubscribe.php:69 actions/userauthorization.php:52 -#: lib/designsettings.php:310 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - #. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API. -#: actions/apioauthauthorize.php:168 -#, fuzzy msgid "Invalid nickname / password!" -msgstr "×©× ×”×ž×©×ª×ž×© ×ו הסיסמה ×œ× ×—×•×§×™×™×" +msgstr "×©× ×”×ž×©×ª×ž×© ×ו הססמה ××™× × ×ª×§×™× ×™×!" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:217 msgid "Database error inserting oauth_token_association." msgstr "" @@ -797,32 +810,25 @@ msgstr "" #. TRANS: Unexpected validation error on avatar upload form. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. -#. TRANS: Message given submitting a form with an unknown action in IM settings. +#. TRANS: Form validation error message when an unsupported argument is used. +#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings. +#. TRANS: Client error displayed when encountering an unexpected action on form submission. #. TRANS: Client error when submitting a form with unexpected information. +#. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294 -#: actions/designadminpanel.php:104 actions/editapplication.php:144 -#: actions/emailsettings.php:316 actions/grouplogo.php:322 -#: actions/imsettings.php:245 actions/newapplication.php:125 -#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 -#: actions/smssettings.php:277 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "הגשת טופס ×œ× ×¦×¤×•×™×”." #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:387 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:404 msgid "Allow or deny access" msgstr "" #. TRANS: User notification of external application requesting account access. #. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename. -#: actions/apioauthauthorize.php:425 #, php-format msgid "" "An application would like the ability to %3$s your %4$s " @@ -833,7 +839,6 @@ msgstr "" #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, #. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. -#: actions/apioauthauthorize.php:433 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -842,28 +847,24 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:455 msgctxt "LEGEND" msgid "Account" -msgstr "" +msgstr "חשבון" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label in form for profile settings. -#. TRANS: Label for group nickname (dt). Text hidden by default. -#: actions/apioauthauthorize.php:459 actions/login.php:252 -#: actions/profilesettings.php:110 actions/register.php:432 -#: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 -#: lib/userprofile.php:134 +#. TRANS: Field label on account registration page. +#. TRANS: Label for nickname on user authorisation page. +#. TRANS: Field label on group edit form. +#. TRANS: Dropdown option for searching in profiles. msgid "Nickname" msgstr "כינוי" #. TRANS: Field label on OAuth API authorisation form. -#. TRANS: Link description in user account settings menu. -#: actions/apioauthauthorize.php:463 actions/login.php:255 -#: actions/register.php:437 lib/accountsettingsaction.php:120 +#. TRANS: Field label on login page. +#. TRANS: Field label on account registration page. msgid "Password" -msgstr "סיסמה" +msgstr "ססמה" #. TRANS: Button text that when clicked will cancel the process of allowing access to an account #. TRANS: by an external application. @@ -871,44 +872,34 @@ msgstr "סיסמה" #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. -#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128 -#: actions/imsettings.php:131 actions/smssettings.php:137 -#: lib/applicationeditform.php:351 -#, fuzzy msgctxt "BUTTON" msgid "Cancel" -msgstr "בטל" +msgstr "ביטול" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:485 msgctxt "BUTTON" msgid "Allow" -msgstr "" +msgstr "ל×פשר" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:502 msgid "Authorize access to your account information." msgstr "" #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:594 msgid "Authorization canceled." msgstr "" #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:598 #, php-format msgid "The request token %s has been revoked." msgstr "" #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#: actions/apioauthauthorize.php:621 msgid "You have successfully authorized the application" msgstr "" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#: actions/apioauthauthorize.php:625 msgid "" "Please return to the application and enter the following security code to " "complete the process." @@ -916,14 +907,12 @@ msgstr "" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:632 #, php-format msgid "You have successfully authorized %s" msgstr "" #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:639 #, php-format msgid "" "Please return to %s and enter the following security code to complete the " @@ -932,85 +921,67 @@ msgstr "" #. TRANS: Client error displayed trying to delete a status not using POST or DELETE. #. TRANS: POST and DELETE should not be translated. -#: actions/apistatusesdestroy.php:111 msgid "This method requires a POST or DELETE." msgstr "" #. TRANS: Client error displayed trying to delete a status of another user. -#: actions/apistatusesdestroy.php:136 msgid "You may not delete another user's status." msgstr "" #. TRANS: Client error displayed trying to repeat a non-existing notice through the API. #. TRANS: Client error displayed trying to display redents of a non-exiting notice. +#. TRANS: Client exception thrown when referencing a non-existing notice. #. TRANS: Error message displayed trying to delete a non-existing notice. -#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70 -#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61 -#: actions/shownotice.php:92 +#. TRANS: Client error displayed trying to show a non-existing notice. msgid "No such notice." -msgstr "×ין הודעה כזו." - -#. TRANS: Client error displayed trying to repeat an own notice through the API. -#. TRANS: Error text shown when trying to repeat an own notice. -#: actions/apistatusesretweet.php:83 lib/command.php:537 -#, fuzzy -msgid "Cannot repeat your own notice." -msgstr "×œ× × ×™×ª×Ÿ ×œ×”×™×¨×©× ×œ×œ× ×”×¡×›×ž×” לרשיון" - -#. TRANS: Client error displayed trying to re-repeat a notice through the API. -#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user. -#: actions/apistatusesretweet.php:92 lib/command.php:543 -#, fuzzy -msgid "Already repeated that notice." -msgstr "כבר נכנסת למערכת!" +msgstr "×ין עדכון ×›×–×”." +#. TRANS: Client error displayed calling an unsupported HTTP error in API status show. +#. TRANS: Client exception thrown when using an unsupported HTTP method. +#. TRANS: Client exception thrown using an unsupported HTTP method. +#. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client error shown when using a non-supported HTTP method. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 -#: actions/atompubshowsubscription.php:122 -#: actions/atompubsubscriptionfeed.php:109 +#. TRANS: Client exception thrown when using an unsupported HTTP method. msgid "HTTP method not supported." -msgstr "" +msgstr "שיטת HTTP ××™× ×” נתמכת." -#: actions/apistatusesshow.php:141 +#. TRANS: Exception thrown requesting an unsupported notice output format. +#. TRANS: %s is the requested output format. #, php-format -msgid "Unsupported format: %s" -msgstr "" +msgid "Unsupported format: %s." +msgstr "תסדיר ×œ× × ×ª×ž×š: %s." #. TRANS: Client error displayed requesting a deleted status. -#: actions/apistatusesshow.php:152 -#, fuzzy msgid "Status deleted." -msgstr "התמונה עודכנה." +msgstr "עדכון המצב נמחק." #. TRANS: Client error displayed requesting a status with an invalid ID. -#: actions/apistatusesshow.php:159 msgid "No status with that ID found." -msgstr "" +msgstr "×œ× × ×ž×¦× ×ž×¦×‘ ×¢× ×ž×–×”×” ×›×–×”." -#: actions/apistatusesshow.php:223 +#. TRANS: Client error displayed when trying to delete a notice not using the Atom format. msgid "Can only delete using the Atom format." -msgstr "" +msgstr "×פשר למחוק רק בתסדיר Atom." +#. TRANS: Client error displayed when a user has no rights to delete notices of other users. #. TRANS: Error message displayed trying to delete a notice that was not made by the current user. -#: actions/apistatusesshow.php:230 actions/deletenotice.php:78 -msgid "Can't delete this notice." -msgstr "" +msgid "Cannot delete this notice." +msgstr "×œ× × ×™×ª×Ÿ למחוק ×ת העדכון ×”×–×”." -#: actions/apistatusesshow.php:243 +#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice. #, php-format msgid "Deleted notice %d" -msgstr "" +msgstr "העדכון %d נמחק" #. TRANS: Client error displayed when the parameter "status" is missing. -#: actions/apistatusesupdate.php:221 msgid "Client must provide a 'status' parameter with a value." -msgstr "" +msgstr "הלקוח צריך לספק פרמטר 'status' בעל ערך." +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. -#: actions/apistatusesupdate.php:244 actions/newnotice.php:161 -#: lib/mailhandler.php:60 +#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters. #, php-format msgid "That's too long. Maximum notice size is %d character." msgid_plural "That's too long. Maximum notice size is %d characters." @@ -1018,13 +989,13 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client error displayed when replying to a non-existing notice. -#: actions/apistatusesupdate.php:284 msgid "Parent notice not found." msgstr "" #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. -#: actions/apistatusesupdate.php:308 actions/newnotice.php:184 +#. TRANS: Client error displayed exceeding the maximum notice length. +#. TRANS: %d is the maximum length for a notice. #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." @@ -1033,459 +1004,529 @@ msgstr[1] "" #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. -#: actions/apisubscriptions.php:228 actions/apisubscriptions.php:258 -#, fuzzy msgid "Unsupported format." -msgstr "פורמט התמונה ×ינו נתמך." +msgstr "סוג קובץ התמונה ×ינו נתמך." #. TRANS: Title for timeline of most recent favourite notices by a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. -#: actions/apitimelinefavorites.php:108 -#, fuzzy, php-format +#, php-format msgid "%1$s / Favorites from %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " +msgstr "%1$s / ×ž×•×¢×“×¤×™× ×ž×ž×©×ª×ž×© %2$s" #. TRANS: Subtitle for timeline of most recent favourite notices by a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, #. TRANS: %3$s is a user nickname. -#: actions/apitimelinefavorites.php:120 #, php-format msgid "%1$s updates favorited by %2$s / %3$s." msgstr "" -#. TRANS: Server error displayed when generating an Atom feed fails. -#. TRANS: %s is the error. -#: actions/apitimelinegroup.php:134 +#. TRANS: Server error displayed whe trying to get a timeline fails. +#. TRANS: %s is the error message. #, php-format -msgid "Could not generate feed for group - %s" +msgid "Could not generate feed for list - %s" msgstr "" #. TRANS: Title for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. -#: actions/apitimelinementions.php:115 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " +msgstr "%1$s / ×¢×“×›×•× ×™× ×©×”×ž×©×ª×ž×© %2$s מוזכר בה×" #. TRANS: Subtitle for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname, #. TRANS: %3$s is a user's full name. -#: actions/apitimelinementions.php:131 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #. TRANS: Title for site timeline. %s is the StatusNet sitename. -#: actions/apitimelinepublic.php:193 actions/publicrss.php:103 -#, fuzzy, php-format +#. TRANS: Public RSS feed title. %s is the StatusNet site name. +#, php-format msgid "%s public timeline" -msgstr "קו זמן ציבורי" +msgstr "קו זמן ציבורי ב×תר %s" #. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. -#: actions/apitimelinepublic.php:199 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. -#: actions/apitimelineretweetedbyme.php:71 msgid "Unimplemented." -msgstr "" +msgstr "×œ× ×ž×™×•×©×." #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. -#: actions/apitimelineretweetedtome.php:108 -#, fuzzy, php-format +#, php-format msgid "Repeated to %s" -msgstr "תגובת עבור %s" +msgstr "הודהד ×ל %s" + +#. TRANS: Subtitle for API action that shows most recent notices that are repeats in user's inbox. +#. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name. +#, php-format +msgid "%1$s notices that were to repeated to %2$s / %3$s." +msgstr "%1$s ×¢×“×›×•× ×™× ×©×”×•×“×”×“×• ×ל %2$s / %3$s." #. TRANS: Title of list of repeated notices of the logged in user. #. TRANS: %s is the nickname of the logged in user. -#: actions/apitimelineretweetsofme.php:112 -#, fuzzy, php-format +#, php-format msgid "Repeats of %s" -msgstr "תגובת עבור %s" +msgstr "×”×“×”×•×“×™× ×©×œ %s" + +#. TRANS: Subtitle of API time with retweets of me. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the user nickname, %3$s is the user profile name. +#, php-format +msgid "%1$s notices that %2$s / %3$s has repeated." +msgstr "%1$s ×¢×“×›×•× ×™× ×©Ö¾%2$s / %3$s הדהד." #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. -#: actions/apitimelinetag.php:101 actions/tag.php:67 +#. TRANS: Title for first page of notices with tags. +#. TRANS: %s is the tag. #, php-format msgid "Notices tagged with %s" -msgstr "" +msgstr "×¢×“×›×•× ×™× ×¢× ×”×ª×’ %s" #. TRANS: Subtitle for timeline with lastest notices with a given tag. #. TRANS: %1$s is the tag, $2$s is the StatusNet sitename. -#: actions/apitimelinetag.php:105 actions/tagrss.php:65 -#, fuzzy, php-format +#. TRANS: Tag feed description. +#. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "מיקרובלוג מ×ת %s" +msgstr "×¢×“×›×•× ×™× ×¢× ×”×ª×’ %1$s ב×תר %2$s!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. -#: actions/apitimelineuser.php:297 msgid "Only the user can add to their own timeline." msgstr "" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:304 msgid "Only accept AtomPub for Atom feeds." msgstr "" -#: actions/apitimelineuser.php:310 +#. TRANS: Client error displayed attempting to post an empty API notice. msgid "Atom post must not be empty." msgstr "" -#: actions/apitimelineuser.php:315 +#. TRANS: Client error displayed attempting to post an API that is not well-formed XML. msgid "Atom post must be well-formed XML." msgstr "" #. TRANS: Client error displayed when not using an Atom entry. -#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226 -#: actions/atompubmembershipfeed.php:228 -#: actions/atompubsubscriptionfeed.php:233 msgid "Atom post must be an Atom entry." msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/apitimelineuser.php:334 +#. TRANS: Client error displayed when not using the POST verb. Do not translate POST. msgid "Can only handle POST activities." msgstr "" #. TRANS: Client error displayed when using an unsupported activity object type. #. TRANS: %s is the unsupported activity object type. -#: actions/apitimelineuser.php:345 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. -#: actions/apitimelineuser.php:378 +#. TRANS: %d is the notice ID (number). #, php-format msgid "No content for notice %d." msgstr "" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#. TRANS: %s is the notice URI. #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "" -#: actions/apitimelineuser.php:437 -#, php-format -msgid "AtomPub post with unknown attention URI %s" -msgstr "" - #. TRANS: Server error for unfinished API method showTrends. -#: actions/apitrends.php:85 -#, fuzzy msgid "API method under construction." -msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." +msgstr "שיטת API בבנייה." #. TRANS: Client error displayed when requesting user information for a non-existing user. -#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94 msgid "User not found." +msgstr "המשתמש ×œ× × ×ž×¦×." + +#. TRANS: Client error displayed when trying to leave a group while not logged in. +msgid "You must be logged in to leave a group." +msgstr "צריך להיכנס לחשבון כדי לעזוב קבוצה." + +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client exception thrown when referencing a non-existing group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. +#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error when trying to delete a non-local group. +#. TRANS: Client error when trying to delete a non-existing group. +#. TRANS: Client error displayed trying to edit a non-existing group. +#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group. +#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. +#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. +#. TRANS: Client error displayed when trying to update logo settings for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for an object that is not a group. +#. TRANS: Client error displayed when trying to view group members for a non-existing group. +#. TRANS: Client error displayed when trying to view group members for an object that is not a group. +#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist. +#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group. +#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. +#. TRANS: Client error displayed when trying to join a non-local group. +#. TRANS: Client error displayed when trying to join a non-existing group. +#. TRANS: Client error displayed when trying to leave a non-local group. +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed when providing an invalid group ID on the Make Admin page. +#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. +#. TRANS: Client error displayed if no local group with a given name was found requesting group page. +#. TRANS: Command exception text shown when a group is requested that does not exist. +#. TRANS: Error text shown when trying to leave a group that does not exist. +msgid "No such group." +msgstr "×ין משתמש ×›×–×”." + +#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. +#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group. +#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID. +#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. +msgid "No nickname or ID." +msgstr "×ין כינוי ×ו מזהה." + +#. TRANS: Client error displayed trying to approve group membership while not logged in. +#. TRANS: Client error displayed when trying to leave a group while not logged in. +msgid "Must be logged in." +msgstr "צריך להיכנס לחשבון." + +#. TRANS: Client error displayed trying to approve group membership while not a group administrator. +#. TRANS: Client error displayed when trying to approve or cancel a group join request without +#. TRANS: being a group administrator. +msgid "Only group admin can approve or cancel join requests." msgstr "" -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" +#. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve. +#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. +msgid "Must specify a profile." msgstr "" -#: actions/atompubfavoritefeed.php:145 +#. TRANS: Client error displayed trying to approve group membership for a non-existing request. +#. TRANS: %s is a nickname. +#. TRANS: Client error displayed when trying to approve a non-existing group join request. +#. TRANS: %s is a user nickname. #, php-format -msgid "Notices %s has favorited to on %s" +msgid "%s is not in the moderation queue for this group." msgstr "" -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" +#. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription. +msgid "Internal error: received neither cancel nor abort." msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/atompubfavoritefeed.php:239 -msgid "Can only handle Favorite activities." +#. TRANS: Client error displayed trying to approve/deny group membership. +#. TRANS: Client error displayed trying to approve/deny subscription +msgid "Internal error: received both cancel and abort." msgstr "" -#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248 +#. TRANS: Server error displayed when cancelling a queued group join request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. +#, php-format +msgid "Could not cancel request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for leave group page after group join request is approved/disapproved. +#. TRANS: %1$s is the user nickname, %2$s is the group nickname. +#, php-format +msgctxt "TITLE" +msgid "%1$s's request for %2$s" +msgstr "" + +#. TRANS: Message on page for group admin after approving a join request. +msgid "Join request approved." +msgstr "בקשת ההצטרפות ×ושרה." + +#. TRANS: Message on page for group admin after rejecting a join request. +msgid "Join request canceled." +msgstr "בקשת ההצטרפות בוטלה." + +#. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s is not in the moderation queue for your subscriptions." +msgstr "" + +#. TRANS: Server error displayed when cancelling a queued subscription request fails. +#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. +#, php-format +msgid "Could not cancel or approve request for user %1$s to join group %2$s." +msgstr "" + +#. TRANS: Title for subscription approval ajax return +#. TRANS: %1$s is the approved user's nickname +#, php-format +msgctxt "TITLE" +msgid "%1$s's request" +msgstr "" + +#. TRANS: Message on page for user after approving a subscription request. +msgid "Subscription approved." +msgstr "" + +#. TRANS: Message on page for user after rejecting a subscription request. +msgid "Subscription canceled." +msgstr "" + +#. TRANS: Subtitle for Atom favorites feed. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "Notices %1$s has favorited on %2$s" +msgstr "" + +#. TRANS: Client exception thrown when trying to set a favorite for another user. +#. TRANS: Client exception thrown when trying to subscribe another user. +msgid "Cannot add someone else's subscription." +msgstr "" + +#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. +msgid "Can only handle favorite activities." +msgstr "" + +#. TRANS: Client exception thrown when trying favorite an object that is not a notice. msgid "Can only fave notices." msgstr "" -#: actions/atompubfavoritefeed.php:256 -msgid "Unknown note." +#. TRANS: Client exception thrown when trying favorite a notice without content. +msgid "Unknown notice." msgstr "" -#: actions/atompubfavoritefeed.php:263 +#. TRANS: Client exception thrown when trying favorite an already favorited notice. msgid "Already a favorite." msgstr "" -#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76 -#: actions/atompubshowmembership.php:73 actions/subscribe.php:107 -#, fuzzy -msgid "No such profile." -msgstr "×ין הודעה כזו." - -#: actions/atompubmembershipfeed.php:144 +#. TRANS: Title for group membership feed. +#. TRANS: %s is a username. #, php-format -msgid "%s group memberships" +msgid "Group memberships of %s" msgstr "" -#: actions/atompubmembershipfeed.php:147 +#. TRANS: Subtitle for group membership feed. +#. TRANS: %1$s is a username, %2$s is the StatusNet sitename. #, php-format -msgid "Groups %s is a member of on %s" +msgid "Groups %1$s is a member of on %2$s" msgstr "" -#: actions/atompubmembershipfeed.php:217 -msgid "Can't add someone else's membership" +#. TRANS: Client exception thrown when trying subscribe someone else to a group. +msgid "Cannot add someone else's membership." msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/atompubmembershipfeed.php:241 -msgid "Can only handle Join activities." +#. TRANS: Client error displayed when not using the join verb. +msgid "Can only handle join activities." msgstr "" -#: actions/atompubmembershipfeed.php:256 +#. TRANS: Client exception thrown when trying to subscribe to a non-existing group. msgid "Unknown group." -msgstr "" +msgstr "קבוצה ×œ× ×™×“×•×¢×”." -#: actions/atompubmembershipfeed.php:263 +#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. msgid "Already a member." -msgstr "" +msgstr "כבר חבר." -#: actions/atompubmembershipfeed.php:270 +#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. msgid "Blocked by admin." -msgstr "" +msgstr "× ×—×¡× ×¢×œÖ¾×™×“×™ מנהל." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. msgid "No such favorite." +msgstr "×ין מועדף ×›×–×”." + +#. TRANS: Client exception thrown when trying to remove a favorite notice of another user. +msgid "Cannot delete someone else's favorite." msgstr "" -#: actions/atompubshowfavorite.php:151 -msgid "Can't delete someone else's favorite" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +msgid "Not a member." msgstr "" -#: actions/atompubshowmembership.php:81 -#, fuzzy -msgid "No such group" -msgstr "×ין הודעה כזו." - -#: actions/atompubshowmembership.php:90 -msgid "Not a member" -msgstr "" - -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" +#. TRANS: Client exception thrown when deleting someone else's membership. +msgid "Cannot delete someone else's membership." msgstr "" #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. #. TRANS: %d is the non-existing profile ID number. -#: actions/atompubshowsubscription.php:72 -#: actions/atompubshowsubscription.php:83 -#: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "" #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. -#: actions/atompubshowsubscription.php:94 #, php-format -msgid "Profile %1$d not subscribed to profile %2$d" +msgid "Profile %1$d not subscribed to profile %2$d." msgstr "" #. TRANS: Client exception thrown when trying to delete a subscription of another user. -#: actions/atompubshowsubscription.php:157 -msgid "Cannot delete someone else's subscription" +msgid "Cannot delete someone else's subscription." msgstr "" -#: actions/atompubsubscriptionfeed.php:150 +#. TRANS: Subtitle for Atom subscription feed. +#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. #, php-format -msgid "People %s has subscribed to on %s" +msgid "People %1$s has subscribed to on %2$s" msgstr "" -#. TRANS: Client error displayed when not using the POST verb. -#. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." msgstr "" -#: actions/atompubsubscriptionfeed.php:253 +#. TRANS: Client exception thrown when subscribing to an object that is not a person. msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#. TRANS: %s is the unknown profile ID. #, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to an already subscribed profile. +#. TRANS: %s is the profile the user already has a subscription on. +#, php-format +msgid "Already subscribed to %s." msgstr "" #. TRANS: Client error displayed trying to get a non-existing attachment. -#: actions/attachment.php:73 msgid "No such attachment." msgstr "×ין הודעה כזו." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. +#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. +#. TRANS: Client error displayed when trying to view group members without providing a group nickname. +#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. #. TRANS: Client error displayed if no nickname argument was given requesting a group page. -#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/groupmembers.php:76 -#: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "×ין כינוי" #. TRANS: Client error displayed trying to get an avatar without providing an avatar size. -#: actions/avatarbynickname.php:66 msgid "No size." msgstr "×ין גודל." #. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. -#: actions/avatarbynickname.php:72 msgid "Invalid size." -msgstr "גודל ×œ× ×—×•×§×™." +msgstr "גודל ×œ× ×ª×§×™×Ÿ." #. TRANS: Title for avatar upload page. -#. TRANS: Label for group avatar (dt). Text hidden by default. -#. TRANS: Link description in user account settings menu. -#: actions/avatarsettings.php:66 actions/showgroup.php:224 -#: lib/accountsettingsaction.php:113 msgid "Avatar" msgstr "תמונה" #. TRANS: Instruction for avatar upload page. #. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". -#: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "×–×” ×רוך מידי. ×ורך מירבי להודעה ×”×•× 140 ×ותיות." - -#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user. -#: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 -#: actions/userauthorization.php:72 actions/userrss.php:108 -#, fuzzy -msgid "User without matching profile." -msgstr "למשתמש ×ין פרופיל." +msgstr "×פשר להעלות תמונת משתמש של עצמך. גודל התמונה המרבי ×”×•× %s." #. TRANS: Avatar upload page form legend. #. TRANS: Avatar upload page crop form legend. -#: actions/avatarsettings.php:122 actions/avatarsettings.php:205 -#: actions/grouplogo.php:254 +#. TRANS: Legend for group logo settings fieldset. msgid "Avatar settings" msgstr "הגדרות הפרופיל" #. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2). #. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2). -#: actions/avatarsettings.php:131 actions/avatarsettings.php:214 -#: actions/grouplogo.php:202 actions/grouplogo.php:262 +#. TRANS: Uploaded original file in group logo form. +#. TRANS: Header for originally uploaded file before a crop on the group logo page. msgid "Original" -msgstr "" +msgstr "מקורי" #. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2). #. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2). -#: actions/avatarsettings.php:147 actions/avatarsettings.php:227 -#: actions/grouplogo.php:213 actions/grouplogo.php:274 +#. TRANS: Header for preview of to be displayed group logo. +#. TRANS: Header for the cropped group logo on the group logo page. msgid "Preview" -msgstr "" +msgstr "תצוגה מקדימה" #. TRANS: Button on avatar upload page to delete current avatar. #. TRANS: Button text for user account deletion. -#: actions/avatarsettings.php:155 actions/deleteaccount.php:319 +#. TRANS: Submit button text the OAuth application page to delete an application. +#. TRANS: Button text for deleting a group. +#. TRANS: Button text to delete a list. msgctxt "BUTTON" msgid "Delete" -msgstr "" +msgstr "למחוק" #. TRANS: Button on avatar upload page to upload an avatar. #. TRANS: Submit button to confirm upload of a user backup file for account restore. -#: actions/avatarsettings.php:173 actions/restoreaccount.php:369 msgctxt "BUTTON" msgid "Upload" -msgstr "" +msgstr "להעלות" #. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar. -#: actions/avatarsettings.php:243 msgctxt "BUTTON" msgid "Crop" -msgstr "" +msgstr "חיתוך" #. TRANS: Validation error on avatar upload form when no file was uploaded. -#: actions/avatarsettings.php:318 -#, fuzzy msgid "No file uploaded." -msgstr "העל××” חלקית." +msgstr "×œ× ×”×•×¢×œ×” ×©×•× ×§×•×‘×¥." -#. TRANS: Avatar upload form unstruction after uploading a file. -#: actions/avatarsettings.php:346 -msgid "Pick a square area of the image to be your avatar" +#. TRANS: Avatar upload form instruction after uploading a file. +msgid "Pick a square area of the image to be your avatar." msgstr "" #. TRANS: Server error displayed if an avatar upload went wrong somehow server side. -#: actions/avatarsettings.php:361 actions/grouplogo.php:380 +#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present. msgid "Lost our file data." msgstr "" #. TRANS: Success message for having updated a user avatar. -#: actions/avatarsettings.php:385 msgid "Avatar updated." msgstr "התמונה עודכנה." #. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason. -#: actions/avatarsettings.php:389 msgid "Failed updating avatar." msgstr "עדכון התמונה נכשל." #. TRANS: Success message for deleting a user avatar. -#: actions/avatarsettings.php:413 -#, fuzzy msgid "Avatar deleted." -msgstr "התמונה עודכנה." +msgstr "תמונת המשתמש נמחקה." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. TRANS: Title for backup account page. +#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user. msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. TRANS: Client exception thrown when trying to backup an account while not logged in. msgid "Only logged-in users can backup their account." msgstr "" -#: actions/backupaccount.php:84 +#. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." msgstr "" -#: actions/backupaccount.php:232 +#. TRANS: Information displayed on the backup account page. msgid "" "You can backup your account data in Activity Streams format. This is an experimental feature and " -"provides an incomplete backup; private account information like email and IM " +"\">Activity Streams format. This is an experimental feature and provides " +"an incomplete backup; private account information like email and IM " "addresses is not backed up. Additionally, uploaded files and direct messages " "are not backed up." msgstr "" -#: actions/backupaccount.php:255 +#. TRANS: Submit button to backup an account on the backup account page. msgctxt "BUTTON" msgid "Backup" msgstr "" -#: actions/backupaccount.php:258 -msgid "Backup your account" +#. TRANS: Title for submit button to backup an account on the backup account page. +msgid "Backup your account." msgstr "" #. TRANS: Client error displayed when blocking a user that has already been blocked. -#: actions/block.php:68 msgid "You already blocked that user." msgstr "זיהוי ×”-Jabber כבר שייך למשתמש ×חר." #. TRANS: Title for block user page. #. TRANS: Legend for block user form. -#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158 -#, fuzzy +#. TRANS: Fieldset legend for block user from group form. msgid "Block user" -msgstr "×ין משתמש ×›×–×”." +msgstr "חסימת משתמש" #. TRANS: Explanation of consequences when blocking a user on the block user page. -#: actions/block.php:139 msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " @@ -1498,20 +1539,13 @@ msgstr "" #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:154 actions/deleteapplication.php:157 -#: actions/deletegroup.php:220 actions/deletenotice.php:155 -#: actions/deleteuser.php:152 actions/groupblock.php:178 -#, fuzzy msgctxt "BUTTON" msgid "No" msgstr "ל×" #. TRANS: Submit button title for 'No' when blocking a user. -#. TRANS: Submit button title for 'No' when deleting a user. -#: actions/block.php:158 actions/deleteuser.php:156 -#, fuzzy -msgid "Do not block this user" -msgstr "×ין משתמש ×›×–×”." +msgid "Do not block this user." +msgstr "×œ× ×œ×—×¡×•× ×ת המשתמש ×”×–×”." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1519,203 +1553,168 @@ msgstr "×ין משתמש ×›×–×”." #. TRANS: Button label on the delete notice form. #. TRANS: Button label on the delete user form. #. TRANS: Button label on the form to block a user from a group. -#: actions/block.php:161 actions/deleteapplication.php:164 -#: actions/deletegroup.php:227 actions/deletenotice.php:162 -#: actions/deleteuser.php:159 actions/groupblock.php:185 -#, fuzzy +#. TRANS: Button text to repeat a notice on notice repeat form. msgctxt "BUTTON" msgid "Yes" msgstr "כן" #. TRANS: Submit button title for 'Yes' when blocking a user. -#. TRANS: Description of the form to block a user. -#: actions/block.php:165 lib/blockform.php:79 -#, fuzzy -msgid "Block this user" -msgstr "×ין משתמש ×›×–×”." +msgid "Block this user." +msgstr "×œ×—×¡×•× ×ת המשתמש ×”×–×”." #. TRANS: Server error displayed when blocking a user fails. -#: actions/block.php:189 msgid "Failed to save block information." msgstr "" -#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group. -#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group. -#. TRANS: Client error when trying to delete a non-local group. -#. TRANS: Client error when trying to delete a non-existing group. -#. TRANS: Client error displayed trying to edit a non-existing group. -#. TRANS: Client error displayed when trying to unblock a user from a non-existing group. -#. TRANS: Client error displayed if no remote group with a given name was found requesting group page. -#. TRANS: Client error displayed if no local group with a given name was found requesting group page. -#. TRANS: Command exception text shown when a group is requested that does not exist. -#. TRANS: Error text shown when trying to leave a group that does not exist. -#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89 -#: actions/deletegroup.php:87 actions/deletegroup.php:100 -#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62 -#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 -#: actions/groupmembers.php:83 actions/groupmembers.php:90 -#: actions/grouprss.php:98 actions/grouprss.php:105 -#: actions/groupunblock.php:88 actions/joingroup.php:82 -#: actions/joingroup.php:93 actions/leavegroup.php:82 -#: actions/leavegroup.php:93 actions/makeadmin.php:86 -#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168 -#: lib/command.php:380 -msgid "No such group." -msgstr "×ין משתמש ×›×–×”." - #. TRANS: Title for first page with list of users blocked from a group. #. TRANS: %s is a group nickname. -#: actions/blockedfromgroup.php:101 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "למשתמש ×ין פרופיל." +msgstr "דפי ×ž×©×ª×ž×©×™× ×—×¡×•×ž×™× ×‘×§×‘×•×¦×” %s" #. TRANS: Title for any but the first page with list of users blocked from a group. #. TRANS: %1$s is a group nickname, %2$d is a page number. -#: actions/blockedfromgroup.php:106 -#, fuzzy, php-format +#, php-format msgid "%1$s blocked profiles, page %2$d" -msgstr "%s וחברי×" +msgstr "דפי ×ž×©×ª×ž×©×™× ×—×¡×•×ž×™× ×‘×§×‘×•×¦×” %1$s, דף %2$d" #. TRANS: Instructions for list of users blocked from a group. -#: actions/blockedfromgroup.php:122 msgid "A list of the users blocked from joining this group." msgstr "" #. TRANS: Form legend for unblocking a user from a group. -#: actions/blockedfromgroup.php:291 -#, fuzzy msgid "Unblock user from group" -msgstr "×ין משתמש ×›×–×”." +msgstr "לבטל חסימה של משתמש מקבוצה" #. TRANS: Button text for unblocking a user from a group. -#: actions/blockedfromgroup.php:323 msgctxt "BUTTON" msgid "Unblock" msgstr "" #. TRANS: Tooltip for button for unblocking a user from a group. #. TRANS: Description of the form to unblock a user. -#: actions/blockedfromgroup.php:327 lib/unblockform.php:78 -#, fuzzy msgid "Unblock this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "לבטל חסימת משתמש" #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. -#: actions/bookmarklet.php:51 -#, fuzzy, php-format +#, php-format msgid "Post to %s" -msgstr "תגובת עבור %s" +msgstr "לשלוח ל×תר %s" + +#. TRANS: Title for leave group page after leaving. +#. TRANS: %s$s is the leaving user's name, %2$s is the group name. +#. TRANS: Title for leave group page after leaving. +#, php-format +msgctxt "TITLE" +msgid "%1$s left group %2$s" +msgstr "" + +#. TRANS: Client error displayed when trying to leave a group without specifying an ID. +#. TRANS: Client error displayed when trying to unsubscribe without providing a profile ID. +msgid "No profile ID in request." +msgstr "×œ× ×”×ª×‘×§×© ×ישור!" + +#. TRANS: Client error displayed when trying to leave a non-existing group. +#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. +#. TRANS: Client error displayed when specifying an invalid profile ID on the Make Admin page. +#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. +#. TRANS: Client error displayed when referring to non-existing profile ID. +#. TRANS: Client error displayed when trying to unsubscribe while providing a non-existing profile ID. +#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on. +msgid "No profile with that ID." +msgstr "" + +#. TRANS: Title after unsubscribing from a group. +msgctxt "TITLE" +msgid "Unsubscribed" +msgstr "" #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. -#: actions/confirmaddress.php:74 msgid "No confirmation code." msgstr "×ין קוד ×ישור." #. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action. -#: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." #. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action. -#: actions/confirmaddress.php:86 msgid "That confirmation code is not for you!" msgstr "קוד ×”×ישור ×”×–×” ×ינו מיועד לך!" -#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:92 -#, fuzzy, php-format -msgid "Unrecognized address type %s." +#. TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim') +#, php-format +msgid "Unrecognized address type %s" msgstr "סוג ×œ× ×ž×–×•×”×” של כתובת %s" #. TRANS: Client error for an already confirmed email/jabber/sms address. -#: actions/confirmaddress.php:97 +#. TRANS: Client error for an already confirmed IM address. msgid "That address has already been confirmed." msgstr "כתובת זו כבר ×ושרה." -#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. -#. TRANS: Server error thrown on database error updating e-mail preferences. -#. TRANS: Server error thrown on database error removing a registered e-mail address. -#. TRANS: Server error thrown on database error updating IM preferences. +#. TRANS: Server error displayed when updating IM preferences fails. #. TRANS: Server error thrown on database error removing a registered IM address. -#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server error thrown when user profile settings could not be updated. -#. TRANS: Server error thrown on database error updating SMS preferences. -#. TRANS: Server error thrown on database error removing a registered SMS phone number. -#: actions/confirmaddress.php:118 actions/emailsettings.php:359 -#: actions/emailsettings.php:508 actions/imsettings.php:283 -#: actions/imsettings.php:442 actions/othersettings.php:184 -#: actions/profilesettings.php:326 actions/smssettings.php:308 -#: actions/smssettings.php:464 -msgid "Couldn't update user." -msgstr "עידכון המשתמש נכשל." +msgid "Could not update user IM preferences." +msgstr "" + +#. TRANS: Server error displayed when adding IM preferences fails. +msgid "Could not insert user IM preferences." +msgstr "" #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. -#: actions/confirmaddress.php:132 msgid "Could not delete address confirmation." msgstr "" #. TRANS: Title for the contact address confirmation action. -#: actions/confirmaddress.php:150 msgid "Confirm address" msgstr "×שר" #. TRANS: Success message for the contact address confirmation action. #. TRANS: %s can be 'email', 'jabber', or 'sms'. -#: actions/confirmaddress.php:166 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "הכתובת \"%s\" ×ושרה עבור חשבונך." #. TRANS: Title for page with a conversion (multiple notices in context). -#: actions/conversation.php:96 -#, fuzzy msgid "Conversation" -msgstr "מיקו×" +msgstr "שיחה" -#. TRANS: Header on conversation page. Hidden by default (h2). -#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:229 lib/searchgroupnav.php:82 -msgid "Notices" -msgstr "הודעות" +#. TRANS: Title for conversation page. +#. TRANS: Title for page that shows a notice. +msgctxt "TITLE" +msgid "Notice" +msgstr "עדכון" #. TRANS: Client exception displayed trying to delete a user account while not logged in. -#: actions/deleteaccount.php:71 msgid "Only logged-in users can delete their account." msgstr "" #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#: actions/deleteaccount.php:77 msgid "You cannot delete your account." msgstr "" #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. -#: actions/deleteaccount.php:160 actions/deleteaccount.php:297 msgid "I am sure." -msgstr "" +msgstr "×× ×™ בטוח." #. TRANS: Notification for user about the text that must be input to be able to delete a user account. #. TRANS: %s is the text that needs to be input. -#: actions/deleteaccount.php:164 #, php-format -msgid "You must write \"%s\" exactly in the box." +msgid "You must write \"%s\" exactly in the box." msgstr "" #. TRANS: Confirmation that a user account has been deleted. -#: actions/deleteaccount.php:206 msgid "Account deleted." msgstr "" #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. msgid "Delete account" msgstr "" #. TRANS: Form text for user deletion form. -#: actions/deleteaccount.php:279 msgid "" "This will permanently delete your account data from this " "server." @@ -1723,7 +1722,6 @@ msgstr "" #. TRANS: Additional form text for user deletion form shown if a user has account backup rights. #. TRANS: %s is a URL to the backup page. -#: actions/deleteaccount.php:285 #, php-format msgid "" "You are strongly advised to back up your data before " @@ -1731,58 +1729,45 @@ msgid "" msgstr "" #. TRANS: Field label for delete account confirmation entry. -#: actions/deleteaccount.php:300 actions/passwordsettings.php:112 -#: actions/recoverpassword.php:239 actions/register.php:441 +#. TRANS: Field label for password reset form where the password has to be typed again. msgid "Confirm" msgstr "×שר" #. TRANS: Input title for the delete account field. #. TRANS: %s is the text that needs to be input. -#: actions/deleteaccount.php:304 #, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "" #. TRANS: Button title for user account deletion. -#: actions/deleteaccount.php:323 msgid "Permanently delete your account" msgstr "" #. TRANS: Client error displayed trying to delete an application while not logged in. -#: actions/deleteapplication.php:62 -#, fuzzy msgid "You must be logged in to delete an application." -msgstr "עידכון המשתמש נכשל." +msgstr "צריך להיכנס כדי למחוק יישו×." #. TRANS: Client error displayed trying to delete an application that does not exist. -#: actions/deleteapplication.php:71 msgid "Application not found." msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." #. TRANS: Client error displayed trying to delete an application the current user does not own. #. TRANS: Client error displayed trying to edit an application while not being its owner. -#: actions/deleteapplication.php:79 actions/editapplication.php:78 -#: actions/showapplication.php:94 -#, fuzzy +#. TRANS: Client error displayed trying to display an OAuth application for which the logged in user is not the owner. msgid "You are not the owner of this application." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך ×”×‘×¢×œ×™× ×©×œ ×”×™×™×©×•× ×”×–×”." +#. TRANS: Client error displayed when the session token does not match or is not given. #. TRANS: Client error text when there is a problem with the session token. -#: actions/deleteapplication.php:102 actions/editapplication.php:131 -#: actions/newapplication.php:114 actions/showapplication.php:118 -#: lib/action.php:1409 msgid "There was a problem with your session token." msgstr "" #. TRANS: Title for delete application page. #. TRANS: Fieldset legend on delete application page. -#: actions/deleteapplication.php:124 actions/deleteapplication.php:149 -#, fuzzy msgid "Delete application" -msgstr "×ין הודעה כזו." +msgstr "מחיקת יישו×" #. TRANS: Confirmation text on delete application page. -#: actions/deleteapplication.php:152 msgid "" "Are you sure you want to delete this application? This will clear all data " "about the application from the database, including all existing user " @@ -1790,56 +1775,39 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when deleting an application. -#: actions/deleteapplication.php:161 -#, fuzzy -msgid "Do not delete this application" -msgstr "×ין הודעה כזו." +msgid "Do not delete this application." +msgstr "" #. TRANS: Submit button title for 'Yes' when deleting an application. -#: actions/deleteapplication.php:167 -#, fuzzy -msgid "Delete this application" -msgstr "ת×ר ×ת עצמך ו×ת נוש××™ העניין שלך ב-140 ×ותיות" +msgid "Delete this application." +msgstr "" #. TRANS: Client error when trying to delete group while not logged in. -#: actions/deletegroup.php:64 msgid "You must be logged in to delete a group." msgstr "" -#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group. -#: actions/deletegroup.php:94 actions/joingroup.php:88 -#: actions/leavegroup.php:88 -#, fuzzy -msgid "No nickname or ID." -msgstr "×ין כינוי" - #. TRANS: Client error when trying to delete a group without having the rights to delete it. -#: actions/deletegroup.php:107 msgid "You are not allowed to delete this group." msgstr "" #. TRANS: Server error displayed if a group could not be deleted. #. TRANS: %s is the name of the group that could not be deleted. -#: actions/deletegroup.php:150 #, php-format msgid "Could not delete group %s." msgstr "" #. TRANS: Message given after deleting a group. #. TRANS: %s is the deleted group's name. -#: actions/deletegroup.php:159 #, php-format msgid "Deleted group %s" msgstr "" #. TRANS: Title of delete group page. #. TRANS: Form legend for deleting a group. -#: actions/deletegroup.php:176 actions/deletegroup.php:202 msgid "Delete group" msgstr "" #. TRANS: Warning in form for deleleting a group. -#: actions/deletegroup.php:206 msgid "" "Are you sure you want to delete this group? This will clear all data about " "the group from the database, without a backup. Public posts to this group " @@ -1847,31 +1815,14 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when deleting a group. -#: actions/deletegroup.php:224 -msgid "Do not delete this group" +msgid "Do not delete this group." msgstr "" #. TRANS: Submit button title for 'Yes' when deleting a group. -#: actions/deletegroup.php:231 -msgid "Delete this group" +msgid "Delete this group." msgstr "" -#. TRANS: Error message displayed trying to delete a notice while not logged in. -#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in. -#. TRANS: Client error displayed trying a change a subscription while not logged in. -#. TRANS: Client error message thrown when trying to access the admin panel while not logged in. -#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69 -#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88 -#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96 -#: actions/tagother.php:33 actions/unsubscribe.php:52 -#: lib/adminpanelaction.php:71 lib/profileformaction.php:64 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "×œ× ×ž×—×•×‘×¨." - #. TRANS: Instructions for deleting a notice. -#: actions/deletenotice.php:110 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -1879,455 +1830,301 @@ msgstr "" #. TRANS: Page title when deleting a notice. #. TRANS: Fieldset legend for the delete notice form. -#: actions/deletenotice.php:117 actions/deletenotice.php:148 -#, fuzzy msgid "Delete notice" -msgstr "הודעה חדשה" +msgstr "מחיקת עדכון" #. TRANS: Message for the delete notice form. -#: actions/deletenotice.php:152 msgid "Are you sure you want to delete this notice?" msgstr "" #. TRANS: Submit button title for 'No' when deleting a notice. -#: actions/deletenotice.php:159 -#, fuzzy -msgid "Do not delete this notice" -msgstr "×ין הודעה כזו." +msgid "Do not delete this notice." +msgstr "×œ× ×œ×ž×—×•×§ ×ת העדכון ×”×–×”." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#: actions/deletenotice.php:166 lib/noticelist.php:673 -msgid "Delete this notice" -msgstr "" +msgid "Delete this notice." +msgstr "למחוק ×ת העדכון ×”×–×”." -#: actions/deleteuser.php:67 -#, fuzzy +#. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." -msgstr "עידכון המשתמש נכשל." +msgstr "×ינך יכול למחוק משתמשי×." -#: actions/deleteuser.php:74 -#, fuzzy +#. TRANS: Client error displayed when trying to delete a non-local user. msgid "You can only delete local users." -msgstr "ניתן להשתמש במנוי המקומי!" +msgstr "×תה יכול למחוק רק ×ž×©×ª×ž×©×™× ×ž×§×•×ž×™×™×." -#: actions/deleteuser.php:110 actions/deleteuser.php:133 -#, fuzzy +#. TRANS: Title of delete user page. +msgctxt "TITLE" msgid "Delete user" -msgstr "מחק" +msgstr "למחוק משתמש" -#: actions/deleteuser.php:136 +#. TRANS: Fieldset legend on delete user page. +msgid "Delete user" +msgstr "מחיקת משתמש" + +#. TRANS: Information text to request if a user is certain that the described action has to be performed. msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." msgstr "" +#. TRANS: Submit button title for 'No' when deleting a user. +msgid "Do not delete this user." +msgstr "" + #. TRANS: Submit button title for 'Yes' when deleting a user. -#: actions/deleteuser.php:163 lib/deleteuserform.php:77 -#, fuzzy -msgid "Delete this user" -msgstr "×ין משתמש ×›×–×”." - -#. TRANS: Message used as title for design settings for the site. -#. TRANS: Link description in user account settings menu. -#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134 -msgid "Design" +msgid "Delete this user." msgstr "" -#: actions/designadminpanel.php:74 -msgid "Design settings for this StatusNet site" -msgstr "" - -#: actions/designadminpanel.php:335 -#, fuzzy -msgid "Invalid logo URL." -msgstr "גודל ×œ× ×—×•×§×™." - -#: actions/designadminpanel.php:340 -msgid "Invalid SSL logo URL." -msgstr "" - -#: actions/designadminpanel.php:344 -#, fuzzy, php-format -msgid "Theme not available: %s." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" - -#: actions/designadminpanel.php:448 -msgid "Change logo" -msgstr "שנה" - -#: actions/designadminpanel.php:453 -#, fuzzy -msgid "Site logo" -msgstr "הודעה חדשה" - -#: actions/designadminpanel.php:457 -msgid "SSL logo" -msgstr "" - -#: actions/designadminpanel.php:469 -#, fuzzy -msgid "Change theme" -msgstr "שנה" - -#: actions/designadminpanel.php:486 -#, fuzzy -msgid "Site theme" -msgstr "הודעה חדשה" - -#: actions/designadminpanel.php:487 -msgid "Theme for the site." -msgstr "" - -#: actions/designadminpanel.php:493 -#, fuzzy -msgid "Custom theme" -msgstr "הודעה חדשה" - -#: actions/designadminpanel.php:497 -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend on profile design page. -#: actions/designadminpanel.php:512 lib/designsettings.php:98 -msgid "Change background image" -msgstr "" - -#. TRANS: Label on profile design page for setting a profile page background colour. -#: actions/designadminpanel.php:517 actions/designadminpanel.php:600 -#: lib/designsettings.php:183 -msgid "Background" -msgstr "" - -#: actions/designadminpanel.php:522 -#, fuzzy, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "×–×” ×רוך מידי. ×ורך מירבי להודעה ×”×•× 140 ×ותיות." - -#. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:553 -msgid "On" -msgstr "" - -#. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:570 -msgid "Off" -msgstr "" - -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -#: actions/designadminpanel.php:571 lib/designsettings.php:159 -msgid "Turn background image on or off." -msgstr "" - -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#: actions/designadminpanel.php:576 lib/designsettings.php:165 -msgid "Tile background image" -msgstr "" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -#: actions/designadminpanel.php:590 lib/designsettings.php:175 -#, fuzzy -msgid "Change colours" -msgstr "שנה סיסמה" - -#. TRANS: Label on profile design page for setting a profile page content colour. -#: actions/designadminpanel.php:613 lib/designsettings.php:197 -#, fuzzy -msgid "Content" -msgstr "התחבר" - -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -#: actions/designadminpanel.php:626 lib/designsettings.php:211 -#, fuzzy -msgid "Sidebar" -msgstr "חיפוש" - -#. TRANS: Label on profile design page for setting a profile page text colour. -#: actions/designadminpanel.php:639 lib/designsettings.php:225 -msgid "Text" -msgstr "טקסט" - -#. TRANS: Label on profile design page for setting a profile page links colour. -#: actions/designadminpanel.php:652 lib/designsettings.php:239 -#, fuzzy -msgid "Links" -msgstr "היכנס" - -#: actions/designadminpanel.php:677 -msgid "Advanced" -msgstr "" - -#: actions/designadminpanel.php:681 -msgid "Custom CSS" -msgstr "" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -#: actions/designadminpanel.php:702 lib/designsettings.php:257 -msgid "Use defaults" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:703 lib/designsettings.php:259 -msgid "Restore default designs" -msgstr "" - -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:709 lib/designsettings.php:267 -msgid "Reset back to default" -msgstr "" - -#. TRANS: Submit button title. -#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -#: actions/snapshotadminpanel.php:245 actions/tagother.php:154 -#: lib/applicationeditform.php:357 -msgid "Save" -msgstr "שמור" - -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:712 lib/designsettings.php:272 -msgid "Save design" -msgstr "" - -#: actions/disfavor.php:81 +#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "" -#: actions/disfavor.php:94 -#, fuzzy +#. TRANS: Title for page on which favorites can be added. msgid "Add to favorites" -msgstr "מועדפי×" +msgstr "הוספה למועדפי×" -#: actions/doc.php:158 +#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist. +#. TRANS: %s is the non-existing document. #, php-format -msgid "No such document \"%s\"" -msgstr "×ין הודעה כזו." +msgid "No such document \"%s\"." +msgstr "" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. -#: actions/editapplication.php:54 lib/applicationeditform.php:129 msgid "Edit application" msgstr "" #. TRANS: Client error displayed trying to edit an application while not logged in. -#: actions/editapplication.php:66 msgid "You must be logged in to edit an application." msgstr "" #. TRANS: Client error displayed trying to edit an application that does not exist. -#: actions/editapplication.php:83 actions/showapplication.php:87 -#, fuzzy +#. TRANS: Client error displayed trying to display a non-existing OAuth application. msgid "No such application." -msgstr "×ין הודעה כזו." +msgstr "×ין ×™×™×©×•× ×›×–×”." #. TRANS: Instructions for "Edit application" form. -#: actions/editapplication.php:167 msgid "Use this form to edit your application." msgstr "" #. TRANS: Validation error shown when not providing a name in the "Edit application" form. -#: actions/editapplication.php:184 actions/newapplication.php:163 +#. TRANS: Validation error shown when not providing a name in the "New application" form. msgid "Name is required." msgstr "" #. TRANS: Validation error shown when providing too long a name in the "Edit application" form. -#: actions/editapplication.php:188 actions/newapplication.php:169 +#. TRANS: Validation error shown when providing too long a name in the "New application" form. msgid "Name is too long (maximum 255 characters)." msgstr "" #. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form. -#: actions/editapplication.php:192 actions/newapplication.php:166 -#, fuzzy +#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form. msgid "Name already in use. Try another one." -msgstr "כינוי ×–×” כבר תפוס. נסה כינוי ×חר." +msgstr "×”×©× ×›×‘×¨ בשימוש. נסה ×©× ×חר." #. TRANS: Validation error shown when not providing a description in the "Edit application" form. -#: actions/editapplication.php:196 actions/newapplication.php:172 +#. TRANS: Validation error shown when not providing a description in the "New application" form. msgid "Description is required." msgstr "ההרשמה נדחתה" #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. -#: actions/editapplication.php:208 msgid "Source URL is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form. -#: actions/editapplication.php:215 actions/newapplication.php:193 -#, fuzzy +#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form. msgid "Source URL is not valid." -msgstr "ל×תר הבית יש כתובת ×œ× ×—×•×§×™×ª." +msgstr "כתובת המקור ××™× ×” תקינה." #. TRANS: Validation error shown when not providing an organisation in the "Edit application" form. -#: actions/editapplication.php:219 actions/newapplication.php:196 +#. TRANS: Validation error shown when not providing an organisation in the "New application" form. msgid "Organization is required." msgstr "" #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#: actions/editapplication.php:223 actions/newapplication.php:199 msgid "Organization is too long (maximum 255 characters)." msgstr "" -#: actions/editapplication.php:226 actions/newapplication.php:202 +#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. +#. TRANS: Form validation error show when an organisation name has not been provided in the new application form. msgid "Organization homepage is required." msgstr "" #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. -#: actions/editapplication.php:237 actions/newapplication.php:214 +#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. msgid "Callback is too long." msgstr "" #. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form. -#: actions/editapplication.php:245 actions/newapplication.php:223 +#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form. msgid "Callback URL is not valid." msgstr "" #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. -#: actions/editapplication.php:282 -#, fuzzy msgid "Could not update application." -msgstr "עידכון המשתמש נכשל." +msgstr "עדכון ×”×™×™×©×•× × ×›×©×œ." #. TRANS: Title for form to edit a group. %s is a group nickname. -#: actions/editgroup.php:55 #, php-format msgid "Edit %s group" msgstr "" #. TRANS: Client error displayed trying to edit a group while not logged in. +#. TRANS: Client error displayed when trying to create a group while not logged in. #. TRANS: Client error displayed trying to create a group while not logged in. -#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" -#. TRANS: Client error displayed trying to edit a group while not being a group admin. -#: actions/editgroup.php:110 actions/editgroup.php:176 -#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 -msgid "You must be an admin to edit the group." -msgstr "" - #. TRANS: Form instructions for group edit form. -#: actions/editgroup.php:161 msgid "Use this form to edit the group." msgstr "" #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. -#: actions/editgroup.php:239 actions/newgroup.php:186 -#, fuzzy, php-format +#. TRANS: %s is the invalid alias. +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "כתובת ×תר הבית '%s' ××™× ×” חוקית" - -#. TRANS: Server error displayed when editing a group fails. -#: actions/editgroup.php:272 -#, fuzzy -msgid "Could not update group." -msgstr "עידכון המשתמש נכשל." - -#. TRANS: Server error displayed when group aliases could not be added. -#. TRANS: Server exception thrown when creating group aliases failed. -#: actions/editgroup.php:279 classes/User_group.php:534 -msgid "Could not create aliases." -msgstr "עידכון המשתמש נכשל." +msgstr "כינוי ×œ× ×ª×§×™×Ÿ: \"%s\"" #. TRANS: Group edit form success message. -#: actions/editgroup.php:296 -#, fuzzy +#. TRANS: Edit list form success message. msgid "Options saved." -msgstr "ההגדרות נשמרו." +msgstr "×”×פשרויות נשמרו." + +#. TRANS: Title for edit list page after deleting a tag. +#. TRANS: %s is a list. +#, php-format +msgid "Delete %s list" +msgstr "" + +#. TRANS: Title for edit list page. +#. TRANS: %s is a list. +#. TRANS: Form legend for list edit form. +#. TRANS: %s is a list. +#, php-format +msgid "Edit list %s" +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. +msgid "No tagger or ID." +msgstr "" + +#. TRANS: Client error displayed when referring to non-local user. +msgid "Not a local user." +msgstr "×–×” ×œ× ×ž×©×ª×ž×© מקומי." + +#. TRANS: Client error displayed when reting to edit a tag that was not self-created. +msgid "You must be the creator of the tag to edit it." +msgstr "" + +#. TRANS: Form instruction for edit list form. +msgid "Use this form to edit the list." +msgstr "" + +#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. +msgid "Delete aborted." +msgstr "" + +#. TRANS: Text in confirmation dialog for deleting a tag. +msgid "" +"Deleting this tag will permanantly remove all its subscription and " +"membership records. Do you still want to continue?" +msgstr "" + +#. TRANS: Form validation error displayed if a given tag is invalid. +msgid "Invalid tag." +msgstr "תג ×œ× ×ª×§×™×Ÿ." + +#. TRANS: Form validation error displayed if a given tag is already present. +#. TRANS: %s is the already present tag. +#, php-format +msgid "You already have a tag named %s." +msgstr "" + +#. TRANS: Text in confirmation dialog for setting a tag from public to private. +msgid "" +"Setting a public tag as private will permanently remove all the existing " +"subscriptions to it. Do you still want to continue?" +msgstr "" + +#. TRANS: TRANS: Server error displayed when updating a list fails. +msgid "Could not update list." +msgstr "" #. TRANS: Title for e-mail settings. -#: actions/emailsettings.php:61 -#, fuzzy msgid "Email settings" -msgstr "הגדרות הפרופיל" +msgstr "הגדרות דו×ר ×לקטרוני" #. TRANS: E-mail settings page instructions. #. TRANS: %%site.name%% is the name of the site. -#: actions/emailsettings.php:76 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "" #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. -#: actions/emailsettings.php:107 actions/emailsettings.php:133 -#, fuzzy msgid "Email address" -msgstr "כתובת ×ž×¡×¨×™× ×ž×™×“×™×™×" +msgstr "כתובת דו×ר ×לקטרוני" #. TRANS: Form note in e-mail settings form. -#: actions/emailsettings.php:113 -#, fuzzy msgid "Current confirmed email address." -msgstr "כתובת מ×ושרת נוכחית של Jabber/GTalk." +msgstr "כתובת דו×ר ×לקטרוני מ×ושרת נוכחית." #. TRANS: Button label to remove a confirmed e-mail address. #. TRANS: Button label for removing a set sender e-mail address to post notices from. #. TRANS: Button label to remove a confirmed IM address. #. TRANS: Button label to remove a confirmed SMS address. #. TRANS: Button label for removing a set sender SMS e-mail address to post notices from. -#: actions/emailsettings.php:116 actions/emailsettings.php:183 -#: actions/imsettings.php:116 actions/smssettings.php:124 -#: actions/smssettings.php:180 +#. TRANS: Button text to untag a profile. msgctxt "BUTTON" msgid "Remove" msgstr "שיחזור" -#: actions/emailsettings.php:123 -#, fuzzy +#. TRANS: Form note in e-mail settings form. msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"מחכה ל×ישור כתובת זו. בדוק ×ת חשבון ×”-Jabber/GTalk שלך לקבלת מסר ×¢× ×”×•×¨×ות " -"נוספותץ (×”×× ×”×•×¡×¤×ª ×ת %s לרשימת ×”×—×‘×¨×™× ×©×œ×š?)" +"מחכה ל×ימות כתובת זו. בדוק ×ת תיבת הדו×ר הנכנס שלך (ו×ת תיבת דו×ר הזבל!) " +"להודעה ×¢× ×”×•×¨×ות להמשך העבודה." #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for #. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt. #. TRANS: Any other domain may be owned by a legitimate person or #. TRANS: organization. -#: actions/emailsettings.php:140 msgid "Email address, like \"UserName@example.org\"" msgstr "" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 -#, fuzzy +#. TRANS: Button text to tag a profile. msgctxt "BUTTON" msgid "Add" -msgstr "הוסף" +msgstr "הוספה" #. TRANS: Form legend for incoming e-mail settings form. #. TRANS: Form legend for incoming SMS settings form. -#: actions/emailsettings.php:152 actions/smssettings.php:171 msgid "Incoming email" msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:158 msgid "I want to post notices by email." msgstr "" #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. -#: actions/emailsettings.php:180 actions/smssettings.php:178 msgid "Send email to this address to post new notices." msgstr "" #. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned. #. TRANS: Instructions for incoming SMS e-mail address input form. -#: actions/emailsettings.php:189 actions/smssettings.php:186 msgid "Make a new email address for posting to; cancels the old one." msgstr "" #. TRANS: Instructions for incoming e-mail address input form. -#: actions/emailsettings.php:193 msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" @@ -2335,352 +2132,310 @@ msgstr "" #. TRANS: Button label for adding an e-mail address to send notices from. #. TRANS: Button label for adding an SMS e-mail address to send notices from. -#: actions/emailsettings.php:199 actions/smssettings.php:189 -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "חדש" #. TRANS: Form legend for e-mail preferences form. -#: actions/emailsettings.php:208 -#, fuzzy msgid "Email preferences" -msgstr "העדפות" +msgstr "העדפות דו×ר ×לקטרוני" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:216 -#, fuzzy msgid "Send me notices of new subscriptions through email." -msgstr "שלח לי הודעות דרך Jabber/GTalk." +msgstr "לשלוח לי הודעות על × ×¨×©×ž×™× ×—×“×©×™× ×‘×“×•×ר ×לקטרוני." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:222 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:229 msgid "Send me email when someone sends me a private message." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:235 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:241 msgid "Allow friends to nudge me and send me an email." -msgstr "" +msgstr "ל×פשר ×œ×—×‘×¨×™× ×œ×“×—×•×£ ×ותי ולשלוח לי דו×״ל." #. TRANS: Checkbox label in e-mail preferences form. -#: actions/emailsettings.php:247 msgid "Publish a MicroID for my email address." msgstr "" #. TRANS: Confirmation message for successful e-mail preferences save. -#: actions/emailsettings.php:368 -#, fuzzy msgid "Email preferences saved." -msgstr "העדפות נשמרו." +msgstr "העדפות דו×ר ×לקטרוני נשמרו." #. TRANS: Message given saving e-mail address without having provided one. -#: actions/emailsettings.php:388 msgid "No email address." msgstr "" #. TRANS: Message given saving e-mail address that cannot be normalised. -#: actions/emailsettings.php:396 -#, fuzzy -msgid "Cannot normalize that email address" -msgstr "×œ× × ×™×ª×Ÿ לנרמל ×ת זהות ×”-Jabber ×”×–×”" +msgid "Cannot normalize that email address." +msgstr "" #. TRANS: Message given saving e-mail address that not valid. -#: actions/emailsettings.php:401 actions/register.php:212 -#: actions/siteadminpanel.php:144 -#, fuzzy +#. TRANS: Form validation error displayed when trying to register without a valid e-mail address. +#. TRANS: Client error displayed trying to save site settings without a valid contact address. msgid "Not a valid email address." -msgstr "×©× ×ž×©×ª×ž×© ×œ× ×—×•×§×™." +msgstr "כתובת דו×ר ×לקטרוני ×œ× ×ª×§×™× ×”." #. TRANS: Message given saving e-mail address that is already set. -#: actions/emailsettings.php:405 -#, fuzzy msgid "That is already your email address." -msgstr "זהו כבר זיהוי ×”-Jabber שלך." +msgstr "זוהי כבר כתובת הדו×ר ×”×לקטרוני שלך." #. TRANS: Message given saving e-mail address that is already set for another user. -#: actions/emailsettings.php:409 -#, fuzzy msgid "That email address already belongs to another user." -msgstr "זיהוי ×”-Jabber כבר שייך למשתמש ×חר." +msgstr "כתובת הדו×ר ×”×לקטרוני ×”×–×ת כבר שייכת למשתמש ×חר." #. TRANS: Server error thrown on database error adding e-mail confirmation code. -#. TRANS: Server error thrown on database error adding IM confirmation code. +#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code. #. TRANS: Server error thrown on database error adding SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." -msgstr "הכנסת קוד ×”×ישור נכשלה." +msgid "Could not insert confirmation code." +msgstr "" #. TRANS: Message given saving valid e-mail address that is to be confirmed. -#: actions/emailsettings.php:433 -#, fuzzy msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" -"קוד ×ישור נשלח ×ל כתובת ×”×ž×¡×¨×™× ×”×ž×™×“×™×™× ×©×”×•×¡×¤×ª. עליך ל×שר ×ת %s לשליחת ×ž×¡×¨×™× " -"×ž×™×“×™×™× ×ליך." +"קוד ×ימות נשלח ×ל כתובת הדו×ר ×”×לקטרוני שהוספת. חפש בתיבת הדו×ר הנכנס שלך " +"(ובתיבת דו×ר הזבל!) ×ת הקוד ו×ת ההור×ות לשימוש בו." #. TRANS: Message given canceling e-mail address confirmation that is not pending. -#. TRANS: Message given canceling IM address confirmation that is not pending. +#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. -#: actions/emailsettings.php:454 actions/imsettings.php:386 -#: actions/smssettings.php:408 msgid "No pending confirmation to cancel." msgstr "×ין ×ישור ממתין שניתן לבטל." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#: actions/emailsettings.php:459 -#, fuzzy msgid "That is the wrong email address." -msgstr "זוהי כתובת ×ž×¡×¨×™× ×ž×™×“×™×™× ×©×’×•×™×”." +msgstr "כתובת הדו×ר ×”×לקטרוני ×”×–×ת שגויה." #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. -#: actions/emailsettings.php:468 actions/smssettings.php:422 -#, fuzzy -msgid "Couldn't delete email confirmation." -msgstr "הכנסת קוד ×”×ישור נכשלה." +msgid "Could not delete email confirmation." +msgstr "" #. TRANS: Message given after successfully canceling e-mail address confirmation. -#: actions/emailsettings.php:473 msgid "Email confirmation cancelled." msgstr "×ין ×ישור ממתין שניתן לבטל." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. -#: actions/emailsettings.php:493 -#, fuzzy msgid "That is not your email address." -msgstr "זוהי כתובת ×ž×¡×¨×™× ×ž×™×“×™×™× ×©×’×•×™×”." +msgstr "כתובת הדו×ר ×”×לקטרוני ×”×–×ת ××™× ×” שלך." #. TRANS: Message given after successfully removing a registered e-mail address. -#: actions/emailsettings.php:514 msgid "The email address was removed." msgstr "כתובת זו כבר ×ושרה." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. msgid "No incoming email address." msgstr "" #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. -#: actions/emailsettings.php:540 actions/emailsettings.php:565 -#: actions/smssettings.php:578 actions/smssettings.php:602 -#, fuzzy -msgid "Couldn't update user record." -msgstr "עידכון המשתמש נכשל." +#. TRANS: Server error displayed when the user could not be updated in SMS settings. +msgid "Could not update user record." +msgstr "" #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:544 actions/smssettings.php:581 +#. TRANS: Confirmation text after updating SMS settings. msgid "Incoming email address removed." msgstr "" #. TRANS: Message given after successfully adding an incoming e-mail address. -#: actions/emailsettings.php:569 actions/smssettings.php:605 +#. TRANS: Confirmation text after updating SMS settings. msgid "New incoming email address added." msgstr "" -#: actions/favor.php:79 +#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. msgid "This notice is already a favorite!" msgstr "" -#: actions/favor.php:92 lib/disfavorform.php:144 -msgid "Disfavor favorite" +#. TRANS: Page title for page on which favorite notices can be unfavourited. +msgid "Disfavor favorite." msgstr "" -#: actions/favorited.php:65 lib/popularnoticesection.php:62 -#: lib/publicgroupnav.php:93 -#, fuzzy +#. TRANS: Page title for first page of favorited notices. +#. TRANS: Title for favourited notices section. +#. TRANS: Menu item title in search group navigation panel. msgid "Popular notices" -msgstr "×ין הודעה כזו." +msgstr "×¢×“×›×•× ×™× ×¤×•×¤×•×œ×¨×™×™×" -#: actions/favorited.php:67 -#, fuzzy, php-format +#. TRANS: Page title for all but first page of favorited notices. +#. TRANS: %d is the page number being displayed. +#, php-format msgid "Popular notices, page %d" -msgstr "×ין הודעה כזו." +msgstr "×¢×“×›×•× ×™× ×¤×•×¤×•×œ×¨×™×™×, עמוד %d" -#: actions/favorited.php:79 +#. TRANS: Description on page displaying favorited notices. msgid "The most popular notices on the site right now." msgstr "" -#: actions/favorited.php:150 +#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices. msgid "Favorite notices appear on this page but no one has favorited one yet." msgstr "" -#: actions/favorited.php:153 +#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users. msgid "" "Be the first to add a notice to your favorites by clicking the fave button " "next to any notice you like." msgstr "" -#: actions/favorited.php:156 +#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users. +#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting. #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" -#: actions/favoritesrss.php:111 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:118 +#. TRANS: Title of RSS feed with favourite notices of a user. +#. TRANS: %s is a user's nickname. +#. TRANS: Title for first page of favourite notices of a user. +#. TRANS: %s is the user for whom the favourite notices are displayed. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "%s's favorite notices" msgstr "" -#: actions/favoritesrss.php:115 -#, fuzzy, php-format +#. TRANS: Desciption of RSS feed with favourite notices of a user. +#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site. +#, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "מיקרובלוג מ×ת %s" +msgstr "×¢×“×›×•× ×™× ×©×¡×•×ž× ×• ×›×ž×•×¢×“×¤×™× ×¢×œÖ¾×™×“×™ %1$s ב־%2$s!" -#: actions/featured.php:69 lib/featureduserssection.php:87 -#: lib/publicgroupnav.php:89 +#. TRANS: Page title for first page of featured users. +#. TRANS: Title for featured users section. +#. TRANS: Menu item title in search group navigation panel. msgid "Featured users" msgstr "" -#: actions/featured.php:71 +#. TRANS: Page title for all but first page of featured users. +#. TRANS: %d is the page number being displayed. #, php-format msgid "Featured users, page %d" msgstr "" -#: actions/featured.php:99 +#. TRANS: Description on page displaying featured users. #, php-format -msgid "A selection of some great users on %s" +msgid "A selection of some great users on %s." msgstr "" -#: actions/file.php:34 +#. TRANS: Client error displayed when no notice ID was given trying do display a file. msgid "No notice ID." -msgstr "×ין הודעה כזו." +msgstr "×ין מזהה עדכון." -#: actions/file.php:38 +#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file. msgid "No notice." -msgstr "×ין הודעה כזו." +msgstr "×ין עדכון." -#: actions/file.php:42 -#, fuzzy +#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement. msgid "No attachments." -msgstr "×ין מסמך ×›×–×”." +msgstr "×ין צרופות." -#: actions/file.php:51 -#, fuzzy +#. TRANS: Client error displayed when trying do display a file for a notice with file attachements +#. TRANS: that could not be found. msgid "No uploaded attachments." -msgstr "×ין מסמך ×›×–×”." +msgstr "×œ× ×”×•×¢×œ×• צרופות." -#: actions/finishremotesubscribe.php:69 +#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received. msgid "Not expecting this response!" msgstr "זו תגובה ×œ× ×¦×¤×•×™×”!" -#: actions/finishremotesubscribe.php:80 -#, fuzzy +#. TRANS: Client error displayed when subscribing to a remote profile that does not exist. msgid "User being listened to does not exist." -msgstr "המשתמש ×ליו ×תה מ×זין ×ינו ×§×™×™×." +msgstr "המשתמש ש×ליו ×תה מ×זין ×ינו ×§×™×™×." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile. +#. TRANS: Client error displayed when using remote subscribe for a local entity. msgid "You can use the local subscription!" msgstr "ניתן להשתמש במנוי המקומי!" -#: actions/finishremotesubscribe.php:99 +#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to. msgid "That user has blocked you from subscribing." msgstr "" -#: actions/finishremotesubscribe.php:110 +#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token. msgid "You are not authorized." msgstr "ההרשמה ×ושרה" -#: actions/finishremotesubscribe.php:113 -#, fuzzy +#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails. msgid "Could not convert request token to access token." msgstr "המרת ×סימון הבקשה ל×סימון גישה ×œ× ×”×¦×œ×™×—×”." -#: actions/finishremotesubscribe.php:118 -#, fuzzy +#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol. msgid "Remote service uses unknown version of OMB protocol." -msgstr "גירסה ×œ× ×ž×•×›×¨×ª של פרוטוקול OMB" +msgstr "השירות המרוחק משתמש בגרסה ×œ× ×ž×•×›×¨×ª של פרוטוקול OMB." -#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317 -#, fuzzy +#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated. +#. TRANS: Exception thrown when updating a remote profile fails in OAuth store. msgid "Error updating remote profile." -msgstr "שגי××” בעדכון פרופיל מרוחק" +msgstr "שגי××” בעדכון פרופיל מרוחק." -#: actions/getfile.php:79 -#, fuzzy +#. TRANS: Client error displayed when requesting a non-existent file. msgid "No such file." -msgstr "×ין הודעה כזו." +msgstr "×ין קובץ ×›×–×”." -#: actions/getfile.php:83 +#. TRANS: Client error displayed when requesting a file without having read access to it. msgid "Cannot read file." msgstr "שמירת הפרופיל נכשלה." -#: actions/grantrole.php:62 actions/revokerole.php:62 -#, fuzzy +#. TRANS: Client error displayed when trying to assign an invalid role to a user. +#. TRANS: Client error displayed when trying to revoke an invalid role. msgid "Invalid role." -msgstr "גודל ×œ× ×—×•×§×™." +msgstr "תפקיד ×œ× ×ª×§×™×Ÿ." -#: actions/grantrole.php:66 actions/revokerole.php:66 +#. TRANS: Client error displayed when trying to assign an reserved role to a user. +#. TRANS: Client error displayed when trying to revoke a reserved role. msgid "This role is reserved and cannot be set." msgstr "" -#: actions/grantrole.php:75 -#, fuzzy +#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles. msgid "You cannot grant user roles on this site." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך יכול להקצות ×ª×¤×§×™×“×™× ×œ×ž×©×ª×ž×©×™× ×‘×תר ×”×–×”." -#: actions/grantrole.php:82 -#, fuzzy +#. TRANS: Client error displayed when trying to assign a role to a user that already has that role. msgid "User already has this role." -msgstr "למשתמש ×ין פרופיל." +msgstr "למשתמש כבר יש תפקיד ×›×–×”." +#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. +#. TRANS: Client error displayed when not providing a profile ID on the Make Admin page. #. TRANS: Client error displayed trying a change a subscription without providing a profile. -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:49 -#: lib/profileformaction.php:79 +#. TRANS: Client error displayed when trying to change user options without specifying a user to work on. msgid "No profile specified." msgstr "" -#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile. -#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID. -#: actions/groupblock.php:76 actions/groupunblock.php:77 -#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46 -#: actions/unsubscribe.php:84 lib/profileformaction.php:86 -msgid "No profile with that ID." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:82 -#: actions/makeadmin.php:81 +#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from. +#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group. +#. TRANS: Client error displayed when not providing a group ID on the Make Admin page. msgid "No group specified." msgstr "" -#: actions/groupblock.php:91 +#. TRANS: Client error displayed trying to block a user from a group while not being an admin user. msgid "Only an admin can block group members." msgstr "" -#: actions/groupblock.php:95 -#, fuzzy +#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group. msgid "User is already blocked from group." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש כבר ×—×¡×•× ×‘×§×‘×•×¦×”." -#: actions/groupblock.php:100 -#, fuzzy +#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. msgid "User is not a member of group." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "המשתמש ×ינו חבר בקבוצה." -#: actions/groupblock.php:134 actions/groupmembers.php:364 -#, fuzzy +#. TRANS: Title for block user from group page. +#. TRANS: Form legend for form to block user from a group. msgid "Block user from group" -msgstr "×ין משתמש ×›×–×”." +msgstr "×œ×—×¡×•× ×ž×©×ª×ž×© מקבוצה." -#: actions/groupblock.php:160 +#. TRANS: Explanatory text for block user from group form before setting the block. +#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from. #, php-format msgid "" "Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " @@ -2689,196 +2444,156 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. -#: actions/groupblock.php:182 -#, fuzzy -msgid "Do not block this user from this group" -msgstr "נכשלה ההפניה לשרת: %s" +msgid "Do not block this user from this group." +msgstr "" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#: actions/groupblock.php:189 -#, fuzzy -msgid "Block this user from this group" -msgstr "×ין משתמש ×›×–×”." +msgid "Block this user from this group." +msgstr "" -#: actions/groupblock.php:206 +#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error. msgid "Database error blocking user from group." msgstr "" -#: actions/groupbyid.php:74 actions/userbyid.php:70 +#. TRANS: Client error displayed referring to a group's permalink without providing a group ID. +#. TRANS: Client error displayed trying to perform an action without providing an ID. +#. TRANS: Client error displayed trying to find a user by ID without providing an ID. msgid "No ID." msgstr "×ין זיהוי Jabber ×›×–×”." -#: actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:144 -#, fuzzy -msgid "Group design" -msgstr "קבוצות" - -#: actions/groupdesignsettings.php:155 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 -#: lib/designsettings.php:405 lib/designsettings.php:427 -#, fuzzy -msgid "Couldn't update your design." -msgstr "עידכון המשתמש נכשל." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 -#, fuzzy -msgid "Design preferences saved." -msgstr "העדפות נשמרו." - -#: actions/grouplogo.php:142 actions/grouplogo.php:195 -#, fuzzy +#. TRANS: Title for group logo settings page. +#. TRANS: Group logo form legend. msgid "Group logo" -msgstr "קבוצות" +msgstr "סמל הקבוצה" -#: actions/grouplogo.php:153 -#, fuzzy, php-format +#. TRANS: Instructions for group logo page. +#. TRANS: %s is the maximum file size for that site. +#, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." -msgstr "×–×” ×רוך מידי. ×ורך מירבי להודעה ×”×•× 140 ×ותיות." +msgstr "×פשר להעלות סמל לקבוצה שלך. גודל הקובץ המרבי ×”×•× %s." -#: actions/grouplogo.php:236 +#. TRANS: Submit button for uploading a group logo. msgid "Upload" msgstr "העל××”" -#: actions/grouplogo.php:289 -#, fuzzy +#. TRANS: Button text for cropping an uploaded group logo. msgid "Crop" -msgstr "קבוצות" +msgstr "חיתוך" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. msgid "Pick a square area of the image to be the logo." msgstr "" -#: actions/grouplogo.php:399 -#, fuzzy +#. TRANS: Form success message after updating a group logo. msgid "Logo updated." -msgstr "התמונה עודכנה." +msgstr "הסמל עודכן." -#: actions/grouplogo.php:401 -#, fuzzy +#. TRANS: Form failure message after failing to update a group logo. msgid "Failed updating logo." -msgstr "עדכון התמונה נכשל." +msgstr "עדכון הסמל נכשל." #. TRANS: Title of the page showing group members. #. TRANS: %s is the name of the group. -#: actions/groupmembers.php:102 #, php-format msgid "%s group members" msgstr "" #. TRANS: Title of the page showing group members. #. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. -#: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" msgstr "" -#: actions/groupmembers.php:122 +#. TRANS: Page notice for group members page. msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:186 -msgid "Admin" +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "Only the group admin may approve users." msgstr "" -#. TRANS: Button text for the form that will block a user from a group. -#: actions/groupmembers.php:399 -msgctxt "BUTTON" -msgid "Block" -msgstr "" - -#. TRANS: Submit button title. -#: actions/groupmembers.php:403 -msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "" - -#: actions/groupmembers.php:498 -msgid "Make user an admin of the group" -msgstr "" - -#. TRANS: Button text for the form that will make a user administrator. -#: actions/groupmembers.php:533 -msgctxt "BUTTON" -msgid "Make Admin" -msgstr "" - -#. TRANS: Submit button title. -#: actions/groupmembers.php:537 -msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" - -#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name. -#: actions/grouprss.php:142 -#, fuzzy, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "מיקרובלוג מ×ת %s" - -#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249 -#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 -msgid "Groups" -msgstr "קבוצות" - -#: actions/groups.php:64 +#. TRANS: Title of the first page showing pending group members still awaiting approval to join the group. +#. TRANS: %s is the name of the group. #, php-format +msgid "%s group members awaiting approval" +msgstr "" + +#. TRANS: Title of all but the first page showing pending group members still awaiting approval to join the group. +#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list. +#, php-format +msgid "%1$s group members awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to join this group." +msgstr "" + +#. TRANS: Message is used as link description. %1$s is a group name, %2$s is a site name. +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "×¢×“×›×•× ×™× ×ž×—×‘×¨×™ %1$s ב×תר %2$s!" + +#. TRANS: Title for first page of the groups list. +msgctxt "TITLE" +msgid "Groups" +msgstr "" + +#. TRANS: Title for all but the first page of the groups list. +#. TRANS: %d is the page number. +#, php-format +msgctxt "TITLE" msgid "Groups, page %d" msgstr "" -#: actions/groups.php:90 +#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name, +#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them. +#. TRANS: This message contains Markdown links in the form [link text](link). #, php-format msgid "" "%%%%site.name%%%% groups let you find and talk with people of similar " "interests. After you join a group you can send messages to all other members " "using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" +"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" +"%%%)!" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 -#, fuzzy +#. TRANS: Link to create a new group on the group list page. +#. TRANS: Link text on group page to create a new group. +#. TRANS: Form legend for group edit form. msgid "Create a new group" -msgstr "צור חשבון חדש" +msgstr "יצירת קבוצה חדשה" -#: actions/groupsearch.php:52 -#, fuzzy, php-format +#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site. +#, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"חפש ×× ×©×™× ×‘-%%site.name%% לפי ש×, מיקו×, ×ו תחומי עניין. הפרד בעזרת ×¨×•×•×—×™× " -"בין הביטויי×; ×¢×œ×™×”× ×œ×”×™×•×ª בני לפחות 3 ×ותיות." +"חפש קבוצות ב־%%site.name%% לפי ש×, מיקו×, ×ו תי×ור. הפרד בעזרת ×¨×•×•×—×™× ×‘×™×Ÿ " +"הביטויי×; ×¢×œ×™×”× ×œ×”×™×•×ª בני לפחות 3 ×ותיות." -#: actions/groupsearch.php:58 -#, fuzzy +#. TRANS: Title for page where groups can be searched. msgid "Group search" -msgstr "חיפוש סיסמה" +msgstr "חיפוש קבוצה" -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -#, fuzzy +#. TRANS: Text on page where groups can be searched if no results were found for a query. +#. TRANS: Text for notice search results is the query had no results. +#. TRANS: Message on the "People search" page where a query has no results. +#. TRANS: Output when there are no results for a search. msgid "No results." msgstr "×ין תוצ×ות" -#: actions/groupsearch.php:82 +#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user. +#. TRANS: This message contains Markdown links in the form [link text](link). #, php-format msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." +"If you cannot find the group you're looking for, you can [create it](%%" +"action.newgroup%%) yourself." msgstr "" -#: actions/groupsearch.php:85 +#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. +#. TRANS: This message contains Markdown links in the form [link text](link). #, php-format msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" @@ -2886,217 +2601,168 @@ msgid "" msgstr "" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. -#: actions/groupunblock.php:94 msgid "Only an admin can unblock group members." msgstr "" #. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. -#: actions/groupunblock.php:99 -#, fuzzy msgid "User is not blocked from group." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש ×ינו ×—×¡×•× ×ž×§×‘×•×¦×”" #. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error. -#: actions/groupunblock.php:131 actions/unblock.php:86 -#, fuzzy +#. TRANS: Server error displayed when removing a user block. msgid "Error removing the block." -msgstr "שגי××” בשמירת המשתמש." +msgstr "שגי××” בביטול חסימה." -#. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#. TRANS: Title for Instant Messaging settings. msgid "IM settings" msgstr "הגדרות הפרופיל" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#: actions/imsettings.php:74 #, php-format msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +"You can send and receive notices through instant messaging [instant messages]" +"(%%doc.im%%). Configure your addresses and settings below." msgstr "" -"×פשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " -"×ת כתובתך והעדפותיך למטה." -#. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 -#, fuzzy +#. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "×ž×¡×¨×™× ×ž×™×“×™×™× ××™× × ×–×ž×™× ×™×." -#. TRANS: Form legend for IM settings form. -#. TRANS: Field label for IM address input in IM settings form. -#: actions/imsettings.php:106 actions/imsettings.php:136 -#, fuzzy +#. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed. +#, php-format +msgid "Current confirmed %s address." +msgstr "" + +#. TRANS: Form note in IM settings form. +#. TRANS: %s is the IM service name, %2$s is the IM address set. +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your %1$s account for a message " +"with further instructions. (Did you add %2$s to your buddy list?)" +msgstr "" + +#. TRANS: Field label for IM address. msgid "IM address" msgstr "כתובת ×ž×¡×¨×™× ×ž×™×“×™×™×" -#: actions/imsettings.php:113 -msgid "Current confirmed Jabber/GTalk address." -msgstr "כתובת מ×ושרת נוכחית של Jabber/GTalk." - -#. TRANS: Form note in IM settings form. -#. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#. TRANS: Field title for IM address. %s is the IM service name. #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "%s screenname." msgstr "" -"מחכה ל×ישור כתובת זו. בדוק ×ת חשבון ×”-Jabber/GTalk שלך לקבלת מסר ×¢× ×”×•×¨×ות " -"נוספותץ (×”×× ×”×•×¡×¤×ª ×ת %s לרשימת ×”×—×‘×¨×™× ×©×œ×š?)" -#. TRANS: IM address input field instructions in IM settings form. -#. TRANS: %s is the IM address set for the site. -#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by -#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate -#. TRANS: person or organization. -#: actions/imsettings.php:143 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +#. TRANS: Header for IM preferences form. +msgid "IM Preferences" msgstr "" -"כתובת Jabber ×ו GTalk, כגון \"UserName@example.org\". הוסף ×ת %s ×ל רשימת " -"×”×—×‘×¨×™× ×‘×ª×•×›× ×ª ×”×”×ž×¡×¨×™× ×”×ž×™×“×™×™× ×ו GTalk שלך." - -#. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 -msgid "IM preferences" -msgstr "העדפות נשמרו." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 -msgid "Send me notices through Jabber/GTalk." -msgstr "שלח לי הודעות דרך Jabber/GTalk." +msgid "Send me notices" +msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "×¤×¨×¡× ×”×•×“×¢×” כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." +msgid "Post a notice when my status changes." +msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 -#, fuzzy -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "שלח לי הודעות דרך Jabber/GTalk." +msgid "Send me replies from people I'm not subscribed to." +msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 -#, fuzzy -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "כתובת מ×ושרת נוכחית של Jabber/GTalk." +msgid "Publish a MicroID" +msgstr "" + +#. TRANS: Server error thrown on database error updating IM preferences. +msgid "Could not update IM preferences." +msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#. TRANS: Confirmation message after saving preferences. msgid "Preferences saved." msgstr "העדפות נשמרו." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 -msgid "No Jabber ID." -msgstr "×ין זיהוי Jabber ×›×–×”." +msgid "No screenname." +msgstr "" + +#. TRANS: Form validation error when no transport is available setting an IM address. +msgid "No transport." +msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 -msgid "Cannot normalize that Jabber ID" -msgstr "×œ× × ×™×ª×Ÿ לנרמל ×ת זהות ×”-Jabber ×”×–×”" +msgid "Cannot normalize that screenname." +msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 -msgid "Not a valid Jabber ID" -msgstr "×œ× ×¢×•×ž×“ ×‘×›×œ×œ×™× ×œ×–×™×”×•×™ Jabber" - -#. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 -msgid "That is already your Jabber ID." -msgstr "זהו כבר זיהוי ×”-Jabber שלך." +msgid "Not a valid screenname." +msgstr "" #. TRANS: Message given saving IM address that is already set for another user. -#: actions/imsettings.php:333 -msgid "Jabber ID already belongs to another user." -msgstr "זיהוי ×”-Jabber כבר שייך למשתמש ×חר." +msgid "Screenname already belongs to another user." +msgstr "" #. TRANS: Message given saving valid IM address that is to be confirmed. -#. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:361 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "A confirmation code was sent to the IM address you added." msgstr "" -"קוד ×ישור נשלח ×ל כתובת ×”×ž×¡×¨×™× ×”×ž×™×“×™×™× ×©×”×•×¡×¤×ª. עליך ל×שר ×ת %s לשליחת ×ž×¡×¨×™× " -"×ž×™×“×™×™× ×ליך." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 msgid "That is the wrong IM address." msgstr "זוהי כתובת ×ž×¡×¨×™× ×ž×™×“×™×™× ×©×’×•×™×”." #. TRANS: Server error thrown on database error canceling IM address confirmation. -#: actions/imsettings.php:400 -#, fuzzy -msgid "Couldn't delete IM confirmation." -msgstr "הכנסת קוד ×”×ישור נכשלה." +msgid "Could not delete confirmation." +msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:405 msgid "IM confirmation cancelled." msgstr "×ין קוד ×ישור." #. TRANS: Message given trying to remove an IM address that is not #. TRANS: registered for the active user. -#: actions/imsettings.php:427 -msgid "That is not your Jabber ID." -msgstr "זהו ×œ× ×–×™×”×•×™ ×”-Jabber שלך." +msgid "That is not your screenname." +msgstr "" -#. TRANS: Message given after successfully removing a registered IM address. -#: actions/imsettings.php:450 -#, fuzzy +#. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." -msgstr "הכתובת הוסרה." +msgstr "כתובת ×”×ž×¡×¨×™× ×”×ž×™×“×™×™× ×”×•×¡×¨×”." -#: actions/inbox.php:59 +#. TRANS: Title for all but the first page of the inbox page. +#. TRANS: %1$s is the user's nickname, %2$s is the page number. #, php-format msgid "Inbox for %1$s - page %2$d" msgstr "" -#: actions/inbox.php:62 +#. TRANS: Title for the first page of the inbox page. +#. TRANS: %s is the user's nickname. #, php-format msgid "Inbox for %s" msgstr "" -#: actions/inbox.php:115 +#. TRANS: Instructions for user inbox page. msgid "This is your inbox, which lists your incoming private messages." msgstr "" #. TRANS: Client error displayed when trying to sent invites while they have been disabled. -#: actions/invite.php:40 msgid "Invites have been disabled." msgstr "" #. TRANS: Client error displayed when trying to sent invites while not logged in. #. TRANS: %s is the StatusNet site name. -#: actions/invite.php:44 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "עידכון המשתמש נכשל." +msgstr "צריל להיכנס לחשבון כדי להזמין ×ž×©×ª×ž×©×™× ××—×¨×™× ×œ×”×©×ª×ž×© ב×תר %s." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. -#: actions/invite.php:77 #, php-format msgid "Invalid email address: %s." msgstr "" #. TRANS: Page title when invitations have been sent. -#: actions/invite.php:116 msgid "Invitations sent" msgstr "" #. TRANS: Page title when inviting potential users. -#: actions/invite.php:119 msgid "Invite new users" msgstr "" @@ -3104,7 +2770,6 @@ msgstr "" #. TRANS: is already subscribed to one or more users with the given e-mail address(es). #. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses. #. TRANS: Followed by a bullet list. -#: actions/invite.php:139 msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" msgstr[0] "" @@ -3112,7 +2777,6 @@ msgstr[1] "" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). -#: actions/invite.php:145 actions/invite.php:159 #, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" @@ -3121,7 +2785,6 @@ msgstr "" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of #. TRANS: reported already present people. Followed by a bullet list. -#: actions/invite.php:153 msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" @@ -3131,7 +2794,6 @@ msgstr[1] "" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of #. TRANS: e-mail addresses to which invitations were sent. -#: actions/invite.php:167 msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" @@ -3139,486 +2801,423 @@ msgstr[1] "" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. -#: actions/invite.php:177 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" #. TRANS: Form instructions. -#: actions/invite.php:190 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -#. TRANS: Field label for a list of e-mail addresses. -#: actions/invite.php:217 -msgid "Email addresses" -msgstr "" - -#. TRANS: Tooltip for field label for a list of e-mail addresses. -#: actions/invite.php:220 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - -#. TRANS: Field label for a personal message to send to invitees. -#: actions/invite.php:224 -#, fuzzy -msgid "Personal message" -msgstr "הודעה חדשה" - -#. TRANS: Tooltip for field label for a personal message to send to invitees. -#: actions/invite.php:227 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#. TRANS: Send button for inviting friends -#: actions/invite.php:231 -#, fuzzy -msgctxt "BUTTON" -msgid "Send" -msgstr "שלח" - #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is #. TRANS: the StatusNet sitename. -#: actions/invite.php:263 -#, fuzzy, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s כעת מ×זין להודעות שלך ב-%2$s" - -#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral -#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the -#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the -#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link -#. TRANS: to register with the StatusNet site. -#: actions/invite.php:270 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s הזמין ×ותך להצטרף ××œ×™×”× ×‘×תר %2$s" -#: actions/joingroup.php:60 +#. TRANS: Client error displayed when trying to join a group while not logged in. msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:141 +#. TRANS: Title for join group page after joining. #, php-format +msgctxt "TITLE" msgid "%1$s joined group %2$s" msgstr "" -#: actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." +#. TRANS: Exception thrown when there is an unknown error joining a group. +msgid "Unknown error joining group." msgstr "" +#. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. -#: actions/leavegroup.php:100 lib/command.php:386 -#, fuzzy msgid "You are not a member of that group." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" - -#: actions/leavegroup.php:137 -#, fuzzy, php-format -msgid "%1$s left group %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " +msgstr "×ינך חבר בקבוצה ×”×”×™×." #. TRANS: User admin panel title -#: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" msgstr "" -#: actions/licenseadminpanel.php:67 +#. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" msgstr "" -#: actions/licenseadminpanel.php:139 +#. TRANS: Client error displayed selecting an invalid license in the license admin panel. msgid "Invalid license selection." msgstr "" -#: actions/licenseadminpanel.php:149 +#. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel. msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" -#: actions/licenseadminpanel.php:156 +#. TRANS: Client error displayed selecting a too long license title in the license admin panel. msgid "Invalid license title. Maximum length is 255 characters." msgstr "" -#: actions/licenseadminpanel.php:168 +#. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "Invalid license URL." -msgstr "" +msgstr "כתובת רישיון ×œ× ×ª×§×™× ×”." -#: actions/licenseadminpanel.php:171 +#. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "Invalid license image URL." -msgstr "" +msgstr "כתובת תמונת רישיון ×œ× ×ª×§×™× ×”." -#: actions/licenseadminpanel.php:179 +#. TRANS: Client error displayed specifying an invalid license URL in the license admin panel. msgid "License URL must be blank or a valid URL." msgstr "" -#: actions/licenseadminpanel.php:187 +#. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "License image must be blank or valid URL." msgstr "" -#: actions/licenseadminpanel.php:239 +#. TRANS: Form legend in the license admin panel. msgid "License selection" msgstr "" -#: actions/licenseadminpanel.php:245 -#, fuzzy +#. TRANS: License option in the license admin panel. +#. TRANS: Checkbox label to mark a list private. msgid "Private" -msgstr "פרטיות" +msgstr "פרטי" -#: actions/licenseadminpanel.php:246 +#. TRANS: License option in the license admin panel. msgid "All Rights Reserved" msgstr "" -#: actions/licenseadminpanel.php:247 +#. TRANS: License option in the license admin panel. msgid "Creative Commons" msgstr "" -#: actions/licenseadminpanel.php:252 +#. TRANS: Dropdown field label in the license admin panel. msgid "Type" -msgstr "" +msgstr "סוג" -#: actions/licenseadminpanel.php:254 -msgid "Select license" -msgstr "" +#. TRANS: Dropdown field instructions in the license admin panel. +msgid "Select a license." +msgstr "בחירת רישיון." -#: actions/licenseadminpanel.php:268 +#. TRANS: Form legend in the license admin panel. msgid "License details" -msgstr "" +msgstr "פרטי רישיון" -#: actions/licenseadminpanel.php:274 +#. TRANS: Field label in the license admin panel. msgid "Owner" -msgstr "" +msgstr "בעלי×" -#: actions/licenseadminpanel.php:275 +#. TRANS: Field title in the license admin panel. msgid "Name of the owner of the site's content (if applicable)." msgstr "" -#: actions/licenseadminpanel.php:283 +#. TRANS: Field label in the license admin panel. msgid "License Title" msgstr "" -#: actions/licenseadminpanel.php:284 +#. TRANS: Field title in the license admin panel. msgid "The title of the license." msgstr "" -#: actions/licenseadminpanel.php:292 +#. TRANS: Field label in the license admin panel. msgid "License URL" msgstr "" -#: actions/licenseadminpanel.php:293 +#. TRANS: Field title in the license admin panel. msgid "URL for more information about the license." msgstr "" -#: actions/licenseadminpanel.php:300 +#. TRANS: Field label in the license admin panel. msgid "License Image URL" msgstr "" -#: actions/licenseadminpanel.php:301 +#. TRANS: Field title in the license admin panel. msgid "URL for an image to display with the license." msgstr "" -#: actions/licenseadminpanel.php:319 -msgid "Save license settings" +#. TRANS: Button title in the license admin panel. +msgid "Save license settings." msgstr "" -#: actions/login.php:102 actions/otp.php:62 actions/register.php:144 +#. TRANS: Client error displayed when trying to log in while already logged in. +#. TRANS: Client error displayed trying to use "one time password login" when already logged in. +#. TRANS: Client error displayed when trying to register while already logged in. msgid "Already logged in." msgstr "כבר מחובר." -#: actions/login.php:148 +#. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." -msgstr "×©× ×ž×©×ª×ž×© ×ו סיסמה ×œ× × ×›×•× ×™×." +msgstr "×©× ×ž×©×ª×ž×© ×ו ססמה ×œ× × ×›×•× ×™×." -#: actions/login.php:154 actions/otp.php:120 -#, fuzzy +#. TRANS: Server error displayed when during login a server error occurs. +#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login". msgid "Error setting user. You are probably not authorized." -msgstr "×œ× ×ž×•×¨×©×”." +msgstr "שגי××” בשליחת משתמש. כנר××” ×ין לך ×ישור לכך." -#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79 +#. TRANS: Page title for login page. msgid "Login" msgstr "היכנס" -#: actions/login.php:249 +#. TRANS: Form legend on login page. msgid "Login to site" msgstr "" -#: actions/login.php:258 actions/register.php:491 +#. TRANS: Field label on login page. +msgid "Username or email address" +msgstr "" + +#. TRANS: Checkbox label label on login page. +#. TRANS: Checkbox label on account registration page. msgid "Remember me" msgstr "זכור ×ותי" -#: actions/login.php:259 actions/register.php:493 +#. TRANS: Checkbox title on login page. +#. TRANS: Checkbox title on account registration page. msgid "Automatically login in the future; not for shared computers!" msgstr "בעתיד התחבר ×וטומטית; ×œ× ×œ×©×™×ž×•×© ×‘×ž×—×©×‘×™× ×¦×™×‘×•×¨×™×™×!" -#: actions/login.php:269 -msgid "Lost or forgotten password?" -msgstr "שכחת ×ו ×יבדת ×ת הסיסמה?" +#. TRANS: Button text for log in on login page. +msgctxt "BUTTON" +msgid "Login" +msgstr "" -#: actions/login.php:288 +#. TRANS: Link text for link to "reset password" on login page. +msgid "Lost or forgotten password?" +msgstr "ססמה נשכחה ×ו הלכה ל×יבוד?" + +#. TRANS: Form instructions on login page before being able to change user settings. msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." -msgstr "לצרכי ×בטחה, הכנס מחדש ×ת ×©× ×”×ž×©×ª×ž×© והסיסמה לפני שתשנה ×ת ההגדרות." +msgstr "לצורכי ×בטחה, הכנס מחדש ×ת ×©× ×”×ž×©×ª×ž×© והססמה לפני שתשנה ×ת ההגדרות." -#: actions/login.php:292 +#. TRANS: Form instructions on login page. msgid "Login with your username and password." -msgstr "×©× ×ž×©×ª×ž×© ×ו סיסמה ×œ× × ×›×•× ×™×." +msgstr "יש להיכנס ×¢× ×©× ×ž×©×ª×ž×© וססמה." -#: actions/login.php:295 -#, fuzzy, php-format +#. TRANS: Form instructions on login page. This message contains Markdown links in the form [Link text](Link). +#. TRANS: %%action.register%% is a link to the registration page. +#, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "" -"היכנס בעזרת ×©× ×”×ž×©×ª×ž×© והסיסמה שלך. עדיין ×ין לך ×©× ×ž×©×ª×ž×©? [הרש×](%%action." -"register%%) לחשבון " +msgstr "עדיין ×ין לך ×©× ×ž×©×ª×ž×©? [הירש×](%%action.register%%) לחשבון חדש" -#: actions/makeadmin.php:92 +#. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. msgid "Only an admin can make another user an admin." msgstr "" -#: actions/makeadmin.php:96 -#, fuzzy, php-format +#. TRANS: Client error displayed when trying to make another user admin on the Make Admin page who already is admin. +#. TRANS: %1$s is the user that is already admin, %2$s is the group user is already admin for. +#, php-format msgid "%1$s is already an admin for group \"%2$s\"." -msgstr "למשתמש ×ין פרופיל." +msgstr "%1$s ×”×•× ×›×‘×¨ מנהל בקבוצה \"%2$s\"." -#: actions/makeadmin.php:133 -#, fuzzy, php-format +#. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails +#. TRANS: because the group membership record could not be gotten. +#. TRANS: %1$s is the to be admin user, %2$s is the group user should be admin for. +#, php-format msgid "Can't get membership record for %1$s in group %2$s." -msgstr "נכשלה יצירת OpenID מתוך: %s" +msgstr "×œ× ×”×¦×œ×—×ª×™ לקבל ×¨×™×©×•× ×—×‘×¨×•×ª עבור %1$s בקבוצה %2$s." -#: actions/makeadmin.php:146 -#, fuzzy, php-format +#. TRANS: Server error displayed when trying to make another user admin on the Make Admin page fails +#. TRANS: because the group adminship record coud not be saved properly. +#. TRANS: %1$s is the to be admin user, %2$s is the group user is already admin for. +#, php-format msgid "Can't make %1$s an admin for group %2$s." -msgstr "למשתמש ×ין פרופיל." +msgstr "×œ× × ×™×ª×Ÿ להפוך ×ת %1$s למנהל של הקבוצה %2$s." -#: actions/microsummary.php:69 -#, fuzzy +#. TRANS: Client error displayed trying to make a micro summary without providing a status. msgid "No current status." -msgstr "×ין תוצ×ות" +msgstr "×ין מצב נוכחי." #. TRANS: This is the title of the form for adding a new application. -#: actions/newapplication.php:52 msgid "New application" msgstr "" #. TRANS: Client error displayed trying to add a new application while not logged in. -#: actions/newapplication.php:65 msgid "You must be logged in to register an application." msgstr "" -#: actions/newapplication.php:147 +#. TRANS: Form instructions for registering a new application. msgid "Use this form to register a new application." msgstr "" -#: actions/newapplication.php:184 +#. TRANS: Validation error shown when not providing a source URL in the "New application" form. msgid "Source URL is required." msgstr "" -#: actions/newapplication.php:266 actions/newapplication.php:275 +#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. msgid "Could not create application." msgstr "שמירת הפרופיל נכשלה." +msgid "Invalid image." +msgstr "תמונה ×œ× ×ª×§×™× ×”." + #. TRANS: Title for form to create a group. -#: actions/newgroup.php:53 msgid "New group" -msgstr "" +msgstr "קבוצה חדשה" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#: actions/newgroup.php:73 classes/User_group.php:485 msgid "You are not allowed to create groups on this site." -msgstr "" +msgstr "×ינך מורשה ליצור קבוצות ב×תר ×”×–×”." #. TRANS: Form instructions for group create form. -#: actions/newgroup.php:117 msgid "Use this form to create a new group." -msgstr "" +msgstr "השתמש בטופס ×”×–×” כדי ליצור קבוצה חדשה." -#: actions/newmessage.php:71 actions/newmessage.php:234 +#. TRANS: Page title for new direct message page. +#. TRANS: Page title on page for sending a direct message. msgid "New message" msgstr "הודעה חדשה" -#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). -#: actions/newmessage.php:121 actions/newmessage.php:164 lib/command.php:501 -#, fuzzy -msgid "You can't send a message to this user." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +#. TRANS: Client error displayed trying to send a direct message to a user while sender and +#. TRANS: receiver are not subscribed to each other. +msgid "You cannot send a message to this user." +msgstr "×ינך יכול לשלוח הודעה למשתמש ×”×–×”." +#. TRANS: Form validator error displayed trying to send a direct message without content. +#. TRANS: Client error displayed trying to send a notice without content. #. TRANS: Command exception text shown when trying to send a direct message to another user without content. #. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply. -#: actions/newmessage.php:144 actions/newnotice.php:140 lib/command.php:478 -#: lib/command.php:581 msgid "No content!" msgstr "×ין תוכן!" -#: actions/newmessage.php:161 +#. TRANS: Form validation error displayed trying to send a direct message without specifying a recipient. msgid "No recipient specified." -msgstr "" +msgstr "×œ× ×”×•×’×“×¨ מקבל." -#. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:167 lib/command.php:505 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:184 -#, fuzzy +#. TRANS: Page title after sending a direct message. msgid "Message sent" -msgstr "הודעה חדשה" +msgstr "ההודעה נשלחה" +#. TRANS: Confirmation text after sending a direct message. +#. TRANS: %s is the direct message recipient. #. TRANS: Message given have sent a direct message to another user. #. TRANS: %s is the name of the other user. -#: actions/newmessage.php:188 lib/command.php:513 #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "הודעה ישירה ×ל %s נשלחה." -#: actions/newmessage.php:213 actions/newnotice.php:264 +#. TRANS: Page title after an AJAX error occurred on the "send direct message" page. +#. TRANS: Page title after an AJAX error occurs on the send notice page. msgid "Ajax Error" -msgstr "" +msgstr "שגי×ת AJAX" -#: actions/newnotice.php:69 +#. TRANS: Page title for sending a new notice. +#. TRANS: Title for form to send a new notice. +msgctxt "TITLE" msgid "New notice" -msgstr "הודעה חדשה" +msgstr "עדכון חדש" -#: actions/newnotice.php:230 -#, fuzzy +#. TRANS: Page title after sending a notice. msgid "Notice posted" -msgstr "הודעות" +msgstr "העדכון פורס×" -#: actions/noticesearch.php:68 +#. TRANS: Instructions for Notice search page. +#. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -"חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת ×¨×•×•×—×™× ×‘×™×Ÿ הביטויי×; ×¢×œ×™×”× " -"להיות בני לפחות 3 ×ותיות." +"חיפוש ×¢×“×›×•× ×™× ×‘×תר %%site.name%% לפי תוכנ×. הפרד בעזרת ×¨×•×•×—×™× ×‘×™×Ÿ הביטויי×; " +"×¢×œ×™×”× ×œ×”×™×•×ª בני 3 ×ª×•×•×™× ×œ×¤×—×•×ª." -#: actions/noticesearch.php:78 +#. TRANS: Title of the page where users can search for notices. msgid "Text search" msgstr "חיפוש טקסט" -#: actions/noticesearch.php:91 -#, fuzzy, php-format +#. TRANS: Test in RSS notice search. +#. TRANS: %1$s is the query, %2$s is the StatusNet site name. +#, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "חיפוש ברצף ×חרי \"%s\"" +msgstr "הצגת תוצ×ות עבור \"%1$s\" ב×תר %2$s" -#: actions/noticesearch.php:121 +#. TRANS: Text for logged in users making a query for notices without results. +#. TRANS: This message contains a Markdown link. #, php-format msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" +"×‘×•× ×œ×”×™×•×ª הר×שון ש[×ž×¤×¨×¡× ×¢×œ ×”× ×•×©× ×”×–×”](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" -#: actions/noticesearch.php:124 +#. TRANS: Text for not logged in users making a query for notices without results. +#. TRANS: This message contains Markdown links. #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"למה ×œ× [×œ×”×™×¨×©× ×œ×—×©×‘×•×Ÿ](%%%%action.register%%%%) ולהיות הר×שון ש[×ž×¤×¨×¡× ×¢×œ " +"×”× ×•×©× ×”×–×”](%%%%action.newnotice%%%%?status_textarea=%s)!" -#: actions/noticesearchrss.php:96 -#, fuzzy, php-format +#. TRANS: RSS notice search feed title. %s is the query. +#, php-format msgid "Updates with \"%s\"" -msgstr "מיקרובלוג מ×ת %s" +msgstr "×¢×“×›×•× ×™× ×¢× \"%s\"" -#: actions/noticesearchrss.php:98 -#, fuzzy, php-format -msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "כל ×”×¢×™×“×›×•× ×™× ×”×ª×•××ž×™× ×ת החיפוש ×חרי \"%s\"" +#. TRANS: RSS notice search feed description. +#. TRANS: %1$s is the query, %2$s is the StatusNet site name. +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s." +msgstr "×¢×“×›×•× ×™× ×©×ª×•××ž×™× ×œ×ž×™×œ×ª החיפוש \"%1$s\" ב×תר %2$s." -#: actions/nudge.php:85 +#. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." msgstr "" +"המשתמש ×”×–×” ×œ× ×ž×פשר דחיפות ×ו ×œ× ×ימת ×ו ×œ× ×”×’×“×™×¨ ×ת כתובת הדו×״ל שלו עדיין." -#: actions/nudge.php:94 +#. TRANS: Page title after sending a nudge. msgid "Nudge sent" -msgstr "" +msgstr "דחיפה נשלחה" -#: actions/nudge.php:97 +#. TRANS: Confirmation text after sending a nudge. msgid "Nudge sent!" -msgstr "" +msgstr "דחיפה נשלחה!" #. TRANS: Message displayed to an anonymous user trying to view OAuth application list. -#: actions/oauthappssettings.php:60 msgid "You must be logged in to list your applications." msgstr "" #. TRANS: Page title for OAuth applications -#: actions/oauthappssettings.php:76 msgid "OAuth applications" msgstr "" #. TRANS: Page instructions for OAuth applications -#: actions/oauthappssettings.php:88 msgid "Applications you have registered" msgstr "" #. TRANS: Empty list message on page with OAuth applications. -#: actions/oauthappssettings.php:141 #, php-format msgid "You have not registered any applications yet." msgstr "" #. TRANS: Title for OAuth connection settings. -#: actions/oauthconnectionssettings.php:71 msgid "Connected applications" msgstr "" #. TRANS: Instructions for OAuth connection settings. -#: actions/oauthconnectionssettings.php:83 msgid "The following connections exist for your account." msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. -#: actions/oauthconnectionssettings.php:168 -#, fuzzy msgid "You are not a user of that application." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך משתמש ×‘×™×™×©×•× ×”×”×•×" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#: actions/oauthconnectionssettings.php:183 #, php-format msgid "Unable to revoke access for application: %s." msgstr "" #. TRANS: Success message after revoking access for an application. #. TRANS: %1$s is the application name, %2$s is the first part of the user token. -#: actions/oauthconnectionssettings.php:202 #, php-format msgid "" "You have successfully revoked access for %1$s and the access token starting " @@ -3626,475 +3225,382 @@ msgid "" msgstr "" #. TRANS: Empty list message when no applications have been authorised yet. -#: actions/oauthconnectionssettings.php:213 msgid "You have not authorized any applications to use your account." msgstr "" #. TRANS: Note for developers in the OAuth connection settings form. #. TRANS: This message contains a Markdown link. Do not separate "](". #. TRANS: %s is the URL to the OAuth settings. -#: actions/oauthconnectionssettings.php:233 #, php-format msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" -#: actions/oembed.php:80 actions/shownotice.php:100 -msgid "Notice has no profile." -msgstr "למשתמש ×ין פרופיל." +#. TRANS: Server error displayed in oEmbed action when path not found. +#. TRANS: %s is a path. +#, php-format +msgid "\"%s\" not found." +msgstr "" -#: actions/oembed.php:83 actions/shownotice.php:172 +#. TRANS: Server error displayed in oEmbed action when notice not found. +#. TRANS: %s is a notice. +#, php-format +msgid "Notice %s not found." +msgstr "" + +#. TRANS: Server error displayed in oEmbed action when notice has not profile. +#. TRANS: Server error displayed trying to show a notice without a connected profile. +msgid "Notice has no profile." +msgstr "לעדכון ×ין פרופיל." + +#. TRANS: oEmbed title. %1$s is the author name, %2$s is the creation date. +#. TRANS: Title of the page that shows a notice. +#. TRANS: %1$s is a user name, %2$s is the notice creation date/time. #, php-format msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " +#. TRANS: Server error displayed in oEmbed action when attachment not found. +#. TRANS: %d is an attachment ID. +#, php-format +msgid "Attachment %s not found." +msgstr "" + +#. TRANS: Server error displayed in oEmbed request when a path is not supported. +#. TRANS: %s is a path. +#, php-format +msgid "\"%s\" not supported for oembed requests." +msgstr "" + #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') -#: actions/oembed.php:168 -#, fuzzy, php-format +#, php-format msgid "Content type %s not supported." -msgstr "התחבר" +msgstr "סוג תוגן %s ×ינו נתמך" #. TRANS: Error message displaying attachments. %s is the site's base URL. -#: actions/oembed.php:172 #, php-format msgid "Only %s URLs over plain HTTP please." msgstr "" +#. TRANS: Server error displayed in oEmbed action when request specifies an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206 -#: lib/apiaction.php:1233 lib/apiaction.php:1362 -#, fuzzy msgid "Not a supported data format." -msgstr "פורמט התמונה ×ינו נתמך." +msgstr "תסדיר המידע ×œ× × ×ª×ž×š." -#: actions/opensearch.php:64 +#. TRANS: ShortName in the OpenSearch interface when trying to find users. msgid "People Search" msgstr "חיפוש ×נשי×" -#: actions/opensearch.php:67 -#, fuzzy +#. TRANS: ShortName in the OpenSearch interface when trying to find notices. msgid "Notice Search" -msgstr "חיפוש ×נשי×" +msgstr "חיפוש עדכוני×" -#: actions/othersettings.php:59 -msgid "Other settings" -msgstr "הגדרות הפרופיל" - -#. TRANS: Instructions for tab "Other" in user profile settings. -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a -#. TRANS: user's profile settings. This message has one space at the beginning. Use your -#. TRANS: language's word separator here if it has one (most likely a single space). -#: actions/othersettings.php:111 -msgid " (free service)" -msgstr "" - -#. TRANS: Label for dropdown with URL shortener services. -#: actions/othersettings.php:120 -msgid "Shorten URLs with" -msgstr "" - -#. TRANS: Tooltip for for dropdown with URL shortener services. -#: actions/othersettings.php:122 -msgid "Automatic shortening service to use." -msgstr "" - -#. TRANS: Label for checkbox. -#: actions/othersettings.php:128 -#, fuzzy -msgid "View profile designs" -msgstr "הגדרות הפרופיל" - -#. TRANS: Tooltip for checkbox. -#: actions/othersettings.php:130 -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form validation error for form "Other settings" in user profile. -#: actions/othersettings.php:162 -msgid "URL shortening service is too long (maximum 50 characters)." -msgstr "" - -#: actions/otp.php:69 -#, fuzzy +#. TRANS: Client error displayed trying to use "one time password login" without specifying a user. msgid "No user ID specified." -msgstr "הודעה חדשה" +msgstr "×œ× ×¦×•×™×Ÿ מזהה משתמש" -#: actions/otp.php:83 -#, fuzzy +#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token. msgid "No login token specified." -msgstr "הודעה חדשה" +msgstr "×œ× ×¦×•×™×Ÿ ×סימון התחברות." -#: actions/otp.php:90 +#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token. msgid "No login token requested." msgstr "×œ× ×”×ª×‘×§×© ×ישור!" -#: actions/otp.php:95 -#, fuzzy +#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token. msgid "Invalid login token specified." -msgstr "תוכן ההודעה ×œ× ×—×•×§×™" +msgstr "צוין ×סימון התחברות ×œ× ×ª×§×™×Ÿ." -#: actions/otp.php:104 +#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token. msgid "Login token expired." msgstr "" -#: actions/outbox.php:58 +#. TRANS: Title for outbox for any but the fist page. +#. TRANS: %1$s is the user nickname, %2$d is the page number. #, php-format msgid "Outbox for %1$s - page %2$d" msgstr "" -#: actions/outbox.php:61 +#. TRANS: Title for first page of outbox. #, php-format msgid "Outbox for %s" msgstr "" -#: actions/outbox.php:116 +#. TRANS: Instructions for outbox. msgid "This is your outbox, which lists private messages you have sent." msgstr "" -#: actions/passwordsettings.php:58 +#. TRANS: Title for page where to change password. +msgctxt "TITLE" msgid "Change password" -msgstr "שנה סיסמה" +msgstr "" -#: actions/passwordsettings.php:69 -#, fuzzy +#. TRANS: Instructions for page where to change password. msgid "Change your password." -msgstr "שנה סיסמה" +msgstr "שינוי ססמה" -#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 -#, fuzzy +#. TRANS: Fieldset legend on page where to change password. +#. TRANS: Fieldset legend for password reset form. msgid "Password change" -msgstr "הסיסמה נשמרה." +msgstr "שינוי ססמה" -#: actions/passwordsettings.php:104 +#. TRANS: Field label on page where to change password. msgid "Old password" -msgstr "סיסמה ישנה" +msgstr "ססמה ישנה" -#: actions/passwordsettings.php:108 actions/recoverpassword.php:235 +#. TRANS: Field label on page where to change password. +#. TRANS: Field label for password reset form. msgid "New password" -msgstr "סיסמה חדשה" +msgstr "ססמה חדשה" -#: actions/passwordsettings.php:109 -msgid "6 or more characters" -msgstr "לפחות 6 ×ותיות" +#. TRANS: Field title on page where to change password. +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "×–×”×” לסיסמה למעלה" +#. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. +msgctxt "LABEL" +msgid "Confirm" +msgstr "" -#: actions/passwordsettings.php:117 +#. TRANS: Field title on page where to change password. +#. TRANS: Title for field label for password reset form where the password has to be typed again. +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "" + +#. TRANS: Button text on page where to change password. +msgctxt "BUTTON" msgid "Change" -msgstr "שנה" +msgstr "" -#: actions/passwordsettings.php:154 actions/register.php:238 -#, fuzzy +#. TRANS: Form validation error on page where to change password. +#. TRANS: Form validation error displayed when trying to register with too short a password. msgid "Password must be 6 or more characters." -msgstr "הסיסמה חייבת להיות בת לפחות 6 ×ותיות." +msgstr "הססמה חייבת להיות בת 6 ×ª×•×•×™× ×ו יותר." -#: actions/passwordsettings.php:157 actions/register.php:241 -msgid "Passwords don't match." -msgstr "הסיסמ×ות ×œ× ×ª×•×מות." +#. TRANS: Form validation error on password change when password confirmation does not match. +#. TRANS: Form validation error displayed when trying to register with non-matching passwords. +msgid "Passwords do not match." +msgstr "" -#: actions/passwordsettings.php:165 -msgid "Incorrect old password" -msgstr "הסיסמה הישנה ×œ× × ×›×•× ×”" +#. TRANS: Form validation error on page where to change password. +msgid "Incorrect old password." +msgstr "" -#: actions/passwordsettings.php:181 +#. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." msgstr "שגי××” בשמירת ×©× ×”×ž×©×ª×ž×©, ×œ× ×¢×•×ž×“ בכללי×." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 -msgid "Can't save new password." -msgstr "×œ× × ×™×ª×Ÿ לשמור ×ת הסיסמה" +#. TRANS: Server error displayed on page where to change password when password change +#. TRANS: could not be made because of a server error. +#. TRANS: Reset password form validation error message. +msgid "Cannot save new password." +msgstr "" -#: actions/passwordsettings.php:192 actions/recoverpassword.php:211 +#. TRANS: Form validation notice on page where to change password. msgid "Password saved." -msgstr "הסיסמה נשמרה." +msgstr "הססמה נשמרה." #. TRANS: Title for Paths admin panel. -#. TRANS: Menu item for site administration -#: actions/pathsadminpanel.php:58 lib/adminpanelaction.php:371 msgid "Paths" msgstr "" #. TRANS: Form instructions for Path admin panel. -#: actions/pathsadminpanel.php:69 msgid "Path and server settings for this StatusNet site" msgstr "" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the directory that could not be read from. -#: actions/pathsadminpanel.php:155 -#, fuzzy, php-format +#, php-format msgid "Theme directory not readable: %s." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "תיקיית ערכות × ×•×©× ××™× ×” קרי××”: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the avatar directory that could not be written to. -#: actions/pathsadminpanel.php:163 -#, fuzzy, php-format +#, php-format msgid "Avatar directory not writable: %s." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "תיקיית תמונות משתמש ××™× ×” ניתנת לכתיבה: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the background directory that could not be written to. -#: actions/pathsadminpanel.php:171 -#, fuzzy, php-format +#, php-format msgid "Background directory not writable: %s." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "תיקיית ×¨×§×¢×™× ××™× ×” ניתנת לכתיבה: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the locales directory that could not be read from. -#: actions/pathsadminpanel.php:181 -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "תיקיית הגדרות ×זוריות ××™× ×” קרי××”: %s." #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the SSL server URL that is too long. -#: actions/pathsadminpanel.php:189 msgid "Invalid SSL server. The maximum length is 255 characters." msgstr "" #. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58 msgid "Site" msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:279 -#: actions/pathsadminpanel.php:370 actions/pathsadminpanel.php:425 -#, fuzzy msgid "Server" -msgstr "שיחזור" +msgstr "שרת" -#: actions/pathsadminpanel.php:242 +#. TRANS: Field title in Paths admin panel. msgid "Site's server hostname." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288 -#: actions/pathsadminpanel.php:379 actions/pathsadminpanel.php:434 msgid "Path" msgstr "" -#: actions/pathsadminpanel.php:249 +#. TRANS: Field title in Paths admin panel. msgid "Site path." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:255 msgid "Locale directory" msgstr "" -#: actions/pathsadminpanel.php:256 +#. TRANS: Field title in Paths admin panel. msgid "Directory path to locales." msgstr "" #. TRANS: Checkbox label in Paths admin panel. -#: actions/pathsadminpanel.php:263 msgid "Fancy URLs" msgstr "" -#: actions/pathsadminpanel.php:265 -msgid "Use fancy (more readable and memorable) URLs?" +#. TRANS: Field title in Paths admin panel. +msgid "Use fancy URLs (more readable and memorable)?" msgstr "" -#: actions/pathsadminpanel.php:272 +#. TRANS: Fieldset legend in Paths admin panel. +msgctxt "LEGEND" msgid "Theme" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:281 msgid "Server for themes." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:290 msgid "Web path to themes." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:297 actions/pathsadminpanel.php:388 -#: actions/pathsadminpanel.php:443 actions/pathsadminpanel.php:495 -#, fuzzy msgid "SSL server" -msgstr "שיחזור" +msgstr "שרת SSL" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:299 msgid "SSL server for themes (default: SSL server)." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:306 actions/pathsadminpanel.php:397 -#: actions/pathsadminpanel.php:452 msgid "SSL path" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:308 msgid "SSL path to themes (default: /theme/)." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:315 actions/pathsadminpanel.php:406 -#: actions/pathsadminpanel.php:461 msgid "Directory" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:317 msgid "Directory where themes are located." msgstr "" #. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:326 -#, fuzzy msgid "Avatars" -msgstr "תמונה" +msgstr "תמונות משתמש" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:333 msgid "Avatar server" msgstr "תמונה" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:335 msgid "Server for avatars." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:342 -#, fuzzy msgid "Avatar path" -msgstr "התמונה עודכנה." +msgstr "נתיב לתמונת משתמש" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:344 msgid "Web path to avatars." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:351 -#, fuzzy msgid "Avatar directory" -msgstr "התמונה עודכנה." +msgstr "תיקיית תמונות משתמש" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:353 msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:364 -msgid "Backgrounds" -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:372 -msgid "Server for backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:381 -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:390 -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:399 -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:408 -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. -#. TRANS: DT element label in attachment list. -#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99 msgid "Attachments" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:427 msgid "Server for attachments." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:436 msgid "Web path to attachments." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:445 msgid "Server for attachments on SSL pages." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:454 msgid "Web path to attachments on SSL pages." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:463 msgid "Directory where attachments are located." msgstr "" #. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:472 -#, fuzzy +msgctxt "LEGEND" msgid "SSL" -msgstr "סמס" +msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:477 actions/snapshotadminpanel.php:202 -#, fuzzy +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Never" -msgstr "שיחזור" +msgstr "×œ×¢×•×œ× ×œ×" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:479 -#, fuzzy msgid "Sometimes" -msgstr "הודעות" +msgstr "לפעמי×" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:481 msgid "Always" msgstr "" -#: actions/pathsadminpanel.php:485 +#. TRANS: Drop down label in Paths admin panel. msgid "Use SSL" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:487 msgid "When to use SSL." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:497 msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -#: actions/pathsadminpanel.php:514 -#, fuzzy msgid "Save paths" -msgstr "הודעה חדשה" +msgstr "שמירת נתיבי×" -#: actions/peoplesearch.php:52 +#. TRANS: Instructions for the "People search" page. +#. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -4103,154 +3609,402 @@ msgstr "" "חפש ×× ×©×™× ×‘-%%site.name%% לפי ש×, מיקו×, ×ו תחומי עניין. הפרד בעזרת ×¨×•×•×—×™× " "בין הביטויי×; ×¢×œ×™×”× ×œ×”×™×•×ª בני לפחות 3 ×ותיות." -#: actions/peoplesearch.php:58 +#. TRANS: Title of a page where users can search for other users. msgid "People search" -msgstr "חיפוש סיסמה" +msgstr "חיפוש ×נשי×" -#: actions/peopletag.php:68 -#, fuzzy, php-format -msgid "Not a valid people tag: %s." -msgstr "×œ× ×¢×•×ž×“ ×‘×›×œ×œ×™× ×œ-OpenID." - -#: actions/peopletag.php:142 -#, fuzzy, php-format -msgid "Users self-tagged with %1$s - page %2$d" -msgstr "מיקרובלוג מ×ת %s" - -#: actions/postnotice.php:95 -msgid "Invalid notice content." -msgstr "גודל ×œ× ×—×•×§×™." - -#: actions/postnotice.php:101 +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, php-format -msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgid "Public list %s" +msgstr "" + +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, php-format +msgid "Public list %1$s, page %2$d" +msgstr "" + +#. TRANS: Message for anonymous users on list page. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." +msgstr "" + +#. TRANS: Client error displayed when a tagger is expected but not provided. +msgid "No tagger." +msgstr "" + +#. TRANS: Title for list of people listed by the user. +#. TRANS: %1$s is a list, %2$s is a username. +#, php-format +msgid "People listed in %1$s by %2$s" +msgstr "" + +#. TRANS: Title for list of people listed by the user. +#. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. +#, php-format +msgid "People listed in %1$s by %2$s, page %3$d" +msgstr "" + +#. TRANS: Addition in tag membership list for creator of a tag. +#. TRANS: Addition in tag subscribers list for creator of a tag. +msgid "Creator" +msgstr "" + +#. TRANS: Title for lists by a user page for a private tag. +msgid "Private lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page for a public tag. +msgid "Public lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page. +msgid "Lists by you" +msgstr "" + +#. TRANS: Title for lists by a user page. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Lists by %s" +msgstr "" + +#. TRANS: Title for lists by a user page. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#, php-format +msgid "Lists by %1$s, page %2$d" +msgstr "" + +#. TRANS: Client error displayed when trying view another user's private lists. +msgid "You cannot view others' private lists" +msgstr "" + +#. TRANS: Mode selector label. +msgid "Mode" +msgstr "" + +#. TRANS: Link text to show lists for user %s. +#, php-format +msgid "Lists for %s" +msgstr "" + +#. TRANS: Fieldset legend. +#. TRANS: Fieldset legend on gallery action page. +msgid "Select tag to filter" +msgstr "" + +#. TRANS: Checkbox title. +msgid "Show private tags." +msgstr "" + +#. TRANS: Checkbox label to show public tags. +msgctxt "LABEL" +msgid "Public" +msgstr "" + +#. TRANS: Checkbox title. +msgid "Show public tags." +msgstr "" + +#. TRANS: Submit button text for tag filter form. +#. TRANS: Submit button text on gallery action page. +msgctxt "BUTTON" +msgid "Go" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists by a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "" +"These are lists created by **%s**. Lists are how you sort similar people on %" +"%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. You can easily keep track of what they are doing by subscribing to the " +"tag's timeline." +msgstr "" + +#. TRANS: Message displayed on page that displays lists by a user when there are none. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." +msgstr "" + +#. TRANS: Page title. %s is a tagged user's nickname. +#, php-format +msgid "Lists with %s in them" +msgstr "" + +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format +msgid "Lists with %1$s, page %2$d" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists for a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a tagger nickname. +#, php-format +msgid "" +"These are lists for **%s**. lists are how you sort similar people on %%%%" +"site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. You can easily keep track of what they are doing by subscribing to the " +"tag's timeline." +msgstr "" + +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." +msgstr "" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" +msgstr "" + +#. TRANS: Title for page that displays lists subscribed to by a user. +#. TRANS: %s is a profile nickname. +#, php-format +msgid "Lists subscribed to by %s" +msgstr "" + +#. TRANS: Title for page that displays lists subscribed to by a user. +#. TRANS: %1$s is a profile nickname, %2$d is a page number. +#, php-format +msgid "Lists subscribed to by %1$s, page %2$d" +msgstr "" + +#. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. +#. TRANS: This message contains Markdown links in the form [description](links). +#. TRANS: %s is a profile nickname. +#, php-format +msgid "" +"These are lists subscribed to by **%s**. Lists are how you sort similar " +"people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" +"Micro-blogging) service based on the Free Software [StatusNet](http://status." +"net/) tool. You can easily keep track of what they are doing by subscribing " +"to the list's timeline." +msgstr "" + +#. TRANS: Page title for AJAX form return when a disabling a plugin. +msgctxt "plugin" +msgid "Disabled" +msgstr "" + +#. TRANS: Client error displayed when trying to use another method than POST. +#. TRANS: Do not translate POST. +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +#. TRANS: Client error displayed when trying to use another method than POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. +msgid "You cannot administer plugins." +msgstr "" + +#. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. +msgid "No such plugin." +msgstr "" + +#. TRANS: Page title for AJAX form return when enabling a plugin. +msgctxt "plugin" +msgid "Enabled" +msgstr "" + +#. TRANS: Tab and title for plugins admin panel. +msgctxt "TITLE" +msgid "Plugins" +msgstr "" + +#. TRANS: Instructions at top of plugin admin page. +msgid "" +"Additional plugins can be enabled and configured manually. See the online plugin documentation for more " +"details." +msgstr "" + +#. TRANS: Admin form section header +msgid "Default plugins" +msgstr "" + +#. TRANS: Text displayed on plugin admin page when no plugin are enabled. +msgid "" +"All default plugins have been disabled from the site's configuration file." +msgstr "" + +#. TRANS: Client error displayed if the notice posted has too many characters. +msgid "Invalid notice content." +msgstr "תוכן עדכון ×œ× ×ª×§×™×Ÿ." + +#. TRANS: Exception thrown if a notice's license is not compatible with the StatusNet site license. +#. TRANS: %1$s is the notice license, %2$s is the StatusNet site's license. +#, php-format +msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +msgstr "" + +#. TRANS: Client error displayed when trying to add an unindentified field to profile. +#. TRANS: %s is a field name. +#, php-format +msgid "Unidentified field %s." +msgstr "" + +#. TRANS: Page title. +msgctxt "TITLE" +msgid "Search results" +msgstr "" + +#. TRANS: Error message in case a search is shorter than three characters. +msgid "The search string must be at least 3 characters long." msgstr "" #. TRANS: Page title for profile settings. -#: actions/profilesettings.php:61 msgid "Profile settings" msgstr "הגדרות הפרופיל" #. TRANS: Usage instructions for profile settings. -#: actions/profilesettings.php:73 msgid "" "You can update your personal profile info here so people know more about you." msgstr "עדכן ×ת הפרופיל ×”×ישי שלך ×›×ן, על מנת ש×× ×©×™× ×™×•×›×œ×• לדעת עליך יותר." #. TRANS: Profile settings form legend. -#: actions/profilesettings.php:102 msgid "Profile information" msgstr "הגדרות הפרופיל" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:113 +#. TRANS: Field title on account registration page. +#. TRANS: Field title on group edit form. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Field label in form for profile settings. -#. TRANS: Label for full group name (dt). Text hidden by default. -#: actions/profilesettings.php:117 actions/register.php:456 -#: actions/showgroup.php:252 actions/tagother.php:104 -#: lib/groupeditform.php:157 lib/userprofile.php:152 +#. TRANS: Field label on account registration page. +#. TRANS: Field label on group edit form. msgid "Full name" msgstr "×©× ×ž×œ×" #. TRANS: Field label in form for profile settings. +#. TRANS: Field label on account registration page. #. TRANS: Form input field label. -#: actions/profilesettings.php:122 actions/register.php:461 -#: lib/applicationeditform.php:236 lib/groupeditform.php:161 +#. TRANS: Field label on group edit form; points to "more info" for a group. msgid "Homepage" msgstr "×תר בית" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#. TRANS: Field title on account registration page. msgid "URL of your homepage, blog, or profile on another site." msgstr "" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the #. TRANS: biography (%d). -#: actions/profilesettings.php:133 actions/register.php:472 +#. TRANS: Text area title in form for account registration. Plural +#. TRANS: is decided by the number of characters available for the +#. TRANS: biography (%d). #, php-format -msgid "Describe yourself and your interests in %d character" -msgid_plural "Describe yourself and your interests in %d characters" +msgid "Describe yourself and your interests in %d character." +msgid_plural "Describe yourself and your interests in %d characters." msgstr[0] "" msgstr[1] "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:139 actions/register.php:477 -#, fuzzy -msgid "Describe yourself and your interests" -msgstr "ת×ר ×ת עצמך ו×ת נוש××™ העניין שלך ב-140 ×ותיות" +#. TRANS: Text area title on account registration page. +msgid "Describe yourself and your interests." +msgstr "" -#. TRANS: Text area label in form for profile settings where users can provide. +#. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. -#: actions/profilesettings.php:143 actions/register.php:479 +#. TRANS: Text area label on account registration page. msgid "Bio" msgstr "ביוגרפיה" #. TRANS: Field label in form for profile settings. -#. TRANS: Label for group location (dt). Text hidden by default. -#: actions/profilesettings.php:149 actions/register.php:484 -#: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 -#: lib/userprofile.php:167 +#. TRANS: Field label on account registration page. +#. TRANS: Field label on group edit form. +#. TRANS: Dropdown option for searching in profiles. msgid "Location" msgstr "מיקו×" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:152 actions/register.php:486 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "מיקומך, למשל \"עיר, מדינה ×ו מחוז, ×רץ\"" +#. TRANS: Field title on account registration page. +msgid "Where you are, like \"City, State (or Region), Country\"." +msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:157 msgid "Share my current location when posting notices" msgstr "" #. TRANS: Field label in form for profile settings. -#: actions/profilesettings.php:165 actions/tagother.php:149 -#: actions/tagother.php:209 lib/subscriptionlist.php:106 -#: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:168 msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:173 msgid "Language" msgstr "שפה" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:175 -msgid "Preferred language" +msgid "Preferred language." msgstr "" #. TRANS: Dropdownlist label in form for profile settings. -#: actions/profilesettings.php:185 msgid "Timezone" msgstr "" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#: actions/profilesettings.php:187 msgid "What timezone are you normally in?" msgstr "" #. TRANS: Checkbox label in form for profile settings. -#: actions/profilesettings.php:193 msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +"Automatically subscribe to whoever subscribes to me (best for non-humans)." +msgstr "" + +#. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. +msgid "Subscription policy" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Let anyone follow me" +msgstr "" + +#. TRANS: Dropdown field option for following policy. +msgid "Ask me first" +msgstr "" + +#. TRANS: Dropdown field title on group edit form. +msgid "Whether other users need your permission to follow your updates." +msgstr "" + +#. TRANS: Checkbox label in profile settings. +msgid "Make updates visible only to my followers" msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed #. TRANS: characters for the biography (%d). -#: actions/profilesettings.php:262 actions/register.php:229 +#. TRANS: Form validation error on registration page when providing too long a bio text. +#. TRANS: %d is the maximum number of characters for bio; used for plural. #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4258,109 +4012,99 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Validation error in form for profile settings. -#: actions/profilesettings.php:273 actions/siteadminpanel.php:151 +#. TRANS: Client error displayed trying to save site settings without a timezone. msgid "Timezone not selected." msgstr "" #. TRANS: Validation error in form for profile settings. -#: actions/profilesettings.php:281 msgid "Language is too long (maximum 50 characters)." msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. -#: actions/profilesettings.php:295 actions/tagother.php:178 +#. TRANS: Form validation error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. +#. TRANS: Error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. #, php-format -msgid "Invalid tag: \"%s\"" -msgstr "גודל ×œ× ×—×•×§×™." +msgid "Invalid tag: \"%s\"." +msgstr "" #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. -#: actions/profilesettings.php:351 -#, fuzzy -msgid "Couldn't update user for autosubscribe." -msgstr "עידכון המשתמש נכשל." +msgid "Could not update user for autosubscribe or subscribe_policy." +msgstr "" #. TRANS: Server error thrown when user profile location preference settings could not be updated. -#: actions/profilesettings.php:409 -#, fuzzy -msgid "Couldn't save location prefs." -msgstr "שמירת הפרופיל נכשלה." - -#. TRANS: Server error thrown when user profile settings could not be saved. -#: actions/profilesettings.php:422 -msgid "Couldn't save profile." -msgstr "שמירת הפרופיל נכשלה." +msgid "Could not save location prefs." +msgstr "" #. TRANS: Server error thrown when user profile settings tags could not be saved. -#: actions/profilesettings.php:431 -#, fuzzy -msgid "Couldn't save tags." +msgid "Could not save tags." msgstr "שמירת הפרופיל נכשלה." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. -#: actions/profilesettings.php:440 lib/adminpanelaction.php:138 msgid "Settings saved." msgstr "ההגדרות נשמרו." +#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#: actions/profilesettings.php:481 actions/restoreaccount.php:60 msgid "Restore account" msgstr "" -#: actions/public.php:83 +#. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. +#. TRANS: %s is the page limit. #, php-format msgid "Beyond the page limit (%s)." msgstr "" -#: actions/public.php:92 -#, fuzzy +#. TRANS: Server error displayed when a public timeline cannot be retrieved. msgid "Could not retrieve public stream." -msgstr "עידכון המשתמש נכשל." +msgstr "×חזור ×–×¨× ×¦×™×‘×•×¨×™ נכשל." -#: actions/public.php:130 -#, fuzzy, php-format +#. TRANS: Title for all public timeline pages but the first. +#. TRANS: %d is the page number. +#, php-format msgid "Public timeline, page %d" -msgstr "קו זמן ציבורי" +msgstr "קו זמן ציבורי, דף %d" -#: actions/public.php:132 lib/publicgroupnav.php:79 +#. TRANS: Title for the first public timeline page. +#. TRANS: Menu item title in search group navigation panel. msgid "Public timeline" msgstr "קו זמן ציבורי" -#: actions/public.php:160 -#, fuzzy +#. TRANS: Link description for public timeline feed. msgid "Public Stream Feed (RSS 1.0)" -msgstr "הזנת ×–×¨× ×”×¦×™×‘×•×¨×™" +msgstr "הזנת ×–×¨× ×¦×™×‘×•×¨×™ (RSS 1.0)" -#: actions/public.php:164 -#, fuzzy +#. TRANS: Link description for public timeline feed. msgid "Public Stream Feed (RSS 2.0)" -msgstr "הזנת ×–×¨× ×”×¦×™×‘×•×¨×™" +msgstr "הזנת ×–×¨× ×¦×™×‘×•×¨×™ (RSS 1.0)" -#: actions/public.php:168 -#, fuzzy +#. TRANS: Link description for public timeline feed. msgid "Public Stream Feed (Atom)" -msgstr "הזנת ×–×¨× ×”×¦×™×‘×•×¨×™" +msgstr "הזנת ×–×¨× ×¦×™×‘×•×¨×™ (Atom)" -#: actions/public.php:188 +#. TRANS: Text displayed for public feed when there are no public notices. #, php-format msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" -#: actions/public.php:191 +#. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. msgid "Be the first to post!" msgstr "" -#: actions/public.php:195 +#. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user. #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:242 +#. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. +#. TRANS: This message contains Markdown links. Please mind the formatting. #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4369,7 +4113,8 @@ msgid "" "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -#: actions/public.php:247 +#. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. +#. TRANS: This message contains Markdown links. Please mind the formatting. #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4377,15 +4122,56 @@ msgid "" "tool." msgstr "" +#. TRANS: Title for page with public list cloud. +msgid "Public list cloud" +msgstr "" + +#. TRANS: Page notice for page with public list cloud. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "These are largest lists on %s" +msgstr "" + +#. TRANS: Empty list message on page with public list cloud. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "" + +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +msgid "Be the first to list someone!" +msgstr "" + +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to list " +"someone!" +msgstr "" + +#. TRANS: DT element on on page with public list cloud. +msgid "List cloud" +msgstr "" + +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, php-format +msgid "1 person listed" +msgid_plural "%d people listed" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Public RSS feed description. %s is the StatusNet site name. +#, php-format +msgid "%s updates from everyone." +msgstr "" + #. TRANS: Title for public tag cloud. -#: actions/publictagcloud.php:57 -#, fuzzy msgid "Public tag cloud" -msgstr "הזנת ×–×¨× ×”×¦×™×‘×•×¨×™" +msgstr "ענן ×ª×’×™× ×¦×™×‘×•×¨×™" #. TRANS: Instructions (more used like an explanation/header). #. TRANS: %s is the StatusNet sitename. -#: actions/publictagcloud.php:65 #, php-format msgid "These are most popular recent tags on %s" msgstr "" @@ -4393,14 +4179,12 @@ msgstr "" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#: actions/publictagcloud.php:74 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" #. TRANS: Message shown to a logged in user for the public tag cloud #. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. -#: actions/publictagcloud.php:79 msgid "Be the first to post one!" msgstr "" @@ -4409,241 +4193,232 @@ msgstr "" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#: actions/publictagcloud.php:87 #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" -#: actions/publictagcloud.php:146 -msgid "Tag cloud" -msgstr "" - -#: actions/recoverpassword.php:36 +#. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" msgstr "כבר נכנסת למערכת!" -#: actions/recoverpassword.php:62 +#. TRANS: Client error displayed when password recovery code is not correct. msgid "No such recovery code." msgstr "×ין קוד שיחזור ×›×–×”." -#: actions/recoverpassword.php:66 +#. TRANS: Client error displayed when no proper password recovery code was submitted. msgid "Not a recovery code." msgstr "זהו ×œ× ×§×•×“ ×ישור." -#: actions/recoverpassword.php:73 +#. TRANS: Server error displayed trying to recover password without providing a user. msgid "Recovery code for unknown user." msgstr "קוד שיחזור למשתמש ×œ× ×™×“×•×¢." -#: actions/recoverpassword.php:86 +#. TRANS: Server error displayed removing a password recovery code from the database. msgid "Error with confirmation code." msgstr "שגי××” ב×ישור הקוד." -#: actions/recoverpassword.php:97 +#. TRANS: Client error displayed trying to recover password with too old a recovery code. msgid "This confirmation code is too old. Please start again." msgstr "קוד ×ישור ×–×” ישן מידי. ×× × ×”×ª×—×œ מחדש." -#: actions/recoverpassword.php:111 -#, fuzzy +#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password. msgid "Could not update user with confirmed email address." -msgstr "עידכון המשתמש נכשל." +msgstr "עדכון משתמש ×¢× ×›×ª×•×‘×ª דו×ר ×לקטרוני מ×ושרת ×œ× ×”×¦×œ×™×—×”." -#: actions/recoverpassword.php:152 +#. TRANS: Page notice for password recovery page. msgid "" "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." msgstr "" -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#. TRANS: Page notice for password change page. +msgid "You have been identified. Enter a new password below." msgstr "" -#: actions/recoverpassword.php:188 -#, fuzzy +#. TRANS: Fieldset legend for password recovery page. msgid "Password recovery" -msgstr "התבקש שיחזור סיסמה" +msgstr "שחזור ססמה" -#: actions/recoverpassword.php:191 +#. TRANS: Field label on password recovery page. msgid "Nickname or email address" msgstr "" -#: actions/recoverpassword.php:193 +#. TRANS: Title for field label on password recovery page. msgid "Your nickname on this server, or your registered email address." msgstr "" -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +#. TRANS: Field label on password recovery page. msgid "Recover" msgstr "שיחזור" -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "×יפוס סיסמה" - -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "סיסמת שיחזור" - -#: actions/recoverpassword.php:210 actions/recoverpassword.php:335 -msgid "Password recovery requested" -msgstr "התבקש שיחזור סיסמה" - -#: actions/recoverpassword.php:213 -msgid "Unknown action" +#. TRANS: Button text on password recovery page. +msgctxt "BUTTON" +msgid "Recover" msgstr "" -#: actions/recoverpassword.php:236 -msgid "6 or more characters, and don't forget it!" -msgstr "לפחות 6 ×ותיות, ×ל תשכח!" +#. TRANS: Title for password recovery page in password reset mode. +msgid "Reset password" +msgstr "×יפוס ססמה" -#: actions/recoverpassword.php:243 +#. TRANS: Title for password recovery page in password recover mode. +msgid "Recover password" +msgstr "שחזור ססמה" + +#. TRANS: Title for password recovery page in email sent mode. +#. TRANS: Subject for password recovery e-mail. +msgid "Password recovery requested" +msgstr "התבקש שחזור ססמה" + +#. TRANS: Title for password recovery page in password saved mode. +msgid "Password saved" +msgstr "" + +#. TRANS: Title for field label for password reset form. +msgid "6 or more characters, and do not forget it!" +msgstr "" + +#. TRANS: Button text for password reset form. +msgctxt "BUTTON" msgid "Reset" -msgstr "×יפוס" +msgstr "" -#: actions/recoverpassword.php:252 +#. TRANS: Form instructions for password recovery form. msgid "Enter a nickname or email address." msgstr "" -#: actions/recoverpassword.php:282 -msgid "No user with that email address or username." -msgstr "" - -#: actions/recoverpassword.php:299 -msgid "No registered email address for that user." -msgstr "" - -#: actions/recoverpassword.php:313 -msgid "Error saving address confirmation." -msgstr "שגי××” בשמירת ×ישור הכתובת." - -#: actions/recoverpassword.php:338 +#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" -#: actions/recoverpassword.php:357 +#. TRANS: Client error displayed when trying to reset as password without providing a user. msgid "Unexpected password reset." -msgstr "×יפוס סיסמה ×œ× ×¦×¤×•×™." +msgstr "×יפוס ססמה ×œ× ×¦×¤×•×™." -#: actions/recoverpassword.php:365 +#. TRANS: Reset password form validation error message. msgid "Password must be 6 characters or more." msgstr "" -#: actions/recoverpassword.php:369 +#. TRANS: Reset password form validation error message. msgid "Password and confirmation do not match." -msgstr "הסיסמה ו×ישורה ×ינן תו×מות." +msgstr "×ין הת×מה בין הססמה לבין ×ישורה." -#: actions/recoverpassword.php:388 actions/register.php:256 +#. TRANS: Server error displayed when something does wrong with the user object during password reset. +#. TRANS: Server error displayed when saving fails during user registration. msgid "Error setting user." msgstr "שגי××” ביצירת ×©× ×”×ž×©×ª×ž×©." -#: actions/recoverpassword.php:395 +#. TRANS: Success message for user after password reset. msgid "New password successfully saved. You are now logged in." -msgstr "הסיסמה החדשה נשמרה בהצלחה. ×תה מחובר למערכת." +msgstr "הססמה החדשה נשמרה בהצלחה. נכנסת עכשיו למערכת." -#: actions/register.php:92 actions/register.php:196 actions/register.php:413 +#. TRANS: Client exception thrown when no ID parameter was provided. +msgid "No id parameter." +msgstr "" + +#. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. +#. TRANS: %d is the provided ID for which the file is not present (number). +#, php-format +msgid "No such file \"%d\"." +msgstr "" + +#. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." msgstr "" -#: actions/register.php:99 -#, fuzzy +#. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation. msgid "Sorry, invalid invitation code." -msgstr "שגי××” ב×ישור הקוד." +msgstr "סליחה, קוד ×”×ימות ×ינו תקין." -#: actions/register.php:119 +#. TRANS: Title for registration page after a succesful registration. msgid "Registration successful" msgstr "" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#. TRANS: Title for registration page. +msgctxt "TITLE" msgid "Register" -msgstr "הירש×" +msgstr "" -#: actions/register.php:142 +#. TRANS: Client error displayed when trying to register to a closed site. msgid "Registration not allowed." msgstr "" -#: actions/register.php:209 -msgid "You can't register if you don't agree to the license." -msgstr "×œ× × ×™×ª×Ÿ ×œ×”×™×¨×©× ×œ×œ× ×”×¡×›×ž×” לרשיון" - -#: actions/register.php:218 -#, fuzzy -msgid "Email address already exists." -msgstr "כתובת זו כבר ×ושרה." - -#: actions/register.php:251 actions/register.php:273 -msgid "Invalid username or password." -msgstr "×©× ×”×ž×©×ª×ž×© ×ו הסיסמה ×œ× ×—×•×§×™×™×" - -#: actions/register.php:351 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " +#. TRANS: Form validation error displayed when trying to register without agreeing to the site license. +msgid "You cannot register if you do not agree to the license." msgstr "" -#: actions/register.php:433 -#, fuzzy -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1 עד 64 ×ותיות ×נגליות קטנות ×ו מספרי×, ×œ×œ× ×¡×™×ž× ×™ פיסוק ×ו רווחי×." +#. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. +msgid "Email address already exists." +msgstr "כתובת זו כבר קיימת." -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr " לפחות 6 ×ותיות. שדה חובה." +#. TRANS: Form validation error displayed when trying to register with an invalid username or password. +msgid "Invalid username or password." +msgstr "×©× ×”×ž×©×ª×ž×© ×ו הססמה ×œ× ×ª×§×™× ×™×." -#: actions/register.php:442 -#, fuzzy -msgid "Same as password above. Required." -msgstr "×–×”×” לסיסמה למעלה" +#. TRANS: Page notice on registration page. +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues." +msgstr "" -#. TRANS: Link description in user account settings menu. -#: actions/register.php:446 actions/register.php:450 -#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "" + +#. TRANS: Field label on account registration page. +msgctxt "LABEL" msgid "Email" msgstr "" -#: actions/register.php:447 actions/register.php:451 -msgid "Used only for updates, announcements, and password recovery" -msgstr "לשימוש רק ×‘×ž×§×¨×™× ×©×œ עידכוני×, הודעות מערכת, ושיחזורי סיסמ×ות" - -#: actions/register.php:458 -msgid "Longer name, preferably your \"real\" name" +#. TRANS: Field title on account registration page. +msgid "Used only for updates, announcements, and password recovery." msgstr "" -#: actions/register.php:463 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "הכתובת של ×תר הבית שלך, בלוג, ×ו פרופיל ב×תר ×חר " +#. TRANS: Field title on account registration page. +msgid "Longer name, preferably your \"real\" name." +msgstr "" -#: actions/register.php:524 +#. TRANS: Button text to register a user on account registration page. +msgctxt "BUTTON" +msgid "Register" +msgstr "" + +#. TRANS: Copyright checkbox label in registration dialog, for private sites. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" -#: actions/register.php:534 +#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner. +#. TRANS: %1$s is the license owner. #, php-format msgid "My text and files are copyright by %1$s." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. -#: actions/register.php:538 msgid "My text and files remain under my own copyright." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. -#: actions/register.php:541 msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#: actions/register.php:546 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: actions/register.php:589 +#. TRANS: Text displayed after successful account registration. +#. TRANS: %1$s is the registered nickname, %2$s is the profile URL. +#. TRANS: This message contains Markdown links in the form [link text](link) +#. TRANS: and variables in the form %%%%variable%%%%. Please mind the syntax. #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4662,13 +4437,14 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: actions/register.php:613 +#. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail. msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: actions/remotesubscribe.php:98 +#. TRANS: Page notice for remote subscribe. This message contains Markdown links. +#. TRANS: Ensure to keep the correct markup of [link description](link). #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4679,402 +4455,388 @@ msgstr "" "register%%) לחשבון חדשה. ×× ×™×© לך כבר חשבון [במערכת מיקרובלוג תו×מת](%%doc." "openmublog%%), הכנס ×ת כתובת הפרופיל שלך למטה. " -#: actions/remotesubscribe.php:112 +#. TRANS: Page title for Remote subscribe. msgid "Remote subscribe" msgstr "הרשמה מרוחקת" -#: actions/remotesubscribe.php:124 -#, fuzzy +#. TRANS: Field legend on page for remote subscribe. msgid "Subscribe to a remote user" -msgstr "ההרשמה ×ושרה" +msgstr "הרשמה למשתמש מרוחק" -#: actions/remotesubscribe.php:129 +#. TRANS: Field label on page for remote subscribe. msgid "User nickname" msgstr "כינוי משתמש" -#: actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "כינויו של המשתמש ×חריו ×תה רוצה לעקוב" +#. TRANS: Field title on page for remote subscribe. +msgid "Nickname of the user you want to follow." +msgstr "" -#: actions/remotesubscribe.php:133 +#. TRANS: Field label on page for remote subscribe. msgid "Profile URL" msgstr "כתובת הפרופיל" -#: actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תו×× ×חר" +#. TRANS: Field title on page for remote subscribe. +msgid "URL of your profile on another compatible microblogging service." +msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:411 +#. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +#. TRANS: Button text to subscribe to a user. +#. TRANS: Button text for subscribing to a list. +msgctxt "BUTTON" msgid "Subscribe" -msgstr "×”×™×¨×©× ×›×ž× ×•×™" +msgstr "" -#: actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "כתובת פרופיל ×œ× ×—×•×§×™×ª (פורמט ×œ× ×ª×§×™×Ÿ)" +#. TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided. +msgid "Invalid profile URL (bad format)." +msgstr "" -#: actions/remotesubscribe.php:168 -#, fuzzy +#. TRANS: Form validation error on page for remote subscribe when no the provided profile URL +#. TRANS: does not contain expected data. msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -msgstr "Not a valid profile URL (no YADIS document)." +msgstr "×œ× ×›×ª×•×‘×ª תקינה לדף משתמש (×ין מסמך YADIS ×ו שמוגדר XRDS בלתי תקין)" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." +#. TRANS: Form validation error on page for remote subscribe. +msgid "That is a local profile! Login to subscribe." msgstr "" -#: actions/remotesubscribe.php:183 -#, fuzzy -msgid "Couldn’t get a request token." -msgstr "×סימון הבקשה ×œ× ×”×ª×§×‘×œ." +#. TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token. +msgid "Could not get a request token." +msgstr "" -#: actions/repeat.php:57 +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while delisting a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while delisting %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. +msgid "Unlisted" +msgstr "" + +#. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." -msgstr "" +msgstr "רק ×ž×©×ª×ž×©×™× ×©× ×›× ×¡×• לחשבון ×™×›×•×œ×™× ×œ×”×“×”×“ עדכוני×." -#: actions/repeat.php:64 actions/repeat.php:71 -#, fuzzy +#. TRANS: Client error displayed when trying to repeat a notice while not providing a notice ID. +#. TRANS: Client error displayed when trying to repeat a non-existing notice. msgid "No notice specified." -msgstr "הודעה חדשה" +msgstr "×œ× ×¦×•×™×Ÿ עדכון." -#: actions/repeat.php:76 -#, fuzzy -msgid "You can't repeat your own notice." -msgstr "×œ× × ×™×ª×Ÿ ×œ×”×™×¨×©× ×œ×œ× ×”×¡×›×ž×” לרשיון" - -#: actions/repeat.php:90 -#, fuzzy -msgid "You already repeated that notice." -msgstr "כבר נכנסת למערכת!" - -#: actions/repeat.php:114 lib/noticelist.php:692 +#. TRANS: Title after repeating a notice. +#. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" -msgstr "×יפוס" +msgstr "הודהד" -#: actions/repeat.php:119 -#, fuzzy +#. TRANS: Confirmation text after repeating a notice. msgid "Repeated!" -msgstr "צור" +msgstr "הודהד!" -#: actions/replies.php:126 actions/repliesrss.php:68 -#: lib/personalgroupnav.php:108 +#. TRANS: Title for first page of replies for a user. +#. TRANS: %s is a user nickname. +#. TRANS: RSS reply feed title. %s is a user nickname. +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. #, php-format msgid "Replies to %s" msgstr "תגובת עבור %s" -#: actions/replies.php:128 -#, fuzzy, php-format +#. TRANS: Title for all but the first page of replies for a user. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#, php-format msgid "Replies to %1$s, page %2$d" -msgstr "תגובת עבור %s" +msgstr "תגובות למשתמש %1$s, דף %2$d" -#: actions/replies.php:145 -#, fuzzy, php-format +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. +#, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת תגובות של %s†(RSS 1.0)" -#: actions/replies.php:152 -#, fuzzy, php-format +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. +#, php-format msgid "Replies feed for %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת תגובות של %s†(RSS 2.0)" -#: actions/replies.php:159 +#. TRANS: Link for feed with replies for a user. +#. TRANS: %s is a user nickname. #, php-format msgid "Replies feed for %s (Atom)" msgstr "תגובת עבור %s" -#: actions/replies.php:199 +#. TRANS: Empty list message for page with replies for a user. +#. TRANS: %1$s and %s$s are the user nickname. #, php-format msgid "" "This is the timeline showing replies to %1$s but %2$s hasn't received a " "notice to them yet." msgstr "" -#: actions/replies.php:204 +#. TRANS: Empty list message for page with replies for a user for the logged in user. +#. TRANS: This message contains a Markdown link in the form [link text](link). #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:206 +#. TRANS: Empty list message for page with replies for a user for all logged in users but the user themselves. +#. TRANS: %1$s, %2$s and %3$s are a user nickname. This message contains a Markdown link in the form [link text](link). #, php-format msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." "newnotice%%%%?status_textarea=%3$s)." msgstr "" +"×פשר לנסות [לדחוף ×ת %1$s](../%2$s) ×ו [לשלוח ×œ×”× ×ž×©×”×•](%%%%action.newnotice%" +"%%%?status_textarea=%3$s)." -#: actions/repliesrss.php:72 -#, fuzzy, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "תגובת עבור %s" +#. TRANS: RSS reply feed description. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name. +#, php-format +msgid "Replies to %1$s on %2$s." +msgstr "" #. TRANS: Client exception displayed when trying to restore an account while not logged in. -#: actions/restoreaccount.php:78 msgid "Only logged-in users can restore their account." msgstr "" #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#: actions/restoreaccount.php:83 msgid "You may not restore your account." msgstr "" #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. -#: actions/restoreaccount.php:121 actions/restoreaccount.php:146 msgid "No uploaded file." msgstr "" #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. -#: actions/restoreaccount.php:129 lib/mediafile.php:194 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" #. TRANS: Client exception. -#: actions/restoreaccount.php:135 lib/mediafile.php:200 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" #. TRANS: Client exception. -#: actions/restoreaccount.php:141 lib/mediafile.php:206 msgid "The uploaded file was only partially uploaded." msgstr "" #. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. -#: actions/restoreaccount.php:150 lib/mediafile.php:214 msgid "Missing a temporary folder." msgstr "" #. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation. -#: actions/restoreaccount.php:154 lib/mediafile.php:218 msgid "Failed to write file to disk." msgstr "" #. TRANS: Client exception thrown when a file upload operation has been stopped by an extension. -#: actions/restoreaccount.php:158 lib/mediafile.php:222 msgid "File upload stopped by extension." msgstr "" #. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. -#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228 +#. TRANS: Exception thrown when uploading an image fails for an unknown reason. +#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason. msgid "System error uploading file." msgstr "שגי×ת מערכת בהעל×ת הקובץ." #. TRANS: Client exception thrown when a feed is not an Atom feed. -#: actions/restoreaccount.php:207 +#. TRANS: Client exception thrown when an imported feed is not an Atom feed. msgid "Not an Atom feed." msgstr "" #. TRANS: Success message when a feed has been restored. -#: actions/restoreaccount.php:241 msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" #. TRANS: Message when a feed restore is in progress. -#: actions/restoreaccount.php:245 msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" #. TRANS: Form instructions for feed restore. -#: actions/restoreaccount.php:342 msgid "" "You can upload a backed-up stream in Activity Streams format." msgstr "" #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. -#: actions/restoreaccount.php:373 msgid "Upload the file" msgstr "" -#: actions/revokerole.php:75 -#, fuzzy +#. TRANS: Client error displayed when trying to revoke a role without having the right to do that. msgid "You cannot revoke user roles on this site." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך יכול לבטל תפקידי משתמש ב×תר ×”×–×”." -#: actions/revokerole.php:82 -#, fuzzy -msgid "User doesn't have this role." -msgstr "למשתמש ×ין פרופיל." +#. TRANS: Client error displayed when trying to revoke a role that is not set. +msgid "User does not have this role." +msgstr "" -#: actions/rsd.php:146 actions/version.php:159 +#. TRANS: Engine name for RSD. +#. TRANS: Engine name. msgid "StatusNet" msgstr "סטטיסטיקה" -#: actions/sandbox.php:65 actions/unsandbox.php:65 -#, fuzzy +#. TRANS: Client error displayed trying to sandbox users on a site where the feature is not enabled. +#. TRANS: Client error on page to unsandbox a user when the feature is not enabled. msgid "You cannot sandbox users on this site." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינל יכול להכניס ×ž×©×ª×ž×©×™× ×œ×רגז חול ב×תר ×”×–×”." -#: actions/sandbox.php:72 -#, fuzzy +#. TRANS: Client error displayed trying to sandbox an already sandboxed user. msgid "User is already sandboxed." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש כבר הוכנס ל×רגז חול." -#. TRANS: Menu item for site administration -#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 -#: lib/adminpanelaction.php:379 +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, php-format +msgid "Not a valid list: %s." +msgstr "" + +#. TRANS: Page title for page showing self tags. +#. TRANS: %1$s is a tag, %2$d is a page number. +#, php-format +msgid "Users self-tagged with %1$s, page %2$d" +msgstr "" + +#. TRANS: Title for the sessions administration panel. +msgctxt "TITLE" msgid "Sessions" msgstr "" -#: actions/sessionsadminpanel.php:65 +#. TRANS: Instructions for the sessions administration panel. msgid "Session settings for this StatusNet site" msgstr "" -#: actions/sessionsadminpanel.php:175 +#. TRANS: Fieldset legend on the sessions administration panel. +msgctxt "LEGEND" +msgid "Sessions" +msgstr "" + +#. TRANS: Checkbox title on the sessions administration panel. +#. TRANS: Indicates if StatusNet should handle session administration. msgid "Handle sessions" msgstr "" -#: actions/sessionsadminpanel.php:177 -msgid "Whether to handle sessions ourselves." +#. TRANS: Checkbox title on the sessions administration panel. +#. TRANS: Indicates if StatusNet should handle session administration. +msgid "Handle sessions ourselves." msgstr "" -#: actions/sessionsadminpanel.php:181 +#. TRANS: Checkbox label on the sessions administration panel. +#. TRANS: Indicates if StatusNet should write session debugging output. msgid "Session debugging" msgstr "" -#: actions/sessionsadminpanel.php:183 -msgid "Turn on debugging output for sessions." +#. TRANS: Checkbox title on the sessions administration panel. +msgid "Enable debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 -msgid "Save site settings" -msgstr "הגדרות הפרופיל" +#. TRANS: Title for submit button on the sessions administration panel. +msgid "Save session settings" +msgstr "" -#: actions/showapplication.php:82 +#. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." msgstr "" -#: actions/showapplication.php:157 -#, fuzzy +#. TRANS: Header on the OAuth application page. msgid "Application profile" -msgstr "להודעה ×ין פרופיל" +msgstr "דף יישו×" -#. TRANS: Form input field label for application icon. -#: actions/showapplication.php:159 lib/applicationeditform.php:173 -msgid "Icon" -msgstr "" - -#. TRANS: Form input field label for application name. -#: actions/showapplication.php:169 actions/version.php:197 -#: lib/applicationeditform.php:190 -#, fuzzy -msgid "Name" -msgstr "כינוי" - -#. TRANS: Form input field label. -#: actions/showapplication.php:178 lib/applicationeditform.php:227 -#, fuzzy -msgid "Organization" -msgstr "מיקו×" - -#. TRANS: Form input field label. -#: actions/showapplication.php:187 actions/version.php:200 -#: lib/applicationeditform.php:208 lib/groupeditform.php:175 -#, fuzzy -msgid "Description" -msgstr "הרשמות" - -#. TRANS: Header for group statistics on a group page (h2). -#: actions/showapplication.php:192 actions/showgroup.php:448 -#: lib/profileaction.php:187 -msgid "Statistics" -msgstr "סטטיסטיקה" - -#: actions/showapplication.php:203 +#. TRANS: Information output on an OAuth application page. +#. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", +#. TRANS: %3$d is the number of users using the OAuth application. #, php-format -msgid "Created by %1$s - %2$s access by default - %3$d users" -msgstr "" +msgid "Created by %1$s - %2$s access by default - %3$d user" +msgid_plural "Created by %1$s - %2$s access by default - %3$d users" +msgstr[0] "" +msgstr[1] "" -#: actions/showapplication.php:213 +#. TRANS: Header on the OAuth application page. msgid "Application actions" msgstr "" -#: actions/showapplication.php:236 +#. TRANS: Link text to edit application on the OAuth application page. +msgctxt "EDITAPP" +msgid "Edit" +msgstr "" + +#. TRANS: Button text on the OAuth application page. +#. TRANS: Resets the OAuth consumer key and secret. msgid "Reset key & secret" msgstr "" -#: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 -#, fuzzy -msgid "Delete" -msgstr "מחק" - -#: actions/showapplication.php:261 +#. TRANS: Header on the OAuth application page. msgid "Application info" msgstr "" -#: actions/showapplication.php:263 -msgid "Consumer key" -msgstr "" - -#: actions/showapplication.php:268 -msgid "Consumer secret" -msgstr "" - -#: actions/showapplication.php:273 -msgid "Request token URL" -msgstr "" - -#: actions/showapplication.php:278 -msgid "Access token URL" -msgstr "" - -#: actions/showapplication.php:283 -msgid "Authorize URL" -msgstr "" - -#: actions/showapplication.php:288 +#. TRANS: Note on the OAuth application page about signature support. msgid "" -"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " -"signature method." +"Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " +"not supported." msgstr "" -#: actions/showapplication.php:309 +#. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" -#: actions/showfavorites.php:79 -#, fuzzy, php-format +#. TRANS: Title for all but the first page of favourite notices of a user. +#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number. +#, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "%s וחברי×" +msgstr "×”×¢×“×›×•× ×™× ×”××”×•×‘×™× ×©×œ %1$s, דף %2$d" -#: actions/showfavorites.php:132 -#, fuzzy +#. TRANS: Server error displayed when favourite notices could not be retrieved from the database. msgid "Could not retrieve favorite notices." -msgstr "שמירת הפרופיל נכשלה." +msgstr "×חזור ×¢×“×›×•× ×™× ××”×•×‘×™× ×œ× ×”×¦×œ×™×—." -#: actions/showfavorites.php:171 -#, fuzzy, php-format +#. TRANS: Feed link text. %s is a username. +#, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנת ×”××”×•×‘×™× ×©×œ %s†(RSS 1.0)" -#: actions/showfavorites.php:178 -#, fuzzy, php-format +#. TRANS: Feed link text. %s is a username. +#, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנות ×”××”×•×‘×™× ×©×œ %s†(RSS 2.0)" -#: actions/showfavorites.php:185 -#, fuzzy, php-format +#. TRANS: Feed link text. %s is a username. +#, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "הזנות ×”×—×‘×¨×™× ×©×œ %s" +msgstr "הזנות ×”××”×•×‘×™× ×©×œ %s†(Atom)" -#: actions/showfavorites.php:206 +#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites. msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:208 +#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in. +#. TRANS: %s is a username. #, php-format msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" -#: actions/showfavorites.php:212 +#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in. +#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page. +#. TRANS: (link text)[link] is a Mark Down link. #, php-format msgid "" "%s hasn't added any favorite notices yet. Why not [register an account](%%%%" @@ -5082,102 +4844,71 @@ msgid "" "their favorites :)" msgstr "" -#: actions/showfavorites.php:243 +#. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." msgstr "" #. TRANS: Page title for first group page. %s is a group name. -#: actions/showgroup.php:75 #, php-format msgid "%s group" msgstr "" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. -#: actions/showgroup.php:79 -#, fuzzy, php-format +#, php-format msgid "%1$s group, page %2$d" -msgstr "כל המנויי×" - -#. TRANS: Group profile header (h2). Text hidden by default. -#: actions/showgroup.php:220 -msgid "Group profile" -msgstr "למשתמש ×ין פרופיל." - -#. TRANS: Label for group URL (dt). Text hidden by default. -#: actions/showgroup.php:270 actions/tagother.php:118 -#: actions/userauthorization.php:175 lib/userprofile.php:180 -msgid "URL" -msgstr "" - -#. TRANS: Label for group description or group note (dt). Text hidden by default. -#: actions/showgroup.php:282 actions/tagother.php:128 -#: actions/userauthorization.php:187 lib/userprofile.php:197 -#, fuzzy -msgid "Note" -msgstr "הודעות" - -#. TRANS: Label for group aliases (dt). Text hidden by default. -#: actions/showgroup.php:293 lib/groupeditform.php:187 -msgid "Aliases" -msgstr "" - -#. TRANS: Group actions header (h2). Text hidden by default. -#: actions/showgroup.php:304 -#, fuzzy -msgid "Group actions" -msgstr "קבוצות" +msgstr "הקבוצה %1$s, דף %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. -#: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ הקבוצה %s†(RSS 1.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. -#: actions/showgroup.php:352 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ הקבוצה %s†(RSS 2.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. -#: actions/showgroup.php:359 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Atom)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ הקבוצה %s†(Atom)" #. TRANS: Tooltip for feed link. %s is a group nickname. -#: actions/showgroup.php:365 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s group" -msgstr "הזנת הודעות של %s" +msgstr "×—×‘×¨×™× ×©×œ ×—×‘×¨×™× ×¢×‘×¨ הקבוצה %s" #. TRANS: Header for mini list of group members on a group page (h2). -#: actions/showgroup.php:402 -#, fuzzy msgid "Members" -msgstr "חבר מ××–" +msgstr "חברי×" #. TRANS: Description for mini list of group members on a group page when the group has no members. -#: actions/showgroup.php:408 lib/profileaction.php:117 -#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95 -#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71 +#. TRANS: Content of "Listed" page if there are no listed users. +#. TRANS: Content of "People following tag x" if there are no subscribed users. +#. TRANS: Empty list message for tags. +#. TRANS: Text for user subscription statistics if the user has no subscriptions. +#. TRANS: Text for user subscriber statistics if user has no subscribers. +#. TRANS: Text for user user group membership statistics if user is not a member of any group. +#. TRANS: Default content for section/sidebar widget. msgid "(None)" msgstr "" #. TRANS: Link to all group members from mini list of group members if group has more than n members. -#: actions/showgroup.php:417 msgid "All members" msgstr "" -#. TRANS: Label for creation date in statistics on group page. -#: actions/showgroup.php:453 +#. TRANS: Header for group statistics on a group page (h2). +#. TRANS: H2 text for user statistics. +msgid "Statistics" +msgstr "סטטיסטיקה" + +#. TRANS: Label for group creation date. msgctxt "LABEL" msgid "Created" msgstr "" #. TRANS: Label for member count in statistics on group page. -#: actions/showgroup.php:461 msgctxt "LABEL" msgid "Members" msgstr "" @@ -5186,7 +4917,6 @@ msgstr "" #. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#: actions/showgroup.php:476 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5199,7 +4929,6 @@ msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#: actions/showgroup.php:486 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5208,102 +4937,174 @@ msgid "" "their life and interests. " msgstr "" -#. TRANS: Header for list of group administrators on a group page (h2). -#: actions/showgroup.php:515 +#. TRANS: Title for list of group administrators on a group page. +msgctxt "TITLE" msgid "Admins" msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. -#: actions/showmessage.php:79 -#, fuzzy msgid "No such message." -msgstr "×ין משתמש ×›×–×”." +msgstr "×ין הודעה ×›×–×ת." #. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. -#: actions/showmessage.php:97 msgid "Only the sender and recipient may read this message." msgstr "" #. TRANS: Page title for single direct message display when viewing user is the sender. #. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. -#: actions/showmessage.php:110 #, php-format msgid "Message to %1$s on %2$s" msgstr "" #. TRANS: Page title for single message display. #. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. -#: actions/showmessage.php:118 #, php-format msgid "Message from %1$s on %2$s" msgstr "" -#: actions/shownotice.php:90 -#, fuzzy -msgid "Notice deleted." -msgstr "הודעות" +#. TRANS: Client exception thrown when trying a view a notice the user has no access to. +msgid "Not available." +msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. %1$s is the username, %2$s is the hash tag. -#: actions/showstream.php:70 +#. TRANS: Client error displayed trying to show a deleted notice. +msgid "Notice deleted." +msgstr "העדכון נמחק." + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is a page number. #, php-format -msgid "%1$s tagged %2$s" +msgid "Private timeline for %1$s list by you, page %2$d" +msgstr "" + +#. TRANS: Title for public list timeline where the viewer is the tagger. +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format +msgid "Timeline for %1$s list by you, page %2$d" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format +msgid "Timeline for %1$s list by %2$s, page %3$d" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %s is a list. +#, php-format +msgid "Private timeline of %s list by you" +msgstr "" + +#. TRANS: Title for public list timeline where the viewer is the tagger. +#. TRANS: %s is a list. +#, php-format +msgid "Timeline for %s list by you" +msgstr "" + +#. TRANS: Title for private list timeline. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname. +#, php-format +msgid "Timeline for %1$s list by %2$s" +msgstr "" + +#. TRANS: Feed title. +#. TRANS: %1$s is a list, %2$s is tagger's nickname. +#, php-format +msgid "Feed for %1$s list by %2$s (Atom)" +msgstr "" + +#. TRANS: Empty list message for list timeline. +#. TRANS: %1$s is a list, %2$s is a tagger's nickname. +#, php-format +msgid "" +"This is the timeline for %1$s list by %2$s but no one has posted anything " +"yet." +msgstr "" + +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. +msgid "Try tagging more people." +msgstr "" + +#. TRANS: Additional empty list message for list timeline. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and start following " +"this timeline!" +msgstr "" + +#. TRANS: Header on show list page. +msgid "Listed" +msgstr "" + +#. TRANS: Link for more "People in list x by a user" +#. TRANS: if there are more than the mini list's maximum. +msgid "Show all" +msgstr "" + +#. TRANS: Header for tag subscribers. +#. TRANS: Link description for link to list of users subscribed to a tag. +msgid "Subscribers" +msgstr "מנויי×" + +#. TRANS: Link for more "People following tag x" +#. TRANS: if there are more than the mini list's maximum. +msgid "All subscribers" +msgstr "כל המנויי×" + +#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: %1$s is the username, %2$s is the hash tag. +#, php-format +msgid "Notices by %1$s tagged %2$s" msgstr "" #. TRANS: Page title showing tagged notices in one user's stream. -#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number. -#: actions/showstream.php:74 +#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format -msgid "%1$s tagged %2$s, page %3$d" +msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "" #. TRANS: Extended page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$d is the page number. -#: actions/showstream.php:82 -#, fuzzy, php-format -msgid "%1$s, page %2$d" -msgstr "%s וחברי×" +#, php-format +msgid "Notices by %1$s, page %2$d" +msgstr "" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. -#: actions/showstream.php:127 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ %1$s ×¢× ×”×ª×’ %2$s†(RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#: actions/showstream.php:136 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ %s†(RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#: actions/showstream.php:145 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ %s†(RSS 2.0)" -#: actions/showstream.php:152 -#, fuzzy, php-format +#. TRANS: Title for link to notice feed. +#. TRANS: %s is a user nickname. +#, php-format msgid "Notice feed for %s (Atom)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×©×œ %s†(Atom)" #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. -#: actions/showstream.php:159 #, php-format msgid "FOAF for %s" msgstr "" #. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. -#: actions/showstream.php:211 #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" #. TRANS: Second sentence of empty list message for a stream for the user themselves. -#: actions/showstream.php:217 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -5311,16 +5112,16 @@ msgstr "" #. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. -#: actions/showstream.php:221 #, php-format msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" +"×פשר לנסות לדחוף ×ת %1$s ×ו [לשלוח ×œ×”× ×ž×©×”×•](%%%%action.newnotice%%%%?" +"status_textarea=%2$s)." #. TRANS: Announcement for anonymous users showing a stream if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. -#: actions/showstream.php:264 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5331,7 +5132,6 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#: actions/showstream.php:271 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5340,264 +5140,263 @@ msgid "" msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. -#: actions/showstream.php:328 -#, fuzzy, php-format +#, php-format msgid "Repeat of %s" -msgstr "תגובת עבור %s" +msgstr "הדהוד של %s" -#: actions/silence.php:65 actions/unsilence.php:65 +#. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. +#. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." msgstr "" -#: actions/silence.php:72 -#, fuzzy +#. TRANS: Client error displayed trying to silence an already silenced user. msgid "User is already silenced." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש כבר הושתק" -#: actions/siteadminpanel.php:69 +#. TRANS: Title for site administration panel. +msgctxt "TITLE" +msgid "Site" +msgstr "" + +#. TRANS: Instructions for site administration panel. msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:133 +#. TRANS: Client error displayed trying to save an empty site name. msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:141 +#. TRANS: Client error displayed trying to save site settings without a contact address. msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:159 +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "כתובת סמל בלתי תקינה." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "" + +#. TRANS: Client error displayed trying to save site settings with an invalid language code. +#. TRANS: %s is the invalid language code. #, php-format msgid "Unknown language \"%s\"." msgstr "" -#: actions/siteadminpanel.php:165 +#. TRANS: Client error displayed trying to save site settings with a text limit below 0. msgid "Minimum text limit is 0 (unlimited)." msgstr "" -#: actions/siteadminpanel.php:171 +#. TRANS: Client error displayed trying to save site settings with a text limit below 1. msgid "Dupe limit must be one or more seconds." msgstr "" -#: actions/siteadminpanel.php:221 +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" msgid "General" msgstr "" -#: actions/siteadminpanel.php:224 -#, fuzzy +#. TRANS: Field label on site settings panel. +msgctxt "LABEL" msgid "Site name" -msgstr "הודעה חדשה" - -#: actions/siteadminpanel.php:225 -msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:229 +#. TRANS: Field title on site settings panel. +msgid "The name of your site, like \"Yourcompany Microblog\"." +msgstr "" + +#. TRANS: Field label on site settings panel. msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:230 -msgid "Text used for credits link in footer of each page" +#. TRANS: Field title on site settings panel. +msgid "Text used for credits link in footer of each page." msgstr "" -#: actions/siteadminpanel.php:234 +#. TRANS: Field label on site settings panel. msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:235 -msgid "URL used for credits link in footer of each page" +#. TRANS: Field title on site settings panel. +msgid "URL used for credits link in footer of each page." msgstr "" -#: actions/siteadminpanel.php:239 -msgid "Contact email address for your site" +#. TRANS: Field label on site settings panel. +msgid "Email" msgstr "" -#: actions/siteadminpanel.php:245 -#, fuzzy +#. TRANS: Field title on site settings panel. +msgid "Contact email address for your site." +msgstr "" + +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" msgid "Local" -msgstr "מיקו×" +msgstr "" -#: actions/siteadminpanel.php:256 +#. TRANS: Dropdown label on site settings panel. msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:257 +#. TRANS: Dropdown title on site settings panel. msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:262 +#. TRANS: Dropdown label on site settings panel. msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:263 -msgid "Site language when autodetection from browser settings is not available" +#. TRANS: Dropdown title on site settings panel. +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" -#: actions/siteadminpanel.php:271 +#. TRANS: Fieldset legend on site settings panel. +msgctxt "LEGEND" msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:274 +#. TRANS: Field label on site settings panel. msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:274 +#. TRANS: Field title on site settings panel. msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:278 +#. TRANS: Field label on site settings panel. msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:278 +#. TRANS: Field title on site settings panel. msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "יצי××”" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "סמל ×תר" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "" + +#. TRANS: Button title for saving site settings. +#, fuzzy +msgid "Save the site settings." +msgstr "הגדרות הפרופיל" + #. TRANS: Page title for site-wide notice tab in admin panel. -#: actions/sitenoticeadminpanel.php:55 msgid "Site Notice" -msgstr "הודעות" +msgstr "הודעה לכל ×”×תר" #. TRANS: Instructions for site-wide notice tab in admin panel. -#: actions/sitenoticeadminpanel.php:66 -#, fuzzy msgid "Edit site-wide message" -msgstr "הודעה חדשה" +msgstr "עריכת הודעת לכל ×”×תר" #. TRANS: Server error displayed when saving a site-wide notice was impossible. -#: actions/sitenoticeadminpanel.php:101 -#, fuzzy msgid "Unable to save site notice." -msgstr "בעיה בשמירת ההודעה." +msgstr "×œ× × ×™×ª×Ÿ לשמור ×ת ההודעה ל×תר." #. TRANS: Client error displayed when a site-wide notice was longer than allowed. -#: actions/sitenoticeadminpanel.php:112 msgid "Maximum length for the site-wide notice is 255 characters." msgstr "" #. TRANS: Label for site-wide notice text field in admin panel. -#: actions/sitenoticeadminpanel.php:176 -#, fuzzy msgid "Site notice text" -msgstr "הודעה חדשה" +msgstr "טקסט ההודעה ל×תר" #. TRANS: Tooltip for site-wide notice text field in admin panel. -#: actions/sitenoticeadminpanel.php:179 msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" #. TRANS: Title for button to save site notice in admin panel. -#: actions/sitenoticeadminpanel.php:201 -#, fuzzy -msgid "Save site notice" -msgstr "הודעה חדשה" +msgid "Save site notice." +msgstr "" #. TRANS: Title for SMS settings. -#: actions/smssettings.php:59 msgid "SMS settings" msgstr "הגדרות הפרופיל" #. TRANS: SMS settings page instructions. #. TRANS: %%site.name%% is the name of the site. -#: actions/smssettings.php:74 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" #. TRANS: Message given in the SMS settings if SMS is not enabled on the site. -#: actions/smssettings.php:97 -#, fuzzy msgid "SMS is not available." -msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" +msgstr "שירות ×”×ž×¡×¨×•× ×™× ×ž×‘×•×˜×œ." #. TRANS: Form legend for SMS settings form. -#: actions/smssettings.php:111 -#, fuzzy msgid "SMS address" -msgstr "כתובת ×ž×¡×¨×™× ×ž×™×“×™×™×" +msgstr "כתובת מסרוני×" #. TRANS: Form guide in SMS settings form. -#: actions/smssettings.php:120 msgid "Current confirmed SMS-enabled phone number." msgstr "" #. TRANS: Form guide in IM settings form. -#: actions/smssettings.php:133 msgid "Awaiting confirmation on this phone number." msgstr "" #. TRANS: Field label for SMS address input in SMS settings form. -#: actions/smssettings.php:142 -#, fuzzy msgid "Confirmation code" -msgstr "×ין קוד ×ישור." +msgstr "קוד ×ימות" #. TRANS: Form field instructions in SMS settings form. -#: actions/smssettings.php:144 msgid "Enter the code you received on your phone." msgstr "" #. TRANS: Button label to confirm SMS confirmation code in SMS settings. -#: actions/smssettings.php:148 -#, fuzzy msgctxt "BUTTON" msgid "Confirm" -msgstr "×שר" +msgstr "ל×מת" #. TRANS: Field label for SMS phone number input in SMS settings form. -#: actions/smssettings.php:153 msgid "SMS phone number" msgstr "" #. TRANS: SMS phone number input field instructions in SMS settings form. -#: actions/smssettings.php:156 -#, fuzzy -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "1 עד 64 ×ותיות ×נגליות קטנות ×ו מספרי×, ×œ×œ× ×¡×™×ž× ×™ פיסוק ×ו רווחי×." +msgid "Phone number, no punctuation or spaces, with area code." +msgstr "" #. TRANS: Form legend for SMS preferences form. -#: actions/smssettings.php:195 msgid "SMS preferences" msgstr "העדפות נשמרו." #. TRANS: Checkbox label in SMS preferences form. -#: actions/smssettings.php:201 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #. TRANS: Confirmation message for successful SMS preferences save. -#: actions/smssettings.php:315 -#, fuzzy msgid "SMS preferences saved." -msgstr "העדפות נשמרו." +msgstr "העדפות ×”×ž×¡×¨×•× ×™× × ×©×ž×¨×•." #. TRANS: Message given saving SMS phone number without having provided one. -#: actions/smssettings.php:338 -#, fuzzy msgid "No phone number." -msgstr "×ין משתמש ×›×–×”." +msgstr "×ין מספר טלפון." #. TRANS: Message given saving SMS phone number without having selected a carrier. -#: actions/smssettings.php:344 msgid "No carrier selected." msgstr "" #. TRANS: Message given saving SMS phone number that is already set. -#: actions/smssettings.php:352 -#, fuzzy msgid "That is already your phone number." -msgstr "זהו כבר זיהוי ×”-Jabber שלך." +msgstr "×–×” כבר מספר הטלפון שלך." #. TRANS: Message given saving SMS phone number that is already set for another user. -#: actions/smssettings.php:356 -#, fuzzy msgid "That phone number already belongs to another user." -msgstr "זיהוי ×”-Jabber כבר שייך למשתמש ×חר." +msgstr "מספר הטלפון ×”×–×” כבר שייך למשתמש ×חר." #. TRANS: Message given saving valid SMS phone number that is to be confirmed. -#: actions/smssettings.php:384 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." @@ -5606,42 +5405,36 @@ msgstr "" "×ž×™×“×™×™× ×ליך." #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. -#: actions/smssettings.php:413 -#, fuzzy msgid "That is the wrong confirmation number." -msgstr "זוהי כתובת ×ž×¡×¨×™× ×ž×™×“×™×™× ×©×’×•×™×”." +msgstr "מספר ×”×ימות ×”×–×” שגוי." + +#. TRANS: Server error thrown on database error canceling SMS phone number confirmation. +msgid "Could not delete SMS confirmation." +msgstr "" #. TRANS: Message given after successfully canceling SMS phone number confirmation. -#: actions/smssettings.php:427 msgid "SMS confirmation cancelled." msgstr "×ין קוד ×ישור." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. -#: actions/smssettings.php:448 -#, fuzzy msgid "That is not your phone number." -msgstr "זהו ×œ× ×–×™×”×•×™ ×”-Jabber שלך." +msgstr "זהו ×œ× ×ž×¡×¤×¨ הטלפון שלך." #. TRANS: Message given after successfully removing a registered SMS phone number. -#: actions/smssettings.php:470 -#, fuzzy msgid "The SMS phone number was removed." -msgstr "הכתובת הוסרה." +msgstr "מספר הטלפון ×œ×ž×¡×¨×•× ×™× × ×ž×—×§." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:511 msgid "Mobile carrier" msgstr "" #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. -#: actions/smssettings.php:516 msgid "Select a carrier" msgstr "" #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. -#: actions/smssettings.php:525 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -5649,126 +5442,152 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 -#, fuzzy -msgid "No code entered" -msgstr "×ין תוכן!" +msgid "No code entered." +msgstr "" -#. TRANS: Menu item for site administration -#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 -#: lib/adminpanelaction.php:395 +#. TRANS: Title for admin panel to configure snapshots. +msgctxt "TITLE" msgid "Snapshots" msgstr "" -#: actions/snapshotadminpanel.php:65 -#, fuzzy +#. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" -msgstr "הרשמות" +msgstr "ניהול תצורת היטל־בזק" -#: actions/snapshotadminpanel.php:127 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." msgstr "" -#: actions/snapshotadminpanel.php:133 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid value for frequency. msgid "Snapshot frequency must be a number." msgstr "" -#: actions/snapshotadminpanel.php:144 +#. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." msgstr "" -#: actions/snapshotadminpanel.php:200 +#. TRANS: Fieldset legend on admin panel for snapshots. +msgctxt "LEGEND" +msgid "Snapshots" +msgstr "" + +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "Randomly during web hit" msgstr "" -#: actions/snapshotadminpanel.php:201 +#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. msgid "In a scheduled job" msgstr "" -#: actions/snapshotadminpanel.php:206 +#. TRANS: Dropdown label for snapshot method in admin panel for snapshots. msgid "Data snapshots" msgstr "" -#: actions/snapshotadminpanel.php:208 -msgid "When to send statistical data to status.net servers" +#. TRANS: Dropdown title for snapshot method in admin panel for snapshots. +msgid "When to send statistical data to status.net servers." msgstr "" -#: actions/snapshotadminpanel.php:217 +#. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" msgstr "" -#: actions/snapshotadminpanel.php:218 -msgid "Snapshots will be sent once every N web hits" +#. TRANS: Input field title for snapshot frequency in admin panel for snapshots. +msgid "Snapshots will be sent once every N web hits." msgstr "" -#: actions/snapshotadminpanel.php:226 +#. TRANS: Input field label for snapshot report URL in admin panel for snapshots. msgid "Report URL" msgstr "" -#: actions/snapshotadminpanel.php:227 -msgid "Snapshots will be sent to this URL" +#. TRANS: Input field title for snapshot report URL in admin panel for snapshots. +msgid "Snapshots will be sent to this URL." msgstr "" -#: actions/snapshotadminpanel.php:248 -#, fuzzy -msgid "Save snapshot settings" -msgstr "הגדרות" +#. TRANS: Title for button to save snapshot settings. +msgid "Save snapshot settings." +msgstr "" #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. -#: actions/subedit.php:75 -#, fuzzy msgid "You are not subscribed to that profile." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך מנוי לפרופיל ×”×–×”." #. TRANS: Server error displayed when updating a subscription fails with a database error. #. TRANS: Exception thrown when a subscription could not be stored on the server. -#: actions/subedit.php:89 classes/Subscription.php:141 msgid "Could not save subscription." msgstr "הכנסת מנוי חדש נכשלה." -#: actions/subscribe.php:77 -msgid "This action only accepts POST requests." +#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. +msgid "You may only approve your own pending subscriptions." msgstr "" -#: actions/subscribe.php:117 -#, fuzzy -msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +#. TRANS: Title of the first page showing pending subscribers still awaiting approval. +#. TRANS: %s is the name of the user. +#, php-format +msgid "%s subscribers awaiting approval" +msgstr "" -#: actions/subscribe.php:145 -#, fuzzy +#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. +#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. +#, php-format +msgid "%1$s subscribers awaiting approval, page %2$d" +msgstr "" + +#. TRANS: Page notice for group members page. +msgid "A list of users awaiting approval to subscribe to you." +msgstr "" + +#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "×ינך יכול ×œ×”×™×¨×©× ×œ×¤×¨×•×¤×™×œ מרוחק של OMB 0.01 על־ידי הפעולה ×”×–×ת." + +#. TRANS: Page title when subscription succeeded. msgid "Subscribed" -msgstr "×”×™×¨×©× ×›×ž× ×•×™" +msgstr "רשו×" + +#. TRANS: Client error displayed when trying to perform an action while not logged in. +msgid "You must be logged in to unsubscribe from a list." +msgstr "" + +#. TRANS: Client error displayed when trying to perform an action without providing an ID. +msgid "No ID given." +msgstr "" + +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" +msgstr "" + +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, php-format +msgid "%1$s subscribed to list %2$s by %3$s" +msgstr "" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. -#: actions/subscribers.php:51 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "מנויי×" +msgstr "%s מנויי×" #. TRANS: Header for list of subscribers for a user (not first page). #. TRANS: %1$s is the user's nickname, $2$d is the page number. -#: actions/subscribers.php:55 -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers, page %2$d" -msgstr "כל המנויי×" +msgstr "%1$s מנויי×, דף %2$d" #. TRANS: Page notice for page with an overview of all subscribers #. TRANS: of the logged in user's own profile. -#: actions/subscribers.php:68 msgid "These are the people who listen to your notices." -msgstr "×לה ×”×× ×©×™× ×”×ž××–×™× ×™× ×œ×”×•×“×¢×•×ª שלך." +msgstr "×לה ×”×× ×©×™× ×©×ž××–×™× ×™× ×œ×¢×“×›×•× ×™× ×©×œ×š." #. TRANS: Page notice for page with an overview of all subscribers of a user other #. TRANS: than the logged in user. %s is the user nickname. -#: actions/subscribers.php:74 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "×לה ×”×× ×©×™× ×‘×ž××–×™× ×™× ×œ×”×•×“×¢×•×ª של %s." +msgstr "×לה ×”×× ×©×™× ×©×ž××–×™× ×™× ×œ×¢×“×›×•× ×™× ×©×œ %s." #. TRANS: Subscriber list text when the logged in user has no subscribers. -#: actions/subscribers.php:116 msgid "" "You have no subscribers. Try subscribing to people you know and they might " "return the favor." @@ -5776,7 +5595,6 @@ msgstr "" #. TRANS: Subscriber list text when looking at the subscribers for a of a user other #. TRANS: than the logged in user that has no subscribers. %s is the user nickname. -#: actions/subscribers.php:120 #, php-format msgid "%s has no subscribers. Want to be the first?" msgstr "" @@ -5786,7 +5604,6 @@ msgstr "" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#: actions/subscribers.php:129 #, php-format msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" @@ -5795,29 +5612,25 @@ msgstr "" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. -#: actions/subscriptions.php:55 -#, fuzzy, php-format +#, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "כל המנויי×" +msgstr "%1$s הרשמות, דף %2$d" #. TRANS: Page notice for page with an overview of all subscriptions #. TRANS: of the logged in user's own profile. -#: actions/subscriptions.php:68 msgid "These are the people whose notices you listen to." -msgstr "×לה ×”×× ×©×™× ×©×œ×”×•×“×¢×•×ª ×©×œ×”× ×תה מ×זין." +msgstr "×לה ×”×× ×©×™× ×©×תה מ×זין ×œ×¢×“×›×•× ×™× ×©×œ×”×." #. TRANS: Page notice for page with an overview of all subscriptions of a user other #. TRANS: than the logged in user. %s is the user nickname. -#: actions/subscriptions.php:74 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "×לה ×”×× ×©×™× ×©%s מ×זין להודעות שלה×." +msgstr "×לה ×”×× ×©×™× ×©×ž×©×ª×ž×© %s מ×זין ×œ×¢×“×›×•× ×™× ×©×œ×”×." #. TRANS: Subscription list text when the logged in user has no subscriptions. #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#: actions/subscriptions.php:135 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -5831,354 +5644,397 @@ msgstr "" #. TRANS: than the logged in user that has no subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#: actions/subscriptions.php:143 actions/subscriptions.php:149 -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s כעת מ×זין להודעות שלך ב-%2$s" +msgstr "%s ×ינו מ×זין ל×יש." -#: actions/subscriptions.php:178 +#. TRANS: Atom feed title. %s is a profile nickname. #, php-format msgid "Subscription feed for %s (Atom)" msgstr "" -#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list. -#: actions/subscriptions.php:242 -#, fuzzy -msgid "Jabber" -msgstr "×ין זיהוי Jabber ×›×–×”." +#. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. +msgctxt "LABEL" +msgid "IM" +msgstr "" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. -#: actions/subscriptions.php:257 msgid "SMS" msgstr "סמס" -#: actions/tag.php:69 -#, fuzzy, php-format +#. TRANS: Title for all but the first page of notices with tags. +#. TRANS: %1$s is the tag, %2$d is the page number. +#, php-format msgid "Notices tagged with %1$s, page %2$d" -msgstr "מיקרובלוג מ×ת %s" +msgstr "×¢×“×›×•× ×™× ×¢× ×”×ª×’ %1$s, דף %2$d" -#: actions/tag.php:87 -#, fuzzy, php-format +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×œ×ª×’ %s†(RSS 1.0)" -#: actions/tag.php:93 -#, fuzzy, php-format +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×œ×ª×’ %s†(RSS 2.0)" -#: actions/tag.php:99 -#, fuzzy, php-format +#. TRANS: Link label for feed on "notices with tag" page. +#. TRANS: %s is the tag the feed is for. +#, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "הזנת הודעות של %s" +msgstr "הזנת ×¢×“×›×•× ×™× ×œ×ª×’ %s†(Atom)" -#: actions/tagother.php:39 -#, fuzzy -msgid "No ID argument." -msgstr "×ין מסמך ×›×–×”." - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" +#. TRANS: Client error displayed when trying to tag a user that cannot be tagged. +#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. +#. TRANS: Error displayed when trying to tag a user that cannot be tagged. +msgid "You cannot tag this user." msgstr "" -#: actions/tagother.php:77 lib/userprofile.php:76 -#, fuzzy +#. TRANS: Title for list form when not on a profile page. +msgid "List a profile" +msgstr "" + +#. TRANS: Title for list form when on a profile page. +#. TRANS: %s is a profile nickname. +#, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "" + +#. TRANS: Title for list form when an error has occurred. +msgctxt "TITLE" +msgid "Error" +msgstr "" + +#. TRANS: Header in list form. msgid "User profile" -msgstr "למשתמש ×ין פרופיל." +msgstr "דף משתמש." -#: actions/tagother.php:81 actions/userauthorization.php:132 -#: lib/userprofile.php:107 -msgid "Photo" +#. TRANS: Fieldset legend for list form. +msgid "List user" msgstr "" -#: actions/tagother.php:141 -msgid "Tag user" +#. TRANS: Field label on list form. +msgctxt "LABEL" +msgid "Lists" msgstr "" -#: actions/tagother.php:151 +#. TRANS: Field title on list form. msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " +"separated." msgstr "" -#: actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +#. TRANS: Title for personal tag cloud section. +msgctxt "TITLE" +msgid "Tags" msgstr "" -#: actions/tagother.php:200 -msgid "Could not save tags." -msgstr "שמירת הפרופיל נכשלה." - -#: actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." +#. TRANS: Success message if lists are saved. +msgid "Lists saved." msgstr "" -#: actions/tagrss.php:35 -#, fuzzy +#. TRANS: Page notice. +msgid "Use this form to add your subscribers or subscriptions to lists." +msgstr "" + +#. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." -msgstr "×ין הודעה כזו." +msgstr "×ין תג ×›×–×”." -#: actions/unblock.php:59 -#, fuzzy +#. TRANS: Client error displayed when trying to unblock a non-blocked user. msgid "You haven't blocked that user." -msgstr "כבר נכנסת למערכת!" +msgstr "×œ× ×—×¡×ž×ª ×ת המשתמש ×”×–×”." -#: actions/unsandbox.php:72 -#, fuzzy +#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed. msgid "User is not sandboxed." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש ×œ× ×‘×רגז חול." -#: actions/unsilence.php:72 -#, fuzzy +#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced. msgid "User is not silenced." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש ×œ× ×ž×•×©×ª×§." -#: actions/unsubscribe.php:77 -msgid "No profile ID in request." -msgstr "×œ× ×”×ª×‘×§×© ×ישור!" - -#: actions/unsubscribe.php:98 -#, fuzzy +#. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" -msgstr "בטל מנוי" +msgstr "המינוי בוטל" -#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" +msgstr "" + +#. TRANS: Client error displayed when trying to update profile with an incompatible license. +#. TRANS: %1$s is the license incompatible with site license %2$s. +#. TRANS: Exception thrown when licenses are not compatible for an authorisation request. +#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site. #, php-format msgid "" -"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" +"\"." msgstr "" -#. TRANS: User admin panel title -#: actions/useradminpanel.php:58 +#. TRANS: Title of URL settings tab in profile settings. +msgid "URL settings" +msgstr "" + +#. TRANS: Instructions for tab "Other" in user profile settings. +msgid "Manage various other options." +msgstr "" + +#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a +#. TRANS: user's profile settings. This message has one space at the beginning. Use your +#. TRANS: language's word separator here if it has one (most likely a single space). +msgid " (free service)" +msgstr "" + +#. TRANS: Default value for URL shortening settings. +msgid "[none]" +msgstr "" + +#. TRANS: Default value for URL shortening settings. +msgid "[internal]" +msgstr "" + +#. TRANS: Label for dropdown with URL shortener services. +msgid "Shorten URLs with" +msgstr "" + +#. TRANS: Tooltip for for dropdown with URL shortener services. +msgid "Automatic shortening service to use." +msgstr "" + +#. TRANS: Field label in URL settings in profile. +msgid "URL longer than" +msgstr "" + +#. TRANS: Field title in URL settings in profile. +msgid "URLs longer than this will be shortened, 0 means always shorten." +msgstr "" + +#. TRANS: Field label in URL settings in profile. +msgid "Text longer than" +msgstr "" + +#. TRANS: Field title in URL settings in profile. +msgid "" +"URLs in notices longer than this will be shortened, 0 means always shorten." +msgstr "" + +#. TRANS: Form validation error for form "Other settings" in user profile. +msgid "URL shortening service is too long (maximum 50 characters)." +msgstr "" + +#. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. +msgid "Invalid number for maximum URL length." +msgstr "" + +#. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. +msgid "Invalid number for maximum notice length." +msgstr "" + +#. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. +msgid "Error saving user URL shortening preferences." +msgstr "" + +#. TRANS: User admin panel title. msgctxt "TITLE" msgid "User" msgstr "משתמש" #. TRANS: Instruction for user admin panel. -#: actions/useradminpanel.php:69 msgid "User settings for this StatusNet site" msgstr "" #. TRANS: Form validation error in user admin panel when a non-numeric character limit was set. -#: actions/useradminpanel.php:147 msgid "Invalid bio limit. Must be numeric." msgstr "" #. TRANS: Form validation error in user admin panel when welcome text is too long. -#: actions/useradminpanel.php:154 msgid "Invalid welcome text. Maximum length is 255 characters." msgstr "" #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. -#: actions/useradminpanel.php:166 #, php-format -msgid "Invalid default subscripton: '%1$s' is not a user." +msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" -#. TRANS: Link description in user account settings menu. -#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106 -#: lib/personalgroupnav.php:112 +#. TRANS: Fieldset legend in user administration panel. +msgctxt "LEGEND" msgid "Profile" -msgstr "פרופיל" +msgstr "" #. TRANS: Field label in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:220 msgid "Bio Limit" msgstr "" #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. -#: actions/useradminpanel.php:222 msgid "Maximum length of a profile bio in characters." msgstr "" #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:231 msgid "New users" msgstr "הודעה חדשה" #. TRANS: Field label in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:236 msgid "New user welcome" msgstr "" #. TRANS: Tooltip in user admin panel for setting new user welcome text. -#: actions/useradminpanel.php:238 msgid "Welcome text for new users (maximum 255 characters)." msgstr "" #. TRANS: Field label in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:244 -#, fuzzy msgid "Default subscription" -msgstr "כל המנויי×" +msgstr "מינוי בררת מחדל" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. -#: actions/useradminpanel.php:246 -#, fuzzy msgid "Automatically subscribe new users to this user." -msgstr "ההרשמה ×ושרה" +msgstr "×œ×¨×©×•× ×ž×©×ª×ž×©×™× ×—×“×©×™× ×œ×ž×©×ª×ž×© ×”×–×” ב×ופן ×וטומטי." #. TRANS: Form legend in user admin panel. -#: actions/useradminpanel.php:256 -#, fuzzy msgid "Invitations" -msgstr "מיקו×" +msgstr "הזמנות" #. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:262 msgid "Invitations enabled" msgstr "" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. -#: actions/useradminpanel.php:265 msgid "Whether to allow users to invite new users." msgstr "" #. TRANS: Title for button to save user settings in user admin panel. -#: actions/useradminpanel.php:302 -msgid "Save user settings" +msgid "Save user settings." msgstr "" -#: actions/userauthorization.php:105 +#. TRANS: Page title. msgid "Authorize subscription" msgstr "×שר מנוי" -#: actions/userauthorization.php:110 -#, fuzzy +#. TRANS: Page notice on "Authorize subscription" page. msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Rejectâ€." -msgstr "" -"בדוק ×ת ×”×¤×¨×˜×™× ×›×“×™ ×œ×•×•×“× ×©×‘×¨×¦×•× ×š ×œ×”×™×¨×©× ×›×ž× ×•×™ להודעות משתמש ×–×”. ×× ×ינך רוצה " -"להירש×, לחץ \"בטל\"." - -#. TRANS: Menu item for site administration -#: actions/userauthorization.php:196 actions/version.php:167 -#: lib/adminpanelaction.php:403 -msgid "License" +"click \"Reject\"." msgstr "" -#: actions/userauthorization.php:217 +#. TRANS: Button text on Authorise Subscription page. +#. TRANS: Submit button text to accept a group membership request on approve group form. +#. TRANS: Submit button text to accept a subscription request on approve sub form. +msgctxt "BUTTON" msgid "Accept" -msgstr "קבל" +msgstr "" -#: actions/userauthorization.php:218 lib/subscribeform.php:115 -#: lib/subscribeform.php:139 -msgid "Subscribe to this user" -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +#. TRANS: Title for button on Authorise Subscription page. +#. TRANS: Button title to subscribe to a user. +msgid "Subscribe to this user." +msgstr "" -#: actions/userauthorization.php:219 +#. TRANS: Button text on Authorise Subscription page. +#. TRANS: Submit button text to reject a group membership request on approve group form. +#. TRANS: Submit button text to reject a subscription request on approve sub form. +msgctxt "BUTTON" msgid "Reject" -msgstr "דחה" +msgstr "" -#: actions/userauthorization.php:220 -msgid "Reject this subscription" -msgstr "×שר מנוי" +#. TRANS: Title for button on Authorise Subscription page. +msgid "Reject this subscription." +msgstr "" -#: actions/userauthorization.php:232 +#. TRANS: Client error displayed for an empty authorisation request. msgid "No authorization request!" msgstr "×œ× ×”×ª×‘×§×© ×ישור!" -#: actions/userauthorization.php:254 +#. TRANS: Accept message header from Authorise subscription page. msgid "Subscription authorized" msgstr "ההרשמה ×ושרה" -#: actions/userauthorization.php:256 -#, fuzzy +#. TRANS: Accept message text from Authorise subscription page. msgid "" "The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " +"with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" "המנוי ×ושר, ×בל ×œ× ×”×ª×§×‘×œ×” כתובת ×ליה ניתן לחזור. בדוק ×ת הור×ות ×”×תר וחפש " "כיצד ל×שר מנוי. ×סימון המנוי שלך הו×:" -#: actions/userauthorization.php:266 +#. TRANS: Reject message header from Authorise subscription page. msgid "Subscription rejected" msgstr "ההרשמה נדחתה" -#: actions/userauthorization.php:268 -#, fuzzy +#. TRANS: Reject message from Authorise subscription page. msgid "" "The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " +"with the site's instructions for details on how to fully reject the " "subscription." msgstr "" "המנוי נדחה, ×בל ×œ× ×”×ª×§×‘×œ×” כתובת לחזרה. בדוק ×ת הור×ות ×”×תר וחפש כיצד ×œ×”×©×œ×™× " "דחיית מנוי." -#: actions/userauthorization.php:303 +#. TRANS: Exception thrown when no valid user is found for an authorisation request. +#. TRANS: %s is a listener URI. #, php-format -msgid "Listener URI ‘%s’ not found here." +msgid "Listener URI \"%s\" not found here." msgstr "" -#: actions/userauthorization.php:308 +#. TRANS: Exception thrown when listenee URI is too long for an authorisation request. +#. TRANS: %s is a listenee URI. #, php-format -msgid "Listenee URI ‘%s’ is too long." +msgid "Listenee URI \"%s\" is too long." msgstr "" -#: actions/userauthorization.php:314 +#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. +#. TRANS: %s is a listenee URI. #, php-format -msgid "Listenee URI ‘%s’ is a local user." +msgid "Listenee URI \"%s\" is a local user." msgstr "" -#: actions/userauthorization.php:329 +#. TRANS: Exception thrown when profile URL is a local user for an authorisation request. +#. TRANS: %s is a profile URL. #, php-format -msgid "Profile URL ‘%s’ is for a local user." +msgid "Profile URL \"%s\" is for a local user." msgstr "" -#: actions/userauthorization.php:345 +#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. +#. TRANS: %s is an avatar URL. #, php-format -msgid "Avatar URL ‘%s’ is not valid." +msgid "Avatar URL \"%s\" is not valid." msgstr "" -#: actions/userauthorization.php:350 -#, fuzzy, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "×œ× × ×™×ª×Ÿ ×œ×§×¨×•× ×ת ×”-URL '%s' של התמונה" - -#: actions/userauthorization.php:355 -#, fuzzy, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "סוג התמונה של '%s' ×ינו מת××™×" - -#. TRANS: Page title for profile design page. -#: actions/userdesignsettings.php:76 lib/designsettings.php:63 -#, fuzzy -msgid "Profile design" -msgstr "הגדרות הפרופיל" - -#. TRANS: Instructions for profile design page. -#: actions/userdesignsettings.php:87 lib/designsettings.php:74 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." +#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. +#. TRANS: %s is an avatar URL. +#, php-format +msgid "Cannot read avatar URL \"%s\"." msgstr "" -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" +#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. +#. TRANS: %s is an avatar URL. +#, php-format +msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number. -#: actions/usergroups.php:66 -#, fuzzy, php-format +#. TRANS: Page title for all but the first page of groups for a user. +#. TRANS: %1$s is a nickname, %2$d is a page number. +#, php-format msgid "%1$s groups, page %2$d" -msgstr "כל המנויי×" +msgstr "%1$s קבוצת, דף %2$d" -#: actions/usergroups.php:132 +#. TRANS: Link text on group page to search for groups. msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:159 -#, fuzzy, php-format +#. TRANS: Text on group page for a user that is not a member of any group. +#. TRANS: %s is a user nickname. +#, php-format msgid "%s is not a member of any group." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "%s ×ינו חבר ×‘×©×•× ×§×‘×•×¦×”." -#: actions/usergroups.php:164 +#. TRANS: Text on group page for a user that is not a member of any group. This message contains +#. TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed. #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" @@ -6188,29 +6044,32 @@ msgstr "" #. TRANS: %1$s is a group name, %2$s is a site name. #. TRANS: Message is used as a subtitle in atom user notice feed. #. TRANS: %1$s is a user name, %2$s is a site name. -#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70 -#: lib/atomusernoticefeed.php:75 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" -#: actions/version.php:75 -#, fuzzy, php-format +#. TRANS: Title for version page. %s is the StatusNet version. +#, php-format msgid "StatusNet %s" -msgstr "סטטיסטיקה" +msgstr "StatusNet %s" -#: actions/version.php:155 +#. TRANS: Content part of StatusNet version page. +#. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. #, php-format msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" -#: actions/version.php:163 +#. TRANS: Header for StatusNet contributors section on the version page. msgid "Contributors" msgstr "" -#: actions/version.php:170 +#. TRANS: Header for StatusNet license section on the version page. +msgid "License" +msgstr "" + +#. TRANS: Content part of StatusNet version page. msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " @@ -6218,7 +6077,7 @@ msgid "" "any later version. " msgstr "" -#: actions/version.php:176 +#. TRANS: Content part of StatusNet version page. msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -6226,55 +6085,60 @@ msgid "" "for more details. " msgstr "" -#: actions/version.php:182 +#. TRANS: Content part of StatusNet version page. +#. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". #, php-format msgid "" "You should have received a copy of the GNU Affero General Public License " "along with this program. If not, see %s." msgstr "" -#: actions/version.php:191 +#. TRANS: Header for StatusNet plugins section on the version page. msgid "Plugins" msgstr "" -#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site. -#: actions/version.php:198 lib/action.php:885 -#, fuzzy -msgid "Version" -msgstr "×ישי" +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Name" +msgstr "" -#: actions/version.php:199 +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Version" +msgstr "" + +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" msgid "Author(s)" msgstr "" +#. TRANS: Column header for plugins table on version page. +msgctxt "HEADER" +msgid "Description" +msgstr "" + #. TRANS: Activity title when marking a notice as favorite. -#: classes/Fave.php:164 lib/favorform.php:143 -#, fuzzy msgid "Favor" -msgstr "מועדפי×" +msgstr "ל×הוב" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. -#: classes/Fave.php:167 #, php-format msgid "%1$s marked notice %2$s as a favorite." msgstr "" #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:156 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:188 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#: classes/File.php:204 #, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " @@ -6287,7 +6151,6 @@ msgstr[1] "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#: classes/File.php:217 #, php-format msgid "A file this large would exceed your user quota of %d byte." msgid_plural "A file this large would exceed your user quota of %d bytes." @@ -6296,7 +6159,6 @@ msgstr[1] "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. -#: classes/File.php:229 #, php-format msgid "A file this large would exceed your monthly quota of %d byte." msgid_plural "A file this large would exceed your monthly quota of %d bytes." @@ -6304,167 +6166,150 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:276 classes/File.php:291 -#, fuzzy msgid "Invalid filename." -msgstr "גודל ×œ× ×—×•×§×™." - -#. TRANS: Exception thrown when joining a group fails. -#: classes/Group_member.php:51 -#, fuzzy -msgid "Group join failed." -msgstr "×ין הודעה כזו." - -#. TRANS: Exception thrown when trying to leave a group the user is not a member of. -#: classes/Group_member.php:64 -#, fuzzy -msgid "Not part of group." -msgstr "עידכון המשתמש נכשל." - -#. TRANS: Exception thrown when trying to leave a group fails. -#: classes/Group_member.php:72 -#, fuzzy -msgid "Group leave failed." -msgstr "×ין הודעה כזו." +msgstr "×©× ×§×•×‘×¥ ×œ× ×ª×§×™×Ÿ." #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. -#: classes/Group_member.php:85 #, php-format msgid "Profile ID %s is invalid." msgstr "" #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. -#: classes/Group_member.php:98 #, php-format msgid "Group ID %s is invalid." msgstr "" +#. TRANS: Exception thrown when joining a group fails. +msgid "Group join failed." +msgstr "הצטרפות לקבוצה נכשלה." + +#. TRANS: Exception thrown when trying to leave a group the user is not a member of. +msgid "Not part of group." +msgstr "×œ× ×—×œ×§ מקבוצה." + +#. TRANS: Exception thrown when trying to leave a group fails. +msgid "Group leave failed." +msgstr "עזיבת הקבוצה נכשלה." + #. TRANS: Activity title. -#: classes/Group_member.php:147 lib/joinform.php:114 -#, fuzzy msgid "Join" -msgstr "היכנס" +msgstr "להצטרף" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:151 #, php-format msgid "%1$s has joined group %2$s." msgstr "" #. TRANS: Server exception thrown when updating a local group fails. -#: classes/Local_group.php:42 -#, fuzzy msgid "Could not update local group." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×¦×œ×™×— עדכון קבוצה מקומית." #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. -#: classes/Login_token.php:78 -#, fuzzy, php-format +#, php-format msgid "Could not create login token for %s" -msgstr "שמירת מידע התמונה נכשל" +msgstr "×œ× ×”×¦×œ×™×—×” יצירת ×סימון התחברות עבור %s" #. TRANS: Exception thrown when database name or Data Source Name could not be found. -#: classes/Memcached_DataObject.php:537 msgid "No database name or DSN found anywhere." msgstr "" #. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. -#: classes/Message.php:45 msgid "You are banned from sending direct messages." msgstr "" #. TRANS: Message given when a message could not be stored on the server. -#: classes/Message.php:69 -#, fuzzy msgid "Could not insert message." -msgstr "הכנסת מנוי חדש נכשלה." +msgstr "×œ× ×”×¦×œ×™×—×” הכנסת הודעה." #. TRANS: Message given when a message could not be updated on the server. -#: classes/Message.php:80 -#, fuzzy msgid "Could not update message with new URI." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×¦×œ×™×— עדכון ההודעה ×¢× ×›×ª×•×‘×ª חדשה." #. TRANS: Server exception thrown when a user profile for a notice cannot be found. #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). -#: classes/Notice.php:98 #, php-format msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" #. TRANS: Server exception. %s are the error details. -#: classes/Notice.php:199 #, php-format -msgid "Database error inserting hashtag: %s" -msgstr "שגי××” בהכנסת התמונה." +msgid "Database error inserting hashtag: %s." +msgstr "" #. TRANS: Client exception thrown if a notice contains too many characters. -#: classes/Notice.php:279 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "בעיה בשמירת ההודעה." +msgstr "בעיה בשמירת העדכון. ×רוך מדי." #. TRANS: Client exception thrown when trying to save a notice for an unknown user. -#: classes/Notice.php:284 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "בעיה בשמירת ההודעה." +msgstr "בעיה בשמירת העדכון. משתמש ×œ× ×™×“×•×¢." #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. -#: classes/Notice.php:290 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" #. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame. -#: classes/Notice.php:297 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" #. TRANS: Client exception thrown when a user tries to post while being banned. -#: classes/Notice.php:305 msgid "You are banned from posting notices on this site." msgstr "" +#. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. +msgid "Cannot repeat; original notice is missing or deleted." +msgstr "××™Ö¾×פשר להדהד; העדכון המקורי חסר ×ו נמחק." + +#. TRANS: Client error displayed when trying to repeat an own notice. +msgid "You cannot repeat your own notice." +msgstr "××™Ö¾×פשר להדהד הודעה של עצמך." + +#. TRANS: Client error displayed when trying to repeat a non-public notice. +msgid "Cannot repeat a private notice." +msgstr "××™Ö¾×פשר להדהד עדכון פרטי." + +#. TRANS: Client error displayed when trying to repeat a notice you cannot access. +msgid "Cannot repeat a notice you cannot read." +msgstr "××™Ö¾×פשר להדהד עדכון ש×ינך יכולה לקרו×." + +#. TRANS: Client error displayed when trying to repeat an already repeated notice. +msgid "You already repeated that notice." +msgstr "כבר הדהדת ×ת העדכון ×”×–×”." + +#. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. +#. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). +#, php-format +msgid "%1$s has no access to notice %2$d." +msgstr "" + #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. -#: classes/Notice.php:372 classes/Notice.php:399 msgid "Problem saving notice." -msgstr "בעיה בשמירת ההודעה." +msgstr "בעיה בשמירת העדכון." #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:914 msgid "Bad type provided to saveKnownGroups." msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1013 -#, fuzzy msgid "Problem saving group inbox." -msgstr "בעיה בשמירת ההודעה." - -#. TRANS: Server exception thrown when a reply cannot be saved. -#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. -#: classes/Notice.php:1127 -#, php-format -msgid "Could not save reply for %1$d, %2$d." -msgstr "" +msgstr "בעיה בשמירת תיבת ההודעות הנכנסות של הקבוצה." #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. -#: classes/Notice.php:1646 #, php-format msgid "RT @%1$s %2$s" msgstr "" +#. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens -#: classes/Profile.php:172 classes/User_group.php:242 #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" @@ -6472,396 +6317,261 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:765 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:774 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +#. TRANS: Server exception. +msgid "The tag you are trying to rename to already exists." +msgstr "" + +#. TRANS: Server exception saving new tag without having a tagger specified. +msgid "No tagger specified." +msgstr "" + +#. TRANS: Server exception saving new tag without having a tag specified. +msgid "No tag specified." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not create profile tag." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not set profile tag URI." +msgstr "" + +#. TRANS: Server exception saving new tag. +msgid "Could not set profile tag mainpage." +msgstr "" + +#. TRANS: Client exception thrown trying to set more tags than allowed. +#, php-format +msgid "" +"You already have created %d or more tags which is the maximum allowed number " +"of tags. Try using or deleting some existing tags." +msgstr "" + +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, php-format +msgid "" +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." +msgstr "" + +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +msgid "Adding list subscription failed." +msgstr "" + +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +msgid "Removing list subscription failed." +msgstr "" + #. TRANS: Exception thrown when a right for a non-existing user profile is checked. -#: classes/Remote_profile.php:54 -#, fuzzy msgid "Missing profile." -msgstr "למשתמש ×ין פרופיל." +msgstr "דף משתמש חסר." #. TRANS: Exception thrown when a tag cannot be saved. -#: classes/Status_network.php:338 -#, fuzzy msgid "Unable to save tag." -msgstr "בעיה בשמירת ההודעה." +msgstr "×œ× ×ž×¦×œ×™×— לשמור תג." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. -#: classes/Subscription.php:77 lib/oauthstore.php:482 +#. TRANS: Error message displayed to a banned user when they try to subscribe. msgid "You have been banned from subscribing." msgstr "" #. TRANS: Exception thrown when trying to subscribe while already subscribed. -#: classes/Subscription.php:82 -#, fuzzy msgid "Already subscribed!" -msgstr "×œ× ×ž× ×•×™!" +msgstr "כבר מנוי!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. -#: classes/Subscription.php:87 -#, fuzzy msgid "User has blocked you." -msgstr "למשתמש ×ין פרופיל." +msgstr "המשתמש ×—×¡× ×ותך." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. -#: classes/Subscription.php:176 -#, fuzzy msgid "Not subscribed!" msgstr "×œ× ×ž× ×•×™!" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. -#: classes/Subscription.php:183 msgid "Could not delete self-subscription." msgstr "הכנסת מנוי חדש נכשלה." #. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. -#: classes/Subscription.php:211 msgid "Could not delete subscription OMB token." msgstr "הכנסת מנוי חדש נכשלה." #. TRANS: Exception thrown when a subscription could not be deleted on the server. -#: classes/Subscription.php:223 msgid "Could not delete subscription." msgstr "הכנסת מנוי חדש נכשלה." -#. TRANS: Activity tile when subscribing to another person. -#: classes/Subscription.php:265 +#. TRANS: Activity title when subscribing to another person. +msgctxt "TITLE" msgid "Follow" msgstr "" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. -#: classes/Subscription.php:268 #, php-format msgid "%1$s is now following %2$s." msgstr "" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. -#: classes/User.php:395 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" +#. TRANS: Exception thrown when trying view "repeated to me". +msgid "Not implemented since inbox change." +msgstr "" + #. TRANS: Server exception. -#: classes/User.php:918 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:922 msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "שגי××” בשמירת ×ישור הכתובת." + #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:516 msgid "Could not create group." msgstr "עידכון המשתמש נכשל." #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:526 msgid "Could not set group URI." msgstr "שמירת הפרופיל נכשלה." #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:549 msgid "Could not set group membership." msgstr "עידכון המשתמש נכשל." #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:564 msgid "Could not save local group info." msgstr "שמירת הפרופיל נכשלה." -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:104 -#, fuzzy -msgid "Change your profile settings" -msgstr "הגדרות הפרופיל" - -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:111 -#, fuzzy -msgid "Upload an avatar" -msgstr "עדכון התמונה נכשל." - -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:118 -#, fuzzy -msgid "Change your password" -msgstr "שנה סיסמה" - -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:125 -msgid "Change email handling" +#. TRANS: Exception thrown when an account could not be located when it should be moved. +#. TRANS: %s is the remote site. +#, php-format +msgid "Cannot locate account %s." msgstr "" -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:132 -#, fuzzy -msgid "Design your profile" -msgstr "למשתמש ×ין פרופיל." - -#. TRANS: Link title attribute in user account settings menu. -#: lib/accountsettingsaction.php:139 -msgid "Other options" +#. TRANS: Exception thrown when a service document could not be located account move. +#. TRANS: %s is the remote site. +#, php-format +msgid "Cannot find XRD for %s." msgstr "" -#. TRANS: Link description in user account settings menu. -#: lib/accountsettingsaction.php:141 -msgid "Other" +#. TRANS: Exception thrown when an account could not be located when it should be moved. +#. TRANS: %s is the remote site. +#, php-format +msgid "No AtomPub API service for %s." +msgstr "" + +#. TRANS: H2 for user actions in a profile. +#. TRANS: H2 for entity actions in a profile. +msgid "User actions" +msgstr "" + +#. TRANS: Text shown in user profile of not yet compeltely deleted users. +msgid "User deletion in progress..." +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Edit profile settings." +msgstr "" + +#. TRANS: Link text for link on user profile. +msgctxt "BUTTON" +msgid "Edit" +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Send a direct message to this user." +msgstr "" + +#. TRANS: Link text for link on user profile. +msgctxt "BUTTON" +msgid "Message" +msgstr "" + +#. TRANS: Label text on user profile to select a user role. +msgid "Moderate" +msgstr "" + +#. TRANS: Label text on user profile to select a user role. +msgid "User role" +msgstr "תפקיד משתמש" + +#. TRANS: Role that can be set for a user profile. +msgctxt "role" +msgid "Administrator" +msgstr "" + +#. TRANS: Role that can be set for a user profile. +msgctxt "role" +msgid "Moderator" msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: lib/action.php:148 -#, fuzzy, php-format +#, php-format msgid "%1$s - %2$s" -msgstr "הסטטוס של %1$s ב-%2$s " +msgstr "%1$s†– %2$s" #. TRANS: Page title for a page without a title set. -#: lib/action.php:164 msgid "Untitled page" msgstr "" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. -#: lib/action.php:312 msgctxt "TOOLTIP" msgid "Show more" msgstr "" -#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. -#: lib/action.php:531 -msgid "Primary site navigation" +#. TRANS: Inline reply form submit button: submits a reply comment. +msgctxt "BUTTON" +msgid "Reply" msgstr "" -#. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:537 -msgctxt "TOOLTIP" -msgid "Personal profile and friends timeline" +#. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. +#. TRANS: Field label for reply mini form. +msgid "Write a reply..." msgstr "" -#. TRANS: Main menu option when logged in for access to personal profile and friends timeline -#: lib/action.php:540 -#, fuzzy -msgctxt "MENU" -msgid "Personal" -msgstr "×ישי" - -#. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:542 -#, fuzzy -msgctxt "TOOLTIP" -msgid "Change your email, avatar, password, profile" -msgstr "שנה סיסמה" - -#. TRANS: Main menu option when logged in for access to user settings -#: lib/action.php:545 -#, fuzzy -msgid "Account" -msgstr "×ודות" - -#. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:547 -#, fuzzy -msgctxt "TOOLTIP" -msgid "Connect to services" -msgstr "נכשלה ההפניה לשרת: %s" - -#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services -#: lib/action.php:550 -msgid "Connect" -msgstr "התחבר" - -#. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:553 -#, fuzzy -msgctxt "TOOLTIP" -msgid "Change site configuration" -msgstr "הרשמות" - -#. TRANS: Main menu option when logged in and site admin for access to site configuration -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/action.php:556 lib/groupnav.php:117 -msgctxt "MENU" -msgid "Admin" -msgstr "" - -#. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:560 -#, php-format -msgctxt "TOOLTIP" -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users -#: lib/action.php:563 -#, fuzzy -msgctxt "MENU" -msgid "Invite" -msgstr "גודל ×œ× ×—×•×§×™." - -#. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:569 -msgctxt "TOOLTIP" -msgid "Logout from the site" -msgstr "" - -#. TRANS: Main menu option when logged in to log out the current user -#: lib/action.php:572 -#, fuzzy -msgctxt "MENU" -msgid "Logout" -msgstr "צ×" - -#. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:577 -#, fuzzy -msgctxt "TOOLTIP" -msgid "Create an account" -msgstr "צור חשבון חדש" - -#. TRANS: Main menu option when not logged in to register a new account -#: lib/action.php:580 -#, fuzzy -msgctxt "MENU" -msgid "Register" -msgstr "הירש×" - -#. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:583 -msgctxt "TOOLTIP" -msgid "Login to the site" -msgstr "" - -#. TRANS: Main menu option when not logged in to log in -#: lib/action.php:586 -#, fuzzy -msgctxt "MENU" -msgid "Login" -msgstr "היכנס" - -#. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:589 -#, fuzzy -msgctxt "TOOLTIP" -msgid "Help me!" -msgstr "עזרה" - -#. TRANS: Main menu option for help on the StatusNet site -#: lib/action.php:592 -#, fuzzy -msgctxt "MENU" -msgid "Help" -msgstr "עזרה" - -#. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:595 -msgctxt "TOOLTIP" -msgid "Search for people or text" -msgstr "" - -#. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: lib/action.php:598 -#, fuzzy -msgctxt "MENU" -msgid "Search" -msgstr "חיפוש" - -#. TRANS: DT element for site notice. String is hidden in default CSS. -#. TRANS: Menu item for site administration -#: lib/action.php:620 lib/adminpanelaction.php:387 -#, fuzzy -msgid "Site notice" -msgstr "הודעה חדשה" - -#. TRANS: DT element for local views block. String is hidden in default CSS. -#: lib/action.php:687 -msgid "Local views" -msgstr "" - -#. TRANS: DT element for page notice. String is hidden in default CSS. -#: lib/action.php:757 -#, fuzzy -msgid "Page notice" -msgstr "הודעה חדשה" - -#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. -#: lib/action.php:858 -#, fuzzy -msgid "Secondary site navigation" -msgstr "הרשמות" - -#. TRANS: Secondary navigation menu option leading to help on StatusNet. -#: lib/action.php:864 -msgid "Help" -msgstr "עזרה" - -#. TRANS: Secondary navigation menu option leading to text about StatusNet site. -#: lib/action.php:867 -msgid "About" -msgstr "×ודות" - -#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. -#: lib/action.php:870 -msgid "FAQ" -msgstr "רשימת ש×לות נפוצות" - -#. TRANS: Secondary navigation menu option leading to Terms of Service. -#: lib/action.php:875 -msgid "TOS" -msgstr "" - -#. TRANS: Secondary navigation menu option leading to privacy policy. -#: lib/action.php:879 -msgid "Privacy" -msgstr "פרטיות" - -#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license. -#: lib/action.php:882 -msgid "Source" -msgstr "מקור" - -#. TRANS: Secondary navigation menu option leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#: lib/action.php:889 -msgid "Contact" -msgstr "צור קשר" - -#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget. -#: lib/action.php:892 -msgid "Badge" -msgstr "" - -#. TRANS: DT element for StatusNet software license. -#: lib/action.php:921 -msgid "StatusNet software license" +#. TRANS: Tab on the notice form. +msgctxt "TAB" +msgid "Status" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:928 -#, fuzzy, php-format +#, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** ×”×•× ×©×¨×•×ª ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" +"**%%site.name%%** ×”×•× ×©×™×¨×•×ª ביקרובלוג הניתן על־ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:931 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** ×”×•× ×©×¨×•×ª ביקרובלוג." @@ -6870,7 +6580,6 @@ msgstr "**%%site.name%%** ×”×•× ×©×¨×•×ª ביקרובלוג." #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:938 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -6881,291 +6590,303 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#. TRANS: DT element for StatusNet site content license. -#: lib/action.php:954 -#, fuzzy -msgid "Site content license" -msgstr "הודעה חדשה" - #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:961 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:968 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:972 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1004 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" -#. TRANS: DT element for pagination (previous/next, etc.). -#: lib/action.php:1340 -msgid "Pagination" -msgstr "" - #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1351 -#, fuzzy msgid "After" -msgstr "<< ×חרי" +msgstr "חדש יותר" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1361 -#, fuzzy msgid "Before" -msgstr "לפני >>" +msgstr "ישן יותר" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. -#: lib/activity.php:125 msgid "Expecting a root feed element but got a whole XML document." msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#: lib/activityimporter.php:81 #, php-format msgid "Unknown verb: \"%s\"." msgstr "" #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. -#: lib/activityimporter.php:107 msgid "Cannot force subscription for untrusted user." msgstr "" -#. TRANS: Client exception thrown when trying to for a remote user to subscribe. -#: lib/activityimporter.php:117 +#. TRANS: Client exception thrown when trying to force a remote user to subscribe. msgid "Cannot force remote user to subscribe." msgstr "" #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#: lib/activityimporter.php:132 msgid "Unknown profile." msgstr "" #. TRANS: Client exception thrown when trying to import an event not related to the importing user. -#: lib/activityimporter.php:138 msgid "This activity seems unrelated to our user." msgstr "" #. TRANS: Client exception thrown when trying to join a remote group that is not a group. -#: lib/activityimporter.php:154 msgid "Remote profile is not a group!" msgstr "" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. -#: lib/activityimporter.php:163 msgid "User is already a member of this group." msgstr "" +#. TRANS: Client exception thrown when trying to import a notice by another user. +#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. +#, php-format +msgid "Already know about notice %1$s and it has a different author %2$s." +msgstr "" + #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. -#: lib/activityimporter.php:207 msgid "Not overwriting author info for non-trusted user." msgstr "" #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. -#: lib/activityimporter.php:223 #, php-format msgid "No content for notice %s." msgstr "" +#. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. +#, php-format +msgid "No such user \"%s\"." +msgstr "" + +#. TRANS: Client exception thrown when post to collection fails with a 400 status. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#. TRANS: Server exception thrown when post to collection fails with a 500 status. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#. TRANS: Exception thrown when post to collection fails with a status that is not handled. +#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. +#, php-format +msgctxt "URLSTATUSREASON" +msgid "%1$s %2$s %3$s" +msgstr "" + #. TRANS: Client exception thrown when there is no source attribute. -#: lib/activityutils.php:200 msgid "Can't handle remote content yet." msgstr "" #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. -#: lib/activityutils.php:237 msgid "Can't handle embedded XML content yet." msgstr "" #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. -#: lib/activityutils.php:242 msgid "Can't handle embedded Base64 content yet." msgstr "" #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. -#: lib/adminpanelaction.php:96 msgid "You cannot make changes to this site." msgstr "" #. TRANS: Client error message throw when a certain panel's settings cannot be changed. -#: lib/adminpanelaction.php:108 msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message. -#: lib/adminpanelaction.php:222 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:250 msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:274 -msgid "Unable to delete design setting." +#. TRANS: Header in administrator navigation panel. +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Home" msgstr "" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:337 -#, fuzzy -msgid "Basic site configuration" -msgstr "הרשמות" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Home" +msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:339 -#, fuzzy +#. TRANS: Header in administrator navigation panel. +msgctxt "HEADER" +msgid "Admin" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Basic site configuration" +msgstr "תצורת ×תר בסיסית" + +#. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" -msgstr "הודעה חדשה" +msgstr "×תר" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:345 -msgid "Design configuration" -msgstr "" - -#. TRANS: Menu item for site administration -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/adminpanelaction.php:347 lib/groupnav.php:135 -#, fuzzy -msgctxt "MENU" -msgid "Design" -msgstr "×ישי" - -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:353 +#. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "×ין קוד ×ישור." -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118 +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" msgid "User" -msgstr "משתמש" +msgstr "מתשמש" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:361 -#, fuzzy +#. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" -msgstr "הרשמות" +msgstr "תצורת גישה" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:369 +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Access" +msgstr "גישה" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" msgstr "×ין קוד ×ישור." -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:377 +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Paths" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" msgstr "×ין קוד ×ישור." -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:385 -#, fuzzy +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Sessions" +msgstr "התחברויות" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" -msgstr "הודעה חדשה" +msgstr "עריכת הודעת ×תר" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:393 -#, fuzzy +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Site notice" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" -msgstr "הרשמות" +msgstr "תצורת היטל־בזק" -#. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:401 +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Snapshots" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "" +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "License" +msgstr "" + +#. TRANS: Menu item title in administrator navigation panel. +msgid "Plugins configuration" +msgstr "" + +#. TRANS: Menu item in administrator navigation panel. +msgctxt "MENU" +msgid "Plugins" +msgstr "" + #. TRANS: Client error 401. -#: lib/apiauth.php:111 msgid "API resource requires read-write access, but you only have read access." msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. -#: lib/apiauth.php:177 msgid "No application for that consumer key." msgstr "" +#. TRANS: Authorization exception thrown when a user without API access tries to access the API. +msgid "Not allowed to use API." +msgstr "" + #. TRANS: OAuth exception given when an incorrect access token was given for a user. -#: lib/apiauth.php:219 msgid "Bad access token." msgstr "" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). -#: lib/apiauth.php:224 msgid "No user for that token." msgstr "" #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. -#: lib/apiauth.php:266 lib/apiauth.php:293 msgid "Could not authenticate you." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. -#: lib/apioauthstore.php:45 msgid "Could not create anonymous consumer." msgstr "" #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#: lib/apioauthstore.php:69 msgid "Could not create anonymous OAuth application." msgstr "" #. TRANS: Exception thrown when no token association could be found. -#: lib/apioauthstore.php:151 msgid "" "Could not find a profile and application associated with the request token." msgstr "" #. TRANS: Exception thrown when no access token can be issued. -#: lib/apioauthstore.php:186 msgid "Could not issue access token." msgstr "" -#. TRANS: Server error displayed when a database error occurs. -#: lib/apioauthstore.php:243 -#, fuzzy +#. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." -msgstr "שגי×ת מסד × ×ª×•× ×™× ×‘×”×›× ×¡×ª התגובה: %s" +msgstr "שגי×ת מסד × ×ª×•× ×™× ×‘×”×›× ×¡×ª משתמש ×™×™×©×•× OAuth." + +#. TRANS: Exception thrown when a database error occurs. +msgid "Database error updating OAuth application user." +msgstr "" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. -#: lib/apioauthstore.php:285 msgid "Tried to revoke unknown token." msgstr "" #. TRANS: Exception thrown when an attempt is made to remove a revoked token. -#: lib/apioauthstore.php:290 msgid "Failed to delete revoked token." msgstr "" +#. TRANS: Form input field label for application icon. +msgid "Icon" +msgstr "" + #. TRANS: Form guide. -#: lib/applicationeditform.php:178 msgid "Icon for this application" msgstr "" +#. TRANS: Form input field label for application name. +msgid "Name" +msgstr "ש×" + #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. -#: lib/applicationeditform.php:201 #, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" @@ -7173,221 +6894,215 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:205 -#, fuzzy msgid "Describe your application" -msgstr "ת×ר ×ת עצמך ו×ת נוש××™ העניין שלך ב-140 ×ותיות" - -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:216 -#, fuzzy -msgid "URL of the homepage of this application" -msgstr "הכתובת של ×תר הבית שלך, בלוג, ×ו פרופיל ב×תר ×חר " +msgstr "תי×ור ×”×™×™×©×•× ×©×œ×š" #. TRANS: Form input field label. -#: lib/applicationeditform.php:218 -#, fuzzy -msgid "Source URL" -msgstr "מקור" +#. TRANS: Text area label on group edit form; contains description of group. +#. TRANS: Field label for description of list. +#. TRANS: Dropdown option for searching in profiles. +msgid "Description" +msgstr "תי×ור" + +#. TRANS: Form input field instructions. +msgid "URL of the homepage of this application" +msgstr "כתובת ×תר הבית של ×”×™×™×©×•× ×”×–×”" + +#. TRANS: Form input field label. +msgid "Source URL" +msgstr "כתובת המקור" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:225 msgid "Organization responsible for this application" msgstr "" -#. TRANS: Form input field instructions. -#: lib/applicationeditform.php:234 -#, fuzzy -msgid "URL for the homepage of the organization" -msgstr "הכתובת של ×תר הבית שלך, בלוג, ×ו פרופיל ב×תר ×חר " +#. TRANS: Form input field label. +msgid "Organization" +msgstr "×רגון" + +#. TRANS: Form input field instructions. +msgid "URL for the homepage of the organization" +msgstr "הכתובת של ×תר הבית של ×”×רגון" #. TRANS: Form input field instructions. -#: lib/applicationeditform.php:243 msgid "URL to redirect to after authentication" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:271 msgid "Browser" msgstr "" #. TRANS: Radio button label for application type -#: lib/applicationeditform.php:288 msgid "Desktop" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:290 msgid "Type of application, browser or desktop" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:314 msgid "Read-only" msgstr "" #. TRANS: Radio button label for access type. -#: lib/applicationeditform.php:334 msgid "Read-write" msgstr "" #. TRANS: Form guide. -#: lib/applicationeditform.php:336 msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#: lib/applicationeditform.php:353 msgid "Cancel" msgstr "בטל" -#: lib/applicationlist.php:247 +#. TRANS: Submit button title. +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "שמור" + +#. TRANS: Name for an anonymous application in application list. +msgid "Unknown application" +msgstr "" + +#. TRANS: Message has a leading space and a trailing space. Used in application list. +#. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:260 msgid "read-write" msgstr "" #. TRANS: Application access type -#: lib/applicationlist.php:262 msgid "read-only" msgstr "" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") -#: lib/applicationlist.php:268 #, php-format msgid "Approved %1$s - \"%2$s\" access." msgstr "" #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. -#: lib/applicationlist.php:282 #, php-format msgid "Access token starting with: %s" msgstr "" -#. TRANS: Button label -#: lib/applicationlist.php:298 +#. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" msgstr "שיחזור" -#: lib/atom10feed.php:113 +#. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. -#: lib/atom10feed.php:160 msgid "Do not use this method!" msgstr "" -#. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:294 -msgid "Author" +#. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. +#, php-format +msgid "Timeline for people in list %1$s by %2$s" msgstr "" -#. TRANS: DT element label in attachment list item. -#: lib/attachmentlist.php:308 -#, fuzzy -msgid "Provider" -msgstr "פרופיל" +#. TRANS: Message is used as a subtitle in atom list notice feed. +#. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. +#, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" +msgstr "" #. TRANS: Title. -#: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" msgstr "" #. TRANS: Title. -#: lib/attachmenttagcloudsection.php:48 msgid "Tags for this attachment" msgstr "" #. TRANS: Exception thrown when a password change fails. -#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227 msgid "Password changing failed." msgstr "" #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. -#: lib/authenticationplugin.php:238 msgid "Password changing is not allowed." msgstr "" #. TRANS: Title for the form to block a user. -#: lib/blockform.php:68 msgid "Block" msgstr "" +#. TRANS: Description of the form to block a user. +msgid "Block this user" +msgstr "×œ×—×¡×•× ×ת המשתמש ×”×–×”" + +#. TRANS: Submit button text on form to cancel group join request. +msgctxt "BUTTON" +msgid "Cancel join request" +msgstr "" + +#. TRANS: Button text for form action to cancel a subscription request. +msgctxt "BUTTON" +msgid "Cancel subscription request" +msgstr "" + #. TRANS: Title for command results. -#: lib/channel.php:160 lib/channel.php:181 msgid "Command results" msgstr "" #. TRANS: Title for command results. -#: lib/channel.php:194 msgid "AJAX error" msgstr "" #. TRANS: E-mail subject when a command has completed. -#: lib/channel.php:233 lib/mailhandler.php:143 +#. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" msgstr "" #. TRANS: E-mail subject when a command has failed. -#: lib/channel.php:244 msgid "Command failed" msgstr "" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#: lib/command.php:82 lib/command.php:106 -#, fuzzy msgid "Notice with that id does not exist." -msgstr "×ין פרופיל תו×× ×œ×¤×¨×•×¤×™×œ המרוחק " +msgstr "עדכון ×¢× ×”×ž×–×”×” ×”×–×” ×ינו ×§×™×™×." #. TRANS: Command exception text shown when a last user notice is requested and it does not exist. #. TRANS: Error text shown when a last user notice is requested and it does not exist. -#: lib/command.php:99 lib/command.php:630 -#, fuzzy msgid "User has no last notice." -msgstr "למשתמש ×ין פרופיל." +msgstr "למשתמש ×ין עדכון ×חרון." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#: lib/command.php:128 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×ž×¦× ×ž×©×ª×ž×© ×¢× ×”×›×™× ×•×™ %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. -#: lib/command.php:148 #, php-format msgid "Could not find a local user with nickname %s." msgstr "" #. TRANS: Error text shown when an unimplemented command is given. -#: lib/command.php:183 msgid "Sorry, this command is not yet implemented." msgstr "" #. TRANS: Command exception text shown when a user tries to nudge themselves. -#: lib/command.php:229 msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "×œ× ×”×’×™×•× ×™ כל־כך להטריד ×ת עצמך!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. -#: lib/command.php:238 #, php-format msgid "Nudge sent to %s." -msgstr "" +msgstr "דחיפה נשלחה ×ל %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. #. TRANS: %2$s is the number of users that are subscribed to the user. #. TRANS: %3$s is the number of notices the user has sent. -#: lib/command.php:268 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -7395,64 +7110,100 @@ msgid "" "Notices: %3$s" msgstr "" +#. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. +msgid "Could not create favorite: Already favorited." +msgstr "" + #. TRANS: Text shown when a notice has been marked as favourite successfully. -#: lib/command.php:312 msgid "Notice marked as fave." msgstr "" #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:357 #, php-format msgid "%1$s joined group %2$s." msgstr "" #. TRANS: Message given having removed a user from a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. -#: lib/command.php:405 #, php-format msgid "%1$s left group %2$s." msgstr "" +#. TRANS: Error displayed if tagging a user fails. +#. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). +#, php-format +msgid "Error tagging %1$s: %2$s" +msgstr "" + +#. TRANS: Succes message displayed if tagging a user succeeds. +#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. +#. TRANS: Plural is decided based on the number of tags added (not part of message). +#, php-format +msgid "%1$s was tagged %2$s" +msgid_plural "%1$s was tagged %2$s" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Separator for list of tags. +#. TRANS: Separator in list of user names like "Jim, Bob, Mary". +msgid ", " +msgstr "" + +#. TRANS: Error displayed if a given tag is invalid. +#. TRANS: %s is the invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "תג ×œ× ×ª×§×™×Ÿ: \"%s\"" + +#. TRANS: Error displayed if untagging a user fails. +#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). +#, php-format +msgid "Error untagging %1$s: %2$s" +msgstr "" + +#. TRANS: Succes message displayed if untagging a user succeeds. +#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. +#. TRANS: Plural is decided based on the number of tags removed (not part of message). +#, php-format +msgid "The following tag was removed from user %1$s: %2$s." +msgid_plural "The following tags were removed from user %1$s: %2$s." +msgstr[0] "" +msgstr[1] "" + #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#: lib/command.php:426 #, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. -#: lib/command.php:430 -#, fuzzy, php-format +#, php-format msgid "Fullname: %s" -msgstr "×©× ×ž×œ×" +msgstr "×©× ×ž×œ×: %s" #. TRANS: Whois output. %s is the location of the queried user. -#. TRANS: Profile info line in new-subscriber notification e-mail. +#. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a location. -#: lib/command.php:434 lib/mail.php:278 -#, fuzzy, php-format +#, php-format msgid "Location: %s" -msgstr "מיקו×" +msgstr "מיקו×: %s" #. TRANS: Whois output. %s is the homepage of the queried user. -#. TRANS: Profile info line in new-subscriber notification e-mail. +#. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a homepage. -#: lib/command.php:438 lib/mail.php:282 -#, fuzzy, php-format +#, php-format msgid "Homepage: %s" -msgstr "×תר בית" +msgstr "×תר בית: %s" #. TRANS: Whois output. %s is the bio information of the queried user. -#: lib/command.php:442 #, php-format msgid "About: %s" msgstr "×ודות: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #. TRANS: %s is a remote profile. -#: lib/command.php:471 #, php-format msgid "" "%s is a remote profile; you can only send direct messages to users on the " @@ -7461,34 +7212,30 @@ msgstr "" #. TRANS: Message given if content is too long. %1$sd is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:488 +#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters, +#. TRANS: %2$s is the number of characters sent (used for plural). #, php-format msgid "Message too long - maximum is %1$d character, you sent %2$d." msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d." msgstr[0] "" msgstr[1] "" +#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). +msgid "You can't send a message to this user." +msgstr "×ינך יכול לשלוח הודעה למשתמש ×”×–×”." + #. TRANS: Error text shown sending a direct message fails with an unknown reason. -#: lib/command.php:516 -#, fuzzy msgid "Error sending direct message." -msgstr "שגי××” ביצירת ×©× ×”×ž×©×ª×ž×©." +msgstr "שגי××” בשליחת הודעה ישיר." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. -#: lib/command.php:553 -#, fuzzy, php-format +#, php-format msgid "Notice from %s repeated." -msgstr "הודעות" - -#. TRANS: Error text shown when repeating a notice fails with an unknown reason. -#: lib/command.php:556 -msgid "Error repeating notice." -msgstr "שגי××” ביצירת ×©× ×”×ž×©×ª×ž×©." +msgstr "עדכון מ־%s הודהד." #. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. #. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. -#: lib/command.php:591 #, php-format msgid "Notice too long - maximum is %1$d character, you sent %2$d." msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d." @@ -7497,105 +7244,83 @@ msgstr[1] "" #. TRANS: Text shown having sent a reply to a notice successfully. #. TRANS: %s is the nickname of the user of the notice the reply was sent to. -#: lib/command.php:604 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent." -msgstr "תגובת עבור %s" +msgstr "תשובה ל־%s נשלחה." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. -#: lib/command.php:607 -#, fuzzy msgid "Error saving notice." -msgstr "בעיה בשמירת ההודעה." +msgstr "שגי××” בשמירת העדכון." #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#: lib/command.php:654 msgid "Specify the name of the user to subscribe to." msgstr "" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#: lib/command.php:663 -#, fuzzy msgid "Can't subscribe to OMB profiles by command." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×œ× × ×™×ª×Ÿ ×œ×”×™×¨×©× ×œ×¤×¨×•×¤×™×œ×™ OMB על־ידי הפקודה ×”×–×ת." #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. -#: lib/command.php:671 #, php-format msgid "Subscribed to %s." msgstr "" #. TRANS: Error text shown when no username was provided when issuing an unsubscribe command. #. TRANS: Error text shown when no username was provided when issuing the command. -#: lib/command.php:692 lib/command.php:803 msgid "Specify the name of the user to unsubscribe from." msgstr "" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:703 #, php-format msgid "Unsubscribed from %s." msgstr "" #. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented. #. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented. -#: lib/command.php:723 lib/command.php:749 msgid "Command not yet implemented." msgstr "" #. TRANS: Text shown when issuing the command "off" successfully. -#: lib/command.php:727 -#, fuzzy msgid "Notification off." -msgstr "×ין קוד ×ישור." +msgstr "ההודעות כובו." #. TRANS: Error text shown when the command "off" fails for an unknown reason. -#: lib/command.php:730 msgid "Can't turn off notification." msgstr "" #. TRANS: Text shown when issuing the command "on" successfully. -#: lib/command.php:753 -#, fuzzy msgid "Notification on." -msgstr "×ין קוד ×ישור." +msgstr "ההודעות הופעלו." #. TRANS: Error text shown when the command "on" fails for an unknown reason. -#: lib/command.php:756 msgid "Can't turn on notification." msgstr "" #. TRANS: Error text shown when issuing the login command while login is disabled. -#: lib/command.php:770 msgid "Login command is disabled." msgstr "" #. TRANS: Text shown after issuing the login command successfully. #. TRANS: %s is a logon link.. -#: lib/command.php:783 #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" #. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user). #. TRANS: %s is the name of the user the unsubscription was requested for. -#: lib/command.php:812 #, php-format msgid "Unsubscribed %s." msgstr "" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. -#: lib/command.php:830 -#, fuzzy msgid "You are not subscribed to anyone." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך מנוי ל×יש." #. TRANS: Text shown after requesting other users a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed users. -#: lib/command.php:835 msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" msgstr[0] "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" @@ -7603,15 +7328,12 @@ msgstr[1] "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. -#: lib/command.php:857 -#, fuzzy msgid "No one is subscribed to you." -msgstr "הרשמה מרוחקת" +msgstr "×יש ×œ× ×ž× ×•×™ ×ליך." #. TRANS: Text shown after requesting other users that are subscribed to a user (followers). #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribing users. -#: lib/command.php:862 msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" msgstr[0] "הרשמה מרוחקת" @@ -7619,256 +7341,340 @@ msgstr[1] "הרשמה מרוחקת" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. -#: lib/command.php:884 -#, fuzzy msgid "You are not a member of any groups." -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "×ינך חבר ×‘×©×•× ×§×‘×•×¦×”." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. -#: lib/command.php:889 msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" msgstr[0] "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" msgstr[1] "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" -#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. -#: lib/command.php:904 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"groups - lists the groups you have joined\n" -"subscriptions - list the people you follow\n" -"subscribers - list the people that follow you\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"lose - force user to stop following you\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"repeat # - repeat a notice with a given id\n" -"repeat - repeat the last notice from user\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"login - Get a link to login to the web interface\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" +#. TRANS: Header line of help text for commands. +msgctxt "COMMANDHELP" +msgid "Commands:" +msgstr "" + +#. TRANS: Help message for IM/SMS command "on". +msgctxt "COMMANDHELP" +msgid "turn on notifications" +msgstr "" + +#. TRANS: Help message for IM/SMS command "off". +msgctxt "COMMANDHELP" +msgid "turn off notifications" +msgstr "" + +#. TRANS: Help message for IM/SMS command "help". +msgctxt "COMMANDHELP" +msgid "show this help" +msgstr "" + +#. TRANS: Help message for IM/SMS command "follow ". +msgctxt "COMMANDHELP" +msgid "subscribe to user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "groups". +msgctxt "COMMANDHELP" +msgid "lists the groups you have joined" +msgstr "" + +#. TRANS: Help message for IM/SMS command "tag". +msgctxt "COMMANDHELP" +msgid "tag a user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "untag". +msgctxt "COMMANDHELP" +msgid "untag a user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "subscriptions". +msgctxt "COMMANDHELP" +msgid "list the people you follow" +msgstr "" + +#. TRANS: Help message for IM/SMS command "subscribers". +msgctxt "COMMANDHELP" +msgid "list the people that follow you" +msgstr "" + +#. TRANS: Help message for IM/SMS command "leave ". +msgctxt "COMMANDHELP" +msgid "unsubscribe from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "d ". +msgctxt "COMMANDHELP" +msgid "direct message to user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "get ". +msgctxt "COMMANDHELP" +msgid "get last notice from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "whois ". +msgctxt "COMMANDHELP" +msgid "get profile info on user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "lose ". +msgctxt "COMMANDHELP" +msgid "force user to stop following you" +msgstr "" + +#. TRANS: Help message for IM/SMS command "fav ". +msgctxt "COMMANDHELP" +msgid "add user's last notice as a 'fave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "fav #". +msgctxt "COMMANDHELP" +msgid "add notice with the given id as a 'fave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "repeat #". +msgctxt "COMMANDHELP" +msgid "repeat a notice with a given id" +msgstr "להדהד עדכון ×¢× ×ž×–×”×” נתון" + +#. TRANS: Help message for IM/SMS command "repeat ". +msgctxt "COMMANDHELP" +msgid "repeat the last notice from user" +msgstr "להדהד ×ת העדכון ×”×חרון ממשתמש" + +#. TRANS: Help message for IM/SMS command "reply #". +msgctxt "COMMANDHELP" +msgid "reply to notice with a given id" +msgstr "" + +#. TRANS: Help message for IM/SMS command "reply ". +msgctxt "COMMANDHELP" +msgid "reply to the last notice from user" +msgstr "" + +#. TRANS: Help message for IM/SMS command "join ". +msgctxt "COMMANDHELP" +msgid "join group" +msgstr "" + +#. TRANS: Help message for IM/SMS command "login". +msgctxt "COMMANDHELP" +msgid "Get a link to login to the web interface" +msgstr "" + +#. TRANS: Help message for IM/SMS command "drop ". +msgctxt "COMMANDHELP" +msgid "leave group" +msgstr "" + +#. TRANS: Help message for IM/SMS command "stats". +msgctxt "COMMANDHELP" +msgid "get your stats" +msgstr "" + +#. TRANS: Help message for IM/SMS command "stop". +#. TRANS: Help message for IM/SMS command "quit". +msgctxt "COMMANDHELP" +msgid "same as 'off'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "sub ". +msgctxt "COMMANDHELP" +msgid "same as 'follow'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "unsub ". +msgctxt "COMMANDHELP" +msgid "same as 'leave'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "last ". +msgctxt "COMMANDHELP" +msgid "same as 'get'" +msgstr "" + +#. TRANS: Help message for IM/SMS command "on ". +#. TRANS: Help message for IM/SMS command "off ". +#. TRANS: Help message for IM/SMS command "invite ". +#. TRANS: Help message for IM/SMS command "track ". +#. TRANS: Help message for IM/SMS command "untrack ". +#. TRANS: Help message for IM/SMS command "track off". +#. TRANS: Help message for IM/SMS command "untrack all". +#. TRANS: Help message for IM/SMS command "tracks". +#. TRANS: Help message for IM/SMS command "tracking". +msgctxt "COMMANDHELP" +msgid "not yet implemented." +msgstr "" + +#. TRANS: Help message for IM/SMS command "nudge ". +msgctxt "COMMANDHELP" +msgid "remind a user to update." msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 msgid "No configuration file found." msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). -#: lib/common.php:153 msgid "I looked for configuration files in the following places:" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:156 msgid "You may wish to run the installer to fix this." msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: The text is link text that leads to the installer page. -#: lib/common.php:160 msgid "Go to the installer." msgstr "" -#. TRANS: Menu item for Instant Messaging settings. -#: lib/connectsettingsaction.php:106 -msgctxt "MENU" -msgid "IM" -msgstr "" - -#. TRANS: Tooltip for Instant Messaging menu item. -#: lib/connectsettingsaction.php:108 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#. TRANS: Menu item for Short Message Service settings. -#: lib/connectsettingsaction.php:113 -msgctxt "MENU" -msgid "SMS" -msgstr "" - -#. TRANS: Tooltip for Short Message Service menu item. -#: lib/connectsettingsaction.php:115 -msgid "Updates by SMS" -msgstr "" - -#. TRANS: Menu item for OuAth connection settings. -#: lib/connectsettingsaction.php:120 -msgctxt "MENU" -msgid "Connections" -msgstr "" - -#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item. -#: lib/connectsettingsaction.php:122 -msgid "Authorized connected applications" -msgstr "" - -#: lib/dberroraction.php:59 +#. TRANS: Page title for when a database error occurs. msgid "Database error" msgstr "" -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -#: lib/designsettings.php:104 -#, fuzzy -msgid "Upload file" -msgstr "ההעלה" - -#. TRANS: Instructions for form on profile design page. -#: lib/designsettings.php:109 -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "×–×” ×רוך מידי. ×ורך מירבי להודעה ×”×•× 140 ×ותיות." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#: lib/designsettings.php:139 -msgctxt "RADIO" -msgid "On" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Public" msgstr "" -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#: lib/designsettings.php:156 -msgctxt "RADIO" -msgid "Off" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" msgstr "" -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#: lib/designsettings.php:264 -msgctxt "BUTTON" -msgid "Reset" +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item title in local navigation menu. +msgctxt "MENU" +msgid "Lists" msgstr "" -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#: lib/designsettings.php:433 -msgid "Design defaults restored." +#. TRANS: Title of form for deleting a user. +#. TRANS: Link text in notice list item to delete a notice. +msgid "Delete" +msgstr "מחק" + +#. TRANS: Description of form for deleting a user. +msgid "Delete this user" +msgstr "למחוק ×ת המשתמש ×”×–×”" + +#. TRANS: Exception. %s is an ID. +#, php-format +msgid "Unable to find services for %s." msgstr "" -#: lib/disfavorform.php:114 lib/disfavorform.php:144 +#. TRANS: Form legend for removing the favourite status for a favourite notice. +#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "" -#: lib/favorform.php:114 lib/favorform.php:143 -#, fuzzy -msgid "Favor this notice" -msgstr "×ין הודעה כזו." +#. TRANS: Button text for removing the favourite status for a favourite notice. +msgctxt "BUTTON" +msgid "Disfavor favorite" +msgstr "" -#: lib/feed.php:84 +#. TRANS: Form legend for adding the favourite status to a notice. +#. TRANS: Title for button text for adding the favourite status to a notice. +msgid "Favor this notice" +msgstr "ל×הוב ×ת העדכון ×”×–×”" + +#. TRANS: Button text for adding the favourite status to a notice. +msgctxt "BUTTON" +msgid "Favor" +msgstr "" + +#. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" -#: lib/feed.php:86 +#. TRANS: Feed type name. msgid "RSS 2.0" msgstr "" -#: lib/feed.php:88 +#. TRANS: Feed type name. msgid "Atom" msgstr "" -#: lib/feed.php:90 +#. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" msgstr "" -#: lib/feedimporter.php:75 -msgid "Not an atom feed." -msgstr "" - -#: lib/feedimporter.php:82 +#. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." msgstr "" -#: lib/feedimporter.php:89 -msgid "Can't import without a user." +#. TRANS: Client exception thrown when an imported feed does not have an author that +#. TRANS: can be associated with a user. +msgid "Cannot import without a user." msgstr "" #. TRANS: Header for feed links (h2). -#: lib/feedlist.php:66 msgid "Feeds" msgstr "" -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 +#. TRANS: List element on gallery action page to show all tags. +msgctxt "TAGS" msgid "All" msgstr "" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/galleryaction.php:140 +#. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" msgstr "" -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" +#. TRANS: Dropdown field title on gallery action page for a list containing tags. +msgid "Choose a tag to narrow list." msgstr "" -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - -#: lib/grantroleform.php:91 +#. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" msgstr "" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 עד 64 ×ותיות ×נגליות קטנות ×ו מספרי×, ×œ×œ× ×¡×™×ž× ×™ פיסוק ×ו רווחי×." +#. TRANS: Button text for the form that will block a user from a group. +msgctxt "BUTTON" +msgid "Block" +msgstr "" -#: lib/groupeditform.php:163 +#. TRANS: Submit button title. +msgctxt "TOOLTIP" +msgid "Block this user" +msgstr "" + +#. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." msgstr "" -#: lib/groupeditform.php:168 -#, fuzzy -msgid "Describe the group or topic" -msgstr "ת×ר ×ת עצמך ו×ת נוש××™ העניין שלך ב-140 ×ותיות" +#. TRANS: Text area title for group description when there is no text limit. +msgid "Describe the group or topic." +msgstr "" -#: lib/groupeditform.php:170 +#. TRANS: Text area title for group description. +#. TRANS: %d is the number of characters available for the description. #, php-format -msgid "Describe the group or topic in %d character or less" -msgid_plural "Describe the group or topic in %d characters or less" +msgid "Describe the group or topic in %d character or less." +msgid_plural "Describe the group or topic in %d characters or less." msgstr[0] "" msgstr[1] "" -#: lib/groupeditform.php:182 +#. TRANS: Field title on group edit form. msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" -#: lib/groupeditform.php:190 +#. TRANS: Field label on group edit form. +msgid "Aliases" +msgstr "" + +#. TRANS: Input field title for group aliases. +#. TRANS: %d is the maximum number of group aliases available. #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -7879,130 +7685,143 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" +#. TRANS: Checkbox field title on group edit form to mark a group private. +msgid "" +"New members must be approved by admin and all posts are forced to be private." +msgstr "" + +#. TRANS: Indicator in group members list that this user is a group administrator. +msgctxt "GROUPADMIN" +msgid "Admin" +msgstr "" + #. TRANS: Menu item in the group navigation page. -#: lib/groupnav.php:86 msgctxt "MENU" msgid "Group" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:89 #, php-format msgctxt "TOOLTIP" msgid "%s group" msgstr "" #. TRANS: Menu item in the group navigation page. -#: lib/groupnav.php:95 msgctxt "MENU" msgid "Members" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:98 #, php-format msgctxt "TOOLTIP" msgid "%s group members" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/groupnav.php:108 +#. TRANS: %d is the number of pending members. +#, php-format +msgctxt "MENU" +msgid "Pending members (%d)" +msgid_plural "Pending members (%d)" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "%s pending members" +msgstr "" + +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" msgid "Blocked" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:111 #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" msgstr "" +#. TRANS: Menu item in the group navigation page. Only shown for group administrators. +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Admin" +msgstr "" + #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:120 #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#: lib/groupnav.php:126 msgctxt "MENU" msgid "Logo" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:129 #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:138 -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" +#. TRANS: Group actions header (h2). Text hidden by default. +msgid "Group actions" +msgstr "פעולות על קבוצה" #. TRANS: Title for groups with the most members section. -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" +msgid "Popular groups" msgstr "" #. TRANS: Title for groups with the most posts section. -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" +msgid "Active groups" msgstr "" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. -#: lib/grouptagcloudsection.php:57 #, php-format msgid "Tags in %s group's notices" msgstr "" #. TRANS: Client exception 406 -#: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד ×–×” ×ינו זמין בסוג מדיה ש×תה יכול לקבל" -#: lib/imagefile.php:72 +#. TRANS: Exception thrown when trying to upload an unsupported image file format. msgid "Unsupported image file format." msgstr "פורמט התמונה ×ינו נתמך." #. TRANS: Exception thrown when too large a file is uploaded. #. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". -#: lib/imagefile.php:90 -#, fuzzy, php-format +#, php-format msgid "That file is too big. The maximum file size is %s." -msgstr "×–×” ×רוך מידי. ×ורך מירבי להודעה ×”×•× 140 ×ותיות." +msgstr "הקובץ גדול מדי. גודל הקובץ המרבי ×”×•× %s." -#: lib/imagefile.php:95 +#. TRANS: Exception thrown when uploading an image and that action could not be completed. msgid "Partial upload." msgstr "העל××” חלקית." -#: lib/imagefile.php:111 +#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file. msgid "Not an image or corrupt file." msgstr "זהו ×œ× ×§×•×‘×¥ תמונה, ×ו שחל בו שיבוש." -#: lib/imagefile.php:160 -#, fuzzy +#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there. msgid "Lost our file." -msgstr "×ין הודעה כזו." +msgstr "×יבדנו ×ת הקובץ שלנו." -#: lib/imagefile.php:197 lib/imagefile.php:237 +#. TRANS: Exception thrown when trying to resize an unknown file type. +#. TRANS: Exception thrown when trying resize an unknown file type. msgid "Unknown file type" msgstr "" #. TRANS: Number of megabytes. %d is the number. -#: lib/imagefile.php:283 #, php-format msgid "%dMB" msgid_plural "%dMB" @@ -8010,7 +7829,6 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Number of kilobytes. %d is the number. -#: lib/imagefile.php:287 #, php-format msgid "%dkB" msgid_plural "%dkB" @@ -8018,48 +7836,114 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Number of bytes. %d is the number. -#: lib/imagefile.php:290 #, php-format msgid "%dB" msgid_plural "%dB" msgstr[0] "" msgstr[1] "" -#: lib/jabber.php:387 +#. TRANS: Body text for confirmation code e-mail. +#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, +#. TRANS: %3$s is the display name of an IM plugin. #, php-format -msgid "[%s]" +msgid "" +"User \"%1$s\" on %2$s has said that your %3$s screenname belongs to them. If " +"that is true, you can confirm by clicking on this URL: %4$s . (If you cannot " +"click it, copy-and-paste it into the address bar of your browser). If that " +"user is not you, or if you did not request this confirmation, just ignore " +"this message." msgstr "" -#: lib/jabber.php:567 +#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. +#. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." msgstr "" -#: lib/leaveform.php:114 -#, fuzzy +#. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. +msgid "Queueing must be enabled to use IM plugins." +msgstr "" + +#. TRANS: Server exception thrown trying to initialise an IM plugin without a transport method. +msgid "Transport cannot be null." +msgstr "" + +#. TRANS: Title for inbox tag cloud section. +msgctxt "TITLE" +msgid "Trends" +msgstr "" + +#. TRANS: Button text for inviting more users to the StatusNet instance. +msgctxt "BUTTON" +msgid "Invite more colleagues" +msgstr "" + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "" + +#. TRANS: Field label for a list of e-mail addresses. +msgid "Email addresses" +msgstr "" + +#. TRANS: Field title for a list of e-mail addresses. +msgid "Addresses of friends to invite (one per line)." +msgstr "" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "הודעה פרטית" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#. TRANS: Send button for inviting friends +#. TRANS: Button text for sending notice. +msgctxt "BUTTON" +msgid "Send" +msgstr "שליחה" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "" + +#. TRANS: Button text for joining a group. +msgctxt "BUTTON" +msgid "Join" +msgstr "" + +#. TRANS: Button text on form to leave a group. +msgctxt "BUTTON" msgid "Leave" -msgstr "שמור" +msgstr "" -#: lib/logingroupnav.php:80 -#, fuzzy +#. TRANS: Menu item for logging in to the StatusNet site. +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Login" +msgstr "כניסה" + +#. TRANS: Title for menu item for logging in to the StatusNet site. msgid "Login with a username and password" -msgstr "×©× ×”×ž×©×ª×ž×© ×ו הסיסמה ×œ× ×—×•×§×™×™×" +msgstr "כניסה ×¢× ×©× ×ž×©×ª×ž×© וססמה" -#: lib/logingroupnav.php:86 -#, fuzzy +#. TRANS: Menu item for registering with the StatusNet site. +msgctxt "MENU" +msgid "Register" +msgstr "הרשמה" + +#. TRANS: Title for menu item for registering with the StatusNet site. msgid "Sign up for a new account" -msgstr "צור חשבון חדש" +msgstr "הרשמה לחשבון חדש" #. TRANS: Subject for address confirmation email. -#: lib/mail.php:174 -#, fuzzy msgid "Email address confirmation" -msgstr "שגי××” בשמירת ×ישור הכתובת." +msgstr "שליחת ×ימות כתובת בדו×״ל" #. TRANS: Body for address confirmation email. #. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename, #. TRANS: %3$s is the URL to confirm at. -#: lib/mail.php:179 #, php-format msgid "" "Hey, %1$s.\n" @@ -8078,50 +7962,60 @@ msgstr "" #. TRANS: Subject of new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#: lib/mail.php:246 +#. TRANS: Main body of new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. #, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s כעת מ×זין להודעות שלך ב-%2$s" - -#. TRANS: This is a paragraph in a new-subscriber e-mail. -#. TRANS: %s is a URL where the subscriber can be reported as abusive. -#: lib/mail.php:253 -#, php-format -msgid "" -"If you believe this account is being used abusively, you can block them from " -"your subscribers list and report as spam to site administrators at %s" +msgid "%1$s is now following you on %2$s." msgstr "" -#. TRANS: Main body of new-subscriber notification e-mail. -#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename, -#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty) -#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty) -#. TRANS: %7$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:263 +#. TRANS: Subject of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. +#, php-format +msgid "%1$s would like to listen to your notices on %2$s." +msgstr "" + +#. TRANS: Main body of pending new-subscriber notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s would like to listen to your notices on %2$s. You may approve or reject " +"their subscription at %3$s" +msgstr "" + +#. TRANS: Common footer block for StatusNet notification emails. +#. TRANS: %1$s is the StatusNet sitename, +#. TRANS: %2$s is a link to the addressed user's e-mail settings. #, php-format msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" "Faithfully yours,\n" -"%2$s.\n" +"%1$s.\n" "\n" "----\n" -"Change your email address or notification options at %7$s\n" +"Change your email address or notification options at %2$s" msgstr "" -#. TRANS: Profile info line in new-subscriber notification e-mail. +#. TRANS: Profile info line in notification e-mail. +#. TRANS: %s is a URL. +#, php-format +msgid "Profile: %s" +msgstr "" + +#. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. -#: lib/mail.php:286 -#, fuzzy, php-format +#, php-format msgid "Bio: %s" msgstr "×ודות: %s" +#. TRANS: This is a paragraph in a new-subscriber e-mail. +#. TRANS: %s is a URL where the subscriber can be reported as abusive. +#, php-format +msgid "" +"If you believe this account is being used abusively, you can block them from " +"your subscribers list and report as spam to site administrators at %s." +msgstr "" + #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. -#: lib/mail.php:315 #, php-format msgid "New email address for posting to %s" msgstr "" @@ -8129,50 +8023,40 @@ msgstr "" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#: lib/mail.php:321 #, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" "Send email to %2$s to post new messages.\n" "\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%1$s" +"More email instructions at %3$s." msgstr "" #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. -#: lib/mail.php:442 -#, fuzzy, php-format +#, php-format msgid "%s status" -msgstr "הסטטוס של %1$s ב-%2$s " +msgstr "המצב של %s" #. TRANS: Subject line for SMS-by-email address confirmation message. -#: lib/mail.php:468 -#, fuzzy msgid "SMS confirmation" -msgstr "×ין קוד ×ישור." +msgstr "×ימות במסרון" #. TRANS: Main body heading for SMS-by-email address confirmation message. #. TRANS: %s is the addressed user's nickname. -#: lib/mail.php:472 #, php-format msgid "%s: confirm you own this phone number with this code:" msgstr "" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#: lib/mail.php:493 #, php-format -msgid "You've been nudged by %s" -msgstr "" +msgid "You have been nudged by %s" +msgstr "נדחפת על־ידי %s" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, -#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename. -#: lib/mail.php:500 +#. TRANS: %3$s is a URL to post notices at. #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -8182,15 +8066,11 @@ msgid "" "\n" "%3$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +"Don't reply to this email; it won't get to them." msgstr "" #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. -#: lib/mail.php:547 #, php-format msgid "New private message from %s" msgstr "" @@ -8198,8 +8078,6 @@ msgstr "" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#. TRANS: %5$s is the StatusNet sitename. -#: lib/mail.php:555 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -8212,15 +8090,11 @@ msgid "" "\n" "%4$s\n" "\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" +"Don't reply to this email; it won't get to them." msgstr "" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:607 #, php-format msgid "%1$s (@%2$s) added your notice as a favorite" msgstr "" @@ -8230,7 +8104,6 @@ msgstr "" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#: lib/mail.php:614 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -8245,14 +8118,10 @@ msgid "" "\n" "You can see the list of %1$s's favorites here:\n" "\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" +"%5$s" msgstr "" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. -#: lib/mail.php:672 #, php-format msgid "" "The full conversation can be read here:\n" @@ -8262,21 +8131,18 @@ msgstr "" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. -#: lib/mail.php:680 #, php-format msgid "%1$s (@%2$s) sent a notice to your attention" msgstr "" #. TRANS: Body of @-reply notification e-mail. -#. TRANS: %1$s is the sending user's long name, $2$s is the StatusNet sitename, +#. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty), -#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user, -#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname. -#: lib/mail.php:688 +#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, #, php-format msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" "The notice is here:\n" "\n" @@ -8292,79 +8158,119 @@ msgid "" "\n" "The list of all @-replies for you here:\n" "\n" -"%7$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %8$s\n" +"%7$s" msgstr "" -#: lib/mailbox.php:89 +#. TRANS: Subject of group join notification e-mail. +#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. +#. TRANS: Main body of group join notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, +#. TRANS: %4$s is a block of profile info about the subscriber. +#. TRANS: %5$s is a link to the addressed user's e-mail settings. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s." +msgstr "" + +#. TRANS: Subject of pending group join request notification e-mail. +#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. +#, php-format +msgid "%1$s wants to join your group %2$s on %3$s." +msgstr "" + +#. TRANS: Main body of pending group join request notification e-mail. +#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, +#. TRANS: %4$s is the URL to the moderation queue page. +#, php-format +msgid "" +"%1$s would like to join your group %2$s on %3$s. You may approve or reject " +"their group membership at %4$s" +msgstr "" + +#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "" -#: lib/mailbox.php:139 +#. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/mailbox.php:228 lib/noticelist.php:522 -msgid "from" +#. TRANS: Menu item in mailbox menu. Leads to incoming private messages. +msgctxt "MENU" +msgid "Inbox" msgstr "" -#: lib/mailhandler.php:37 -#, fuzzy +#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. +msgid "Your incoming messages." +msgstr "" + +#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. +msgctxt "MENU" +msgid "Outbox" +msgstr "" + +#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. +msgid "Your sent messages." +msgstr "" + +#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×¦×œ×™×— פענוח ההודעה." -#: lib/mailhandler.php:42 -#, fuzzy +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." -msgstr "זהו ×œ× ×§×•×“ ×ישור." +msgstr "×œ× ×ž×©×ª×ž×© רשו×." -#: lib/mailhandler.php:46 -#, fuzzy +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." -msgstr "זוהי כתובת ×ž×¡×¨×™× ×ž×™×“×™×™× ×©×’×•×™×”." +msgstr "סילחה, ×בל ×–×ת ×œ× ×›×ª×•×‘×ª הדו×״ל הנכנסת שלך." -#: lib/mailhandler.php:50 +#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed. msgid "Sorry, no incoming email allowed." msgstr "" -#: lib/mailhandler.php:229 -#, fuzzy, php-format -msgid "Unsupported message type: %s" -msgstr "פורמט התמונה ×ינו נתמך." +#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type. +#. TRANS: %s is the unsupported type. +#, php-format +msgid "Unsupported message type: %s." +msgstr "" + +#. TRANS: Form legend for form to make a user a group admin. +msgid "Make user an admin of the group" +msgstr "" + +#. TRANS: Button text for the form that will make a user administrator. +msgctxt "BUTTON" +msgid "Make Admin" +msgstr "" + +#. TRANS: Submit button title. +msgctxt "TOOLTIP" +msgid "Make this user an admin" +msgstr "" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. -#: lib/mediafile.php:102 lib/mediafile.php:174 msgid "There was a database error while saving your file. Please try again." msgstr "" #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. -#: lib/mediafile.php:238 lib/mediafile.php:281 msgid "File exceeds user's quota." msgstr "" #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. -#: lib/mediafile.php:258 lib/mediafile.php:300 msgid "File could not be moved to destination directory." msgstr "" #. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME #. TRANS: type of the uploaded file could not be determined. -#: lib/mediafile.php:265 lib/mediafile.php:306 -#, fuzzy msgid "Could not determine file's MIME type." -msgstr "עידכון המשתמש נכשל." +msgstr "×œ× ×”×¦×œ×™×— זיהוי סוג ×”Ö¾MIME של הקובץ." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of #. TRANS: the MIME type that was denied. -#: lib/mediafile.php:396 #, php-format msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " @@ -8373,442 +8279,866 @@ msgstr "" #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. -#: lib/mediafile.php:401 #, php-format msgid "\"%s\" is not a supported file type on this server." msgstr "" -#: lib/messageform.php:120 +#. TRANS: Form legend for direct notice. msgid "Send a direct notice" msgstr "" -#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list. -#: lib/messageform.php:137 +#. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. +#. TRANS: This is the default entry in the drop-down box, doubling as instructions +#. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" msgstr "" #. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. -#: lib/messageform.php:150 msgid "No mutual subscribers." msgstr "" -#: lib/messageform.php:153 +#. TRANS: Dropdown label in direct notice form. msgid "To" msgstr "×ל" -#: lib/messageform.php:166 lib/noticeform.php:186 -#, fuzzy -msgid "Available characters" -msgstr "לפחות 6 ×ותיות" - -#: lib/messageform.php:185 lib/noticeform.php:237 -#, fuzzy +#. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" msgid "Send" -msgstr "שלח" +msgstr "שליחה" + +#. TRANS: Header in message list. +msgid "Messages" +msgstr "" + +#. TRANS: Followed by notice source (usually the client used to send the notice). +#. TRANS: Followed by notice source. +msgid "from" +msgstr "מ×ת" + +#. TRANS: A possible notice source (web interface). +msgctxt "SOURCE" +msgid "web" +msgstr "וב" + +#. TRANS: A possible notice source (XMPP). +msgctxt "SOURCE" +msgid "xmpp" +msgstr "xmpp" + +#. TRANS: A possible notice source (e-mail). +msgctxt "SOURCE" +msgid "mail" +msgstr "דו×״ל" + +#. TRANS: A possible notice source (OpenMicroBlogging). +msgctxt "SOURCE" +msgid "omb" +msgstr "omb" + +#. TRANS: A possible notice source (Application Programming Interface). +msgctxt "SOURCE" +msgid "api" +msgstr "api" + +#. TRANS: Client exception thrown when no author for an activity was found. +msgid "Cannot get author for activity." +msgstr "" + +#. TRANS: Client exception thrown when ... +msgid "Bookmark not posted to this group." +msgstr "" + +#. TRANS: Client exception when ... +msgid "Object not posted to this user." +msgstr "" + +#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled. +msgid "Do not know how to handle this kind of target." +msgstr "" + +#. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. +msgid "You must implement either adaptNoticeListItem() or showNotice()." +msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. -#: lib/nickname.php:165 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "כינוי יכול להכיל רק ×ותיות ×נגליות קטנות ומספרי×, ×•×œ×œ× ×¨×•×•×—×™×." - -#. TRANS: Validation error in form for registration, profile and group settings, etc. -#: lib/nickname.php:178 msgid "Nickname cannot be empty." msgstr "" #. TRANS: Validation error in form for registration, profile and group settings, etc. -#: lib/nickname.php:191 #, php-format msgid "Nickname cannot be more than %d character long." msgid_plural "Nickname cannot be more than %d characters long." msgstr[0] "" msgstr[1] "" -#: lib/noticeform.php:160 -#, fuzzy +#. TRANS: Form legend for notice form. msgid "Send a notice" -msgstr "הודעה חדשה" +msgstr "שליחת עדכון" -#: lib/noticeform.php:174 +#. TRANS: Title for notice label. %s is the user's nickname. #, php-format msgid "What's up, %s?" msgstr "מה המצב %s?" -#: lib/noticeform.php:193 +#. TRANS: Input label in notice form for adding an attachment. msgid "Attach" msgstr "" -#: lib/noticeform.php:197 -msgid "Attach a file" +#. TRANS: Title for input field to attach a file to a notice. +msgid "Attach a file." msgstr "" -#: lib/noticeform.php:213 -#, fuzzy +#. TRANS: Field label to add location to a notice. msgid "Share my location" -msgstr "שמירת הפרופיל נכשלה." +msgstr "לשתף ×ת ×”×ž×™×§×•× ×©×œ×™" -#: lib/noticeform.php:216 -#, fuzzy +#. TRANS: Text to not share location for a notice in notice form. msgid "Do not share my location" -msgstr "שמירת הפרופיל נכשלה." +msgstr "×œ× ×œ×©×ª×£ ×ת ×”×ž×™×§×•× ×©×œ×™" -#: lib/noticeform.php:217 +#. TRANS: Timeout error text for location retrieval in notice form. msgid "" "Sorry, retrieving your geo location is taking longer than expected, please " "try again later" msgstr "" -#. TRANS: Used in coordinates as abbreviation of north -#: lib/noticelist.php:452 -#, fuzzy +#. TRANS: Separator in profile addressees list. +msgctxt "SEPARATOR" +msgid ", " +msgstr "" + +#. TRANS: Used in coordinates as abbreviation of north. msgid "N" -msgstr "ל×" +msgstr "צפ׳" -#. TRANS: Used in coordinates as abbreviation of south -#: lib/noticelist.php:454 +#. TRANS: Used in coordinates as abbreviation of south. msgid "S" -msgstr "" +msgstr "דר׳" -#. TRANS: Used in coordinates as abbreviation of east -#: lib/noticelist.php:456 +#. TRANS: Used in coordinates as abbreviation of east. msgid "E" -msgstr "" +msgstr "מז׳" -#. TRANS: Used in coordinates as abbreviation of west -#: lib/noticelist.php:458 +#. TRANS: Used in coordinates as abbreviation of west. msgid "W" -msgstr "" +msgstr "מע׳" -#: lib/noticelist.php:460 +#. TRANS: Coordinates message. +#. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, +#. TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude, +#. TRANS: %5$s is longitude degrees, %6$s is longitude minutes, +#. TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude, #, php-format msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "" -#: lib/noticelist.php:469 +#. TRANS: Followed by geo location. msgid "at" msgstr "" -#: lib/noticelist.php:518 -msgid "web" -msgstr "" - -#: lib/noticelist.php:584 -#, fuzzy +#. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" -msgstr "×ין תוכן!" +msgstr "בהקשר" -#: lib/noticelist.php:619 -#, fuzzy +#. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" -msgstr "צור" +msgstr "הודהד על־ידי" -#: lib/noticelist.php:646 +#. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:647 +#. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "תגובות" -#: lib/noticelist.php:691 -#, fuzzy -msgid "Notice repeated" -msgstr "הודעות" +#. TRANS: Link title in notice list item to delete a notice. +msgid "Delete this notice" +msgstr "" -#: lib/nudgeform.php:116 +#. TRANS: Title for repeat form status in notice list when a notice has been repeated. +msgid "Notice repeated." +msgstr "העדכון הודהד." + +#. TRANS: Field label for notice text. +msgid "Update your status..." +msgstr "" + +#. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" -msgstr "" +msgstr "לדחוף ×ת המשתמש ×”×–×”" -#: lib/nudgeform.php:128 +#. TRANS: Button text to nudge/ping another user. +msgctxt "BUTTON" msgid "Nudge" -msgstr "" +msgstr "לדחוף" -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" +#. TRANS: Button title to nudge/ping another user. +msgid "Send a nudge to this user." +msgstr "לשלוח דחיפה למשתמש ×”×–×”." -#: lib/oauthstore.php:294 +#. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." msgstr "" -#: lib/oauthstore.php:302 +#. TRANS: Exception thrown when creating a new avatar fails in OAuth store. msgid "Error inserting avatar." msgstr "" -#: lib/oauthstore.php:322 +#. TRANS: Exception thrown when creating a remote profile fails in OAuth store. msgid "Error inserting remote profile." msgstr "" #. TRANS: Exception thrown when a notice is denied because it has been sent before. -#: lib/oauthstore.php:362 msgid "Duplicate notice." msgstr "" -#: lib/oauthstore.php:507 -msgid "Couldn't insert new subscription." -msgstr "הכנסת מנוי חדש נכשלה." - -#: lib/personalgroupnav.php:102 -msgid "Personal" -msgstr "×ישי" - -#: lib/personalgroupnav.php:107 -msgid "Replies" -msgstr "תגובות" - -#: lib/personalgroupnav.php:117 -msgid "Favorites" -msgstr "מועדפי×" - -#: lib/personalgroupnav.php:128 -msgid "Inbox" +#. TRANS: Exception thrown when creating a new subscription fails in OAuth store. +msgid "Could not insert new subscription." msgstr "" -#: lib/personalgroupnav.php:129 +#. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. +msgid "No oEmbed API endpoint available." +msgstr "" + +#. TRANS: Field label for list. +msgctxt "LABEL" +msgid "List" +msgstr "" + +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." +msgstr "" + +#. TRANS: Field title for description of list. +msgid "Describe the list or topic." +msgstr "" + +#. TRANS: Field title for description of list. +#. TRANS: %d is the maximum number of characters for the description. +#, php-format +msgid "Describe the list or topic in %d character." +msgid_plural "Describe the list or topic in %d characters." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Button title to delete a list. +msgid "Delete this list." +msgstr "" + +#. TRANS: Header in list edit form. +msgid "Add or remove people" +msgstr "" + +#. TRANS: Header in list edit form. +msgctxt "HEADER" +msgid "Search" +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "List" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %1$s is a list, %2$s is a nickname. +#, php-format +msgid "%1$s list by %2$s." +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "Listed" +msgstr "" + +#. TRANS: Menu item in list navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscribers" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %1$s is a list, %2$s is a nickname. +#, php-format +msgid "Subscribers to %1$s list by %2$s." +msgstr "" + +#. TRANS: Menu item in list navigation panel. +msgctxt "MENU" +msgid "Edit" +msgstr "" + +#. TRANS: Menu item title in list navigation panel. +#. TRANS: %s is a list. +#, php-format +msgid "Edit %s list by you." +msgstr "" + +#. TRANS: Link description for link to list of users tagged with a tag. +msgid "Tagged" +msgstr "" + +#. TRANS: Title for link to edit list settings. +msgid "Edit list settings." +msgstr "" + +#. TRANS: Text for link to edit list settings. +msgid "Edit" +msgstr "" + +#. TRANS: Privacy mode text in list list item for private list. +msgctxt "MODE" +msgid "Private" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "List Subscriptions" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists subscribed to by %s." +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "MENU" +msgid "Lists with %s" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists with %s." +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "MENU" +msgid "Lists by %s" +msgstr "" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is a user nickname. +#, php-format +msgctxt "TOOLTIP" +msgid "Lists by %s." +msgstr "" + +#. TRANS: Label in lists widget. +msgctxt "LABEL" +msgid "Your lists" +msgstr "" + +#. TRANS: Fieldset legend in lists widget. +msgctxt "LEGEND" +msgid "Edit lists" +msgstr "" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "" + +#. TRANS: Title for section contaning lists with the most subscribers. +msgid "Popular lists" +msgstr "" + +#. TRANS: List summary. %1$d is the number of users in the list, +#. TRANS: %2$d is the number of subscribers to the list. +#, php-format +msgid "Listed: %1$d Subscribers: %2$d" +msgstr "" + +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format +msgid "Lists with you" +msgstr "" + +#. TRANS: Title for page that displays which lists a user is part of. +#. TRANS: %s is a profile name. +#, php-format +msgid "Lists with %s" +msgstr "" + +#. TRANS: Title for page that displays lists a user has subscribed to. +msgid "List subscriptions" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +#. TRANS: Menu item in settings navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Profile" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. +msgid "Your profile" +msgstr "דף המשתמש שלך" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Replies" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Favorites" +msgstr "" + +#. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) +msgctxt "FIXME" +msgid "User" +msgstr "" + +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Messages" +msgstr "" + +#. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" msgstr "" -#: lib/personalgroupnav.php:133 -msgid "Outbox" -msgstr "" - -#: lib/personalgroupnav.php:134 -#, fuzzy -msgid "Your sent messages" -msgstr "הודעה חדשה" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - #. TRANS: Displayed as version information for a plugin if no version information was found. -#: lib/plugin.php:121 msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "הרשמות" +#. TRANS: Plugin admin panel controls +msgctxt "plugin" +msgid "Disable" +msgstr "" -#: lib/profileaction.php:126 -msgid "All subscriptions" -msgstr "כל המנויי×" +#. TRANS: Plugin admin panel controls +msgctxt "plugin" +msgid "Enable" +msgstr "" -#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "מנויי×" +msgctxt "plugin-description" +msgid "(Plugin descriptions unavailable when disabled.)" +msgstr "" -#: lib/profileaction.php:161 -#, fuzzy -msgid "All subscribers" -msgstr "מנויי×" +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Settings" +msgstr "" -#: lib/profileaction.php:191 -#, fuzzy +#. TRANS: Menu item title in primary navigation panel. +msgid "Change your personal settings." +msgstr "" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Site configuration." +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Logout" +msgstr "יצי××”" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Logout from the site." +msgstr "" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Login to the site." +msgstr "" + +#. TRANS: Menu item in primary navigation panel. +msgctxt "MENU" +msgid "Search" +msgstr "חיפוש" + +#. TRANS: Menu item title in primary navigation panel. +msgid "Search the site." +msgstr "" + +#. TRANS: H2 text for user subscription statistics. +msgid "Following" +msgstr "" + +#. TRANS: H2 text for user subscriber statistics. +msgid "Followers" +msgstr "" + +#. TRANS: Label for user statistics. msgid "User ID" -msgstr "מתשמש" +msgstr "מזהה משתמש" -#: lib/profileaction.php:196 +#. TRANS: Label for user statistics. msgid "Member since" msgstr "חבר מ××–" -#. TRANS: Average count of posts made per day since account registration -#: lib/profileaction.php:235 +#. TRANS: Label for user statistics. +msgid "Notices" +msgstr "עדכוני×" + +#. TRANS: Label for user statistics. +#. TRANS: Average count of posts made per day since account registration. msgid "Daily average" msgstr "" -#: lib/profileaction.php:264 -#, fuzzy -msgid "All groups" +#. TRANS: H2 text for user group membership statistics. +msgid "Groups" msgstr "קבוצות" -#: lib/profileformaction.php:123 +#. TRANS: H2 text for user list membership statistics. +msgid "Lists" +msgstr "" + +#. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." msgstr "" -#: lib/publicgroupnav.php:78 -msgid "Public" -msgstr "ציבורי" - -#: lib/publicgroupnav.php:82 +#. TRANS: Menu item title in search group navigation panel. msgid "User groups" msgstr "" -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:88 +#. TRANS: Menu item title in search group navigation panel. +msgid "Recent tags" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:92 -#, fuzzy +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "Popular" -msgstr "×נשי×" +msgstr "" -#: lib/redirectingaction.php:95 -#, fuzzy +#. TRANS: Title for inbox tag cloud section. +msgctxt "TITLE" +msgid "Trending topics" +msgstr "" + +#. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." -msgstr "×ין מסמך ×›×–×”." +msgstr "חסר משתנה return-to." -#: lib/repeatform.php:107 -#, fuzzy +#. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" -msgstr "×ין הודעה כזו." +msgstr "להדהד ×ת העדכון ×”×–×”?" -#: lib/repeatform.php:132 -msgid "Yes" -msgstr "כן" +#. TRANS: Button title to repeat a notice on notice repeat form. +msgid "Repeat this notice." +msgstr "להדהד ×ת העדכון ×”×–×”." -#: lib/repeatform.php:132 -#, fuzzy -msgid "Repeat this notice" -msgstr "×ין הודעה כזו." - -#: lib/revokeroleform.php:91 -#, fuzzy, php-format +#. TRANS: Description of role revoke form. %s is the role to be revoked. +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "ליטול ×ת התפקיד \"%s\" מהמשתמש ×”×–×”" #. TRANS: Client error on action trying to visit a non-existing page. -#: lib/router.php:974 msgid "Page not found." msgstr "" -#: lib/sandboxform.php:67 +#. TRANS: Title of form to sandbox a user. +msgctxt "TITLE" msgid "Sandbox" msgstr "" -#: lib/sandboxform.php:78 -#, fuzzy +#. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "להכניס ×ת המשתמש ל×רגז חול" #. TRANS: Fieldset legend for the search form. -#: lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "חיפוש" +msgstr "חיפוש ב×תר" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. -#: lib/searchaction.php:128 msgid "Keyword(s)" msgstr "" #. TRANS: Button text for searching site. -#: lib/searchaction.php:130 +#. TRANS: Button text to search profiles. msgctxt "BUTTON" msgid "Search" msgstr "" -#. TRANS: Definition list item with instructions on how to get (better) search results. -#: lib/searchaction.php:170 -#, fuzzy -msgid "Search help" -msgstr "חיפוש" +#. TRANS: Standard search suggestions shown when a search does not give any results. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords." +msgstr "" -#: lib/searchgroupnav.php:80 +#. TRANS: Standard search suggestions shown when a search does not give any results. +#, php-format +msgid "" +"You can also try your search on other engines:\n" +"\n" +"* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" +"site.server%%%%)\n" +"* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)\n" +"* [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)\n" +"* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" +"* [Collecta](http://collecta.com/#q=%s)" +msgstr "" + +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" msgid "People" -msgstr "×נשי×" +msgstr "" -#: lib/searchgroupnav.php:81 +#. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" msgstr "" -#: lib/searchgroupnav.php:83 +#. TRANS: Menu item in search group navigation panel. +msgctxt "MENU" +msgid "Notices" +msgstr "" + +#. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" msgstr "" -#: lib/searchgroupnav.php:85 +#. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" msgstr "" -#: lib/section.php:89 +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "עזרה" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to Terms of Service. +msgctxt "MENU" +msgid "TOS" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to privacy policy. +msgctxt "MENU" +msgid "Privacy" +msgstr "" + +#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. +msgctxt "MENU" +msgid "Source" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. +msgctxt "MENU" +msgid "Version" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "" + +#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. +msgctxt "MENU" +msgid "Badge" +msgstr "" + +#. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "" -#: lib/section.php:106 +#. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." msgstr "" -#: lib/silenceform.php:67 -#, fuzzy +#. TRANS: Header in settings navigation panel. +msgctxt "HEADER" +msgid "Settings" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change your profile settings" +msgstr "שינוי הגדרות דף המשתמש" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Avatar" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Upload an avatar" +msgstr "העל×ת תמונה" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Password" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change your password" +msgstr "שינוי ססמה" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Email" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Change email handling" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "URL" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "URL shorteners" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "IM" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Updates by instant messenger (IM)" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "SMS" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Updates by SMS" +msgstr "" + +#. TRANS: Menu item in settings navigation panel. +msgctxt "MENU" +msgid "Connections" +msgstr "" + +#. TRANS: Menu item title in settings navigation panel. +msgid "Authorized connected applications" +msgstr "" + +#. TRANS: Title of form to silence a user. +msgctxt "TITLE" msgid "Silence" -msgstr "הודעה חדשה" +msgstr "" -#: lib/silenceform.php:78 -#, fuzzy +#. TRANS: Description of form to silence a user. msgid "Silence this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "להשתיק ×ת המשתמש ×”×–×”" -#: lib/subgroupnav.php:83 -#, fuzzy, php-format -msgid "People %s subscribes to" -msgstr "הרשמה מרוחקת" - -#: lib/subgroupnav.php:91 -#, fuzzy, php-format -msgid "People subscribed to %s" -msgstr "הרשמה מרוחקת" - -#: lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Subscriptions" msgstr "" -#: lib/subgroupnav.php:105 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "People %s subscribes to." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "People subscribed to %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +#. TRANS: %d is the number of pending subscription requests. +#, php-format +msgctxt "MENU" +msgid "Pending (%d)" +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#, php-format +msgid "Approve pending subscription requests." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "Groups %s is a member of." +msgstr "" + +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is a user nickname. +#, php-format +msgid "List subscriptions by %s." +msgstr "" + +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" msgid "Invite" -msgstr "" +msgstr "הזמנה" -#: lib/subgroupnav.php:106 +#. TRANS: Menu item title in local navigation menu. +#. TRANS: %s is the StatusNet sitename. #, php-format -msgid "Invite friends and colleagues to join you on %s" +msgid "Invite friends and colleagues to join you on %s." msgstr "" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 +#. TRANS: Form of form to subscribe to a user. +msgid "Subscribe to this user" +msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" + +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" msgstr "" -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 +#. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as tagged" msgstr "" -#: lib/tagcloudsection.php:56 -#, fuzzy +#. TRANS: Content displayed in a tag cloud section if there are no tags. +msgctxt "NOTAGS" msgid "None" -msgstr "ל×" +msgstr "" #. TRANS: Server exception displayed if a theme name was invalid. -#: lib/theme.php:74 msgid "Invalid theme name." msgstr "" -#: lib/themeuploader.php:50 +#. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" -#: lib/themeuploader.php:58 lib/themeuploader.php:61 +#. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." msgstr "" -#: lib/themeuploader.php:91 lib/themeuploader.php:102 -#: lib/themeuploader.php:279 lib/themeuploader.php:283 -#: lib/themeuploader.php:291 lib/themeuploader.php:298 -#, fuzzy +#. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. +#. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. msgid "Failed saving theme." -msgstr "עדכון התמונה נכשל." +msgstr "שמירת ערכת ×”× ×•×©× × ×›×©×œ×”." -#: lib/themeuploader.php:147 -msgid "Invalid theme: bad directory structure." +#. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. +msgid "Invalid theme: Bad directory structure." msgstr "" -#: lib/themeuploader.php:166 +#. TRANS: Client exception thrown when an uploaded theme is larger than the limit. +#. TRANS: %d is the number of bytes of the uncompressed theme. #, php-format msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" @@ -8816,136 +9146,210 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: lib/themeuploader.php:179 -msgid "Invalid theme archive: missing file css/display.css" +#. TRANS: Server exception thrown when an uploaded theme is incomplete. +msgid "Invalid theme archive: Missing file css/display.css" msgstr "" -#: lib/themeuploader.php:219 +#. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" -#: lib/themeuploader.php:225 +#. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" -#: lib/themeuploader.php:242 +#. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. +#. TRANS: %s is the file type that is not allowed. #, php-format -msgid "Theme contains file of type '.%s', which is not allowed." +msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" -#: lib/themeuploader.php:260 -#, fuzzy +#. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." -msgstr "שגי××” בעדכון פרופיל מרוחק" +msgstr "שגי××” בפתיחת ×רכיון ×”× ×•×©× ×”×–×”" -#: lib/topposterssection.php:74 +#. TRANS: Header for Notices section. +msgctxt "HEADER" +msgid "Notices" +msgstr "" + +#. TRANS: Link to show replies for a notice. +#. TRANS: %d is the number of replies to a notice and used for plural. +#, php-format +msgid "Show reply" +msgid_plural "Show all %d replies" +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Reference to the logged in user in favourite list. +msgctxt "FAVELIST" +msgid "You" +msgstr "" + +#. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". +#. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. +#, php-format +msgctxt "FAVELIST" +msgid "%1$s and %2$s" +msgstr "" + +#. TRANS: List message for notice favoured by logged in user. +msgctxt "FAVELIST" +msgid "You like this." +msgstr "" + +#. TRANS: List message for when more than 4 people like something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d others like this." +msgid_plural "%%s and %d others like this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s likes this." +msgid_plural "%%s like this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for notice repeated by logged in user. +msgctxt "REPEATLIST" +msgid "You have repeated this notice." +msgstr "הדהדת ×ת העדכון ×”×–×”." + +#. TRANS: List message for repeated notices. +#. TRANS: %d is the number of users that have repeated a notice. +#, php-format +msgid "One person has repeated this notice." +msgid_plural "%d people have repeated this notice." +msgstr[0] "××“× ×חד הדהד ×ת העדכון ×”×–×”." +msgstr[1] "%d ×× ×©×™× ×”×“×”×“×• ×ת העדכון ×”×–×”." + +#. TRANS: Form legend. +#, php-format +msgid "Search and list people" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "Everything" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "Fullname" +msgstr "" + +#. TRANS: Dropdown option for searching in profiles. +msgid "URI (Remote users)" +msgstr "" + +#. TRANS: Dropdown field label. +msgctxt "LABEL" +msgid "Search in" +msgstr "" + +#. TRANS: Dropdown field title. +msgid "Choose a field to search." +msgstr "" + +#. TRANS: Form legend. +#. TRANS: %1$s is a nickname, $2$s is a list. +#, php-format +msgid "Remove %1$s from list %2$s" +msgstr "" + +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, php-format +msgid "Add %1$s to list %2$s" +msgstr "" + +#. TRANS: Title for top posters section. msgid "Top posters" msgstr "" +#. TRANS: Option in drop-down of potential addressees. +msgctxt "SENDTO" +msgid "Everyone" +msgstr "" + +#. TRANS: Option in drop-down of potential addressees. +#. TRANS: %s is a StatusNet sitename. +#, php-format +msgid "My colleagues at %s" +msgstr "" + +#. TRANS: Label for drop-down of potential addressees. +msgctxt "LABEL" +msgid "To:" +msgstr "" + +#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. +msgid "Private?" +msgstr "" + +#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. +#, php-format +msgid "Unknown to value: \"%s\"." +msgstr "" + #. TRANS: Title for the form to unblock a user. -#: lib/unblockform.php:67 msgctxt "TITLE" msgid "Unblock" msgstr "" -#: lib/unsandboxform.php:69 +#. TRANS: Title for unsandbox form. +msgctxt "TITLE" msgid "Unsandbox" msgstr "" -#: lib/unsandboxform.php:80 -#, fuzzy +#. TRANS: Description for unsandbox form. msgid "Unsandbox this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "×œ×”×•×¦×™× ×ת המשתמש ×”×–×” מ×רגז החול" -#: lib/unsilenceform.php:67 +#. TRANS: Title for unsilence form. msgid "Unsilence" msgstr "" -#: lib/unsilenceform.php:78 -#, fuzzy +#. TRANS: Form description for unsilence form. msgid "Unsilence this user" -msgstr "×ין משתמש ×›×–×”." +msgstr "לבטל ×ת השתקת המשתמש ×”×–×”" -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -#, fuzzy +#. TRANS: Form legend on unsubscribe form. +#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" -msgstr "×œ× ×©×œ×—× ×• ×לינו ×ת הפרופיל ×”×–×”" +msgstr "לבטל ×ת ×”×¨×™×©×•× ×œ×ž×©×ª×ž×© ×”×–×”" -#: lib/unsubscribeform.php:137 +#. TRANS: Button text on unsubscribe form. +#. TRANS: Button text for unsubscribing from a list. +msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "בטל מנוי" +msgstr "" #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). -#: lib/usernoprofileexception.php:60 #, php-format msgid "User %1$s (%2$d) has no profile record." msgstr "" -#: lib/userprofile.php:119 -#, fuzzy -msgid "Edit Avatar" -msgstr "תמונה" - -#: lib/userprofile.php:236 lib/userprofile.php:250 -msgid "User actions" -msgstr "" - -#: lib/userprofile.php:239 -msgid "User deletion in progress..." -msgstr "" - -#: lib/userprofile.php:265 -#, fuzzy -msgid "Edit profile settings" -msgstr "הגדרות הפרופיל" - -#: lib/userprofile.php:266 -msgid "Edit" -msgstr "" - -#: lib/userprofile.php:289 -msgid "Send a direct message to this user" -msgstr "" - -#: lib/userprofile.php:290 -#, fuzzy -msgid "Message" -msgstr "הודעה חדשה" - -#: lib/userprofile.php:331 -msgid "Moderate" -msgstr "" - -#: lib/userprofile.php:369 -#, fuzzy -msgid "User role" -msgstr "למשתמש ×ין פרופיל." - -#: lib/userprofile.php:371 -msgctxt "role" -msgid "Administrator" -msgstr "" - -#: lib/userprofile.php:372 -msgctxt "role" -msgid "Moderator" +#. TRANS: Authorisation exception thrown when a user a not allowed to login. +msgid "Not allowed to log in." msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1306 msgid "a few seconds ago" msgstr "לפני מספר שניות" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1309 msgid "about a minute ago" msgstr "לפני כדקה" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1313 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -8953,12 +9357,10 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1316 msgid "about an hour ago" msgstr "לפני כשעה" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1320 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -8966,12 +9368,10 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1323 msgid "about a day ago" msgstr "לפני כיו×" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1327 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -8979,12 +9379,10 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1330 msgid "about a month ago" msgstr "לפני כחודש" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1334 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -8992,49 +9390,145 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1337 msgid "about a year ago" msgstr "לפני כשנה" -#: lib/webcolor.php:80 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "ל×תר הבית יש כתובת ×œ× ×—×•×§×™×ª." - -#. TRANS: Validation error for a web colour. -#. TRANS: %s is the provided (invalid) text for colour. -#: lib/webcolor.php:120 +#. TRANS: Web color exception thrown when a hexadecimal color code does not validate. +#. TRANS: %s is the provided (invalid) color code. #, php-format msgid "%s is not a valid color! Use 3 or 6 hex characters." msgstr "" -#. TRANS: %s is the URL to the StatusNet site's Instant Messaging settings. -#: lib/xmppmanager.php:287 -#, php-format -msgid "Unknown user. Go to %s to add your address to your account" -msgstr "" - -#. TRANS: Response to XMPP source when it sent too long a message. -#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number. -#: lib/xmppmanager.php:406 -#, php-format -msgid "Message too long. Maximum is %1$d character, you sent %2$d." -msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d." -msgstr[0] "" -msgstr[1] "" - #. TRANS: Exception. -#: lib/xrd.php:64 msgid "Invalid XML." msgstr "" #. TRANS: Exception. -#: lib/xrd.php:69 msgid "Invalid XML, missing XRD root." msgstr "" #. TRANS: Commandline script output. %s is the filename that contains a backup for a user. -#: scripts/restoreuser.php:62 #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "כינוי ×œ× ×ª×§×™×Ÿ: \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "שגי××” בעדכון פרופיל מרוחק." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "×œ× ×ž×¦×œ×™×— לשמור תג." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "שמירת הפרופיל נכשלה." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "×œ× ×”×ž×¦× ×ž×©×ª×ž×© ×¢× ×”×›×™× ×•×™ %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "כתובת דו×ר ×לקטרוני ×œ× ×ª×§×™× ×”." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "שמירת הפרופיל נכשלה." + +#~ msgid "Unable to save your design settings." +#~ msgstr "×œ× × ×™×ª×Ÿ לשמור ×ת הגדרות העיצוב שלך." + +#~ msgid "Could not update your design." +#~ msgstr "עדכון העיצוב נכשל." + +#~ msgid "Theme not available: %s." +#~ msgstr "ערכת × ×•×©× ×œ× ×–×ž×™× ×”: %s." + +#~ msgid "Change logo" +#~ msgstr "שנה" + +#~ msgid "Change theme" +#~ msgstr "שינוי ערכת נוש×" + +#~ msgid "Site theme" +#~ msgstr "ערכת × ×•×©× ×œ×תר" + +#~ msgid "Custom theme" +#~ msgstr "ערכת × ×•×©× ×ž×•×ª×מת ×ישית" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "×פשר להעלות תמונת רקע ל×תר. גודל התמונה המרבי ×”×•× %1$s." + +#~ msgid "On" +#~ msgstr "מופעל" + +#~ msgid "Off" +#~ msgstr "כבוי" + +#~ msgid "Content" +#~ msgstr "תוכן" + +#~ msgid "Sidebar" +#~ msgstr "סרגל צד" + +#~ msgid "Text" +#~ msgstr "טקסט" + +#~ msgid "Links" +#~ msgstr "קישורי×" + +#~ msgid "Advanced" +#~ msgstr "מתקד×" + +#~ msgid "Custom CSS" +#~ msgstr "CSS מות×× ×ישית" + +#~ msgid "Save design." +#~ msgstr "שמירת עיצוב." + +#~ msgid "Group design" +#~ msgstr "עיצוב קבוצה." + +#~ msgid "Design preferences saved." +#~ msgstr "העדפות העיצוב נשמרו." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "×ל תשלח לעצמך הודעה; פשוט ×מור ×ת ×–×” לעצמך בשקט." + +#~ msgid "Profile design" +#~ msgstr "עיצוב דף משתמש" + +#~ msgid "View profile designs" +#~ msgstr "הצגת עיצובי דף משתמש" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "עיצוב" + +#~ msgid "Change colours" +#~ msgstr "שינוי צבעי×" + +#~ msgid "Upload file" +#~ msgstr "העל×ת קובץ" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "×תה יכול להעלות תמונת רקע משלך. גודל הקובץ המרבי ×”×•× 2 מ״ב." + +#~ msgid "Design your profile" +#~ msgstr "עיצוב דף המשתמש שלך" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 4c761827d0..f008048b8d 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:24+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -104,7 +104,6 @@ msgid "Save access settings" msgstr "PÅ™istupne nastajenja skÅ‚adować" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -120,7 +119,6 @@ msgstr "PÅ™istupne nastajenja skÅ‚adować" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -195,7 +193,6 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -356,7 +353,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Wužiwar njeje so daÅ‚ aktualizować." @@ -371,7 +367,6 @@ msgstr "Profil njeje so skÅ‚adować daÅ‚." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -384,24 +379,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Njeje móžno, designowe nastajenja skÅ‚adować." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Design njeda so aktualizować." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -495,6 +472,8 @@ msgstr "" "njejsu." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -727,7 +706,6 @@ msgstr "skupiny na %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "DyrbiÅ¡ administrator być, zo by skupinu wobdźěłaÅ‚." @@ -844,7 +822,6 @@ msgstr "Zmylk datoweje banki pÅ™i zasunjenju oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -853,7 +830,6 @@ msgstr "Zmylk datoweje banki pÅ™i zasunjenju oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "NjewoÄakowane wotpósÅ‚anje formulara." @@ -1204,7 +1180,6 @@ msgstr "DyrbiÅ¡ pÅ™izjewjeny być, zo by skupinu wopušćiÅ‚." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1290,6 +1265,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Lisćina wužiwarjow w tutej skupinje." @@ -1441,7 +1417,6 @@ msgstr "PÅ™iwěšk njeeksistuje." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1928,149 +1903,6 @@ msgstr "Tutoho wužiwarja njezhaÅ¡eć." msgid "Delete this user." msgstr "Tutoho wužiwarja zhaÅ¡eć" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Design" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Designowe nastajenja za tute sydÅ‚o StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "NjepÅ‚aćiwy logowy URL." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "NjepÅ‚aćiwy SSL-URL loga." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Å at njesteji k dispoziciji: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Logo zmÄ›nić" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo sydÅ‚a" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Å at zmÄ›nić" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Å at sydÅ‚a" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Å at za sydÅ‚o." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Swójski Å¡at" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "MóžeÅ¡ swójski Å¡at StatusNet jako .ZIP-archiw nahrać." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Pozadkowy wobraz zmÄ›nić" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Pozadk" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"MóžeÅ¡ pozadkowy wobraz za sydÅ‚o nahrać. Maksimalna datajowa wulkosć je %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Zapinjeny" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Wupinjeny" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Pozadkowy wobraz zmóžnić abo znjemóžnić." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Pozadkowy wobraz kachlicować" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Barby zmÄ›nić" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Wobsah" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "BóÄnica" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Tekst" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Wotkazy" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Rozšěrjeny" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Swójski CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Standardne hódnoty wužiwać" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Standardne designy wobnowić." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Na standard wróćo stajić." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Design skÅ‚adować." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Tuta zdźělenka faworit njeje!" @@ -2658,29 +2490,6 @@ msgstr "Zmylk datoweje banki blokuje wužiwarja za skupinu." msgid "No ID." msgstr "Žadyn ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "DyrbiÅ¡ pÅ™izjewjeny być, zo by skupinu wobdźěłaÅ‚." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Skupinski design" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Njeje móžno, twoje designowe nastajenja aktualizować." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Designowe nastajenja skÅ‚adowane." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3343,12 +3152,6 @@ msgstr "Žadyn wobsah!" msgid "No recipient specified." msgstr "Žadyn pÅ™ijimowar podaty." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "PowÄ›sć pósÅ‚ana" @@ -3623,7 +3426,7 @@ msgid "Confirm" msgstr "Wobkrućić" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Samsne hesÅ‚o kaž horjeka." @@ -3799,30 +3602,6 @@ msgstr "Awatarowy zapis" msgid "Directory where avatars are located." msgstr "Zapis, hdźež awatary su." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Pozadki" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Serwer za pozadki." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Webšćežka k pozadkam." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Serwer za pozadki na SSL-stronach." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Webšćežka k pozadkam na SSL-stronach." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Zapis, hdźež pozadki su." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "PÅ™iwěški" @@ -4590,7 +4369,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 abo wjace znamjeÅ¡kow, a njezabudź jo!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Wróćo stajić" @@ -4599,19 +4377,6 @@ msgstr "Wróćo stajić" msgid "Enter a nickname or email address." msgstr "Zapodaj pÅ™imjeno abo e-mejlowu adresu." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Wužiwar z tej e-mejlowej adresu abo tym wužiwarskim mjenom njeeksistuje." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Wužiwar nima žanu zregistrowanu e-mejlowu adresu." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Zmylk pÅ™i skÅ‚adowanju adresoweho wobkrućenja." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5512,6 +5277,14 @@ msgstr "SydÅ‚owe mjeno njesmÄ› prózdne być." msgid "You must have a valid contact email address." msgstr "DyrbiÅ¡ pÅ‚aćiwu kontaktowu e-mejlowu adresu měć." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "NjepÅ‚aćiwy logowy URL." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "NjepÅ‚aćiwy SSL-URL loga." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5587,7 +5360,9 @@ msgid "Default language" msgstr "Standardna rÄ›Ä" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "RÄ›Ä sydÅ‚a, jeli awtomatiske spóznawanje po nastajenjach wobhladowaka k " "dispoziciji njesteji" @@ -5614,8 +5389,22 @@ msgstr "Limit duplikatow" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo sydÅ‚a" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "SydÅ‚owe nastajenja skÅ‚adować" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6363,40 +6152,6 @@ msgstr "Awatarowy URL \"%s\" njeda so Äitać." msgid "Wrong image type for avatar URL \"%s\"." msgstr "WopaÄny wobrazowy typ za awatarowy URL \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profilowy design" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Wjele wjesela!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "SydÅ‚owe nastajenja skÅ‚adować" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Profilowe designy sej wobhladać" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Profilowe designy pokazać abo schować." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Pozadk" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6840,6 +6595,19 @@ msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Wužiwar z tej e-mejlowej adresu abo tym wužiwarskim mjenom njeeksistuje." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Wužiwar nima žanu zregistrowanu e-mejlowu adresu." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Zmylk pÅ™i skÅ‚adowanju adresoweho wobkrućenja." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Skupina njeda so wutowrić." @@ -7105,11 +6873,6 @@ msgstr "showForm() njeimplementowany." msgid "saveSettings() not implemented." msgstr "saveSettings() njeimplementowany." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Njeje móžno, designowe nastajenje zhaÅ¡eć." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7141,17 +6904,6 @@ msgctxt "MENU" msgid "Site" msgstr "SydÅ‚o" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Designowa konfiguracija" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Design" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Wužiwarska konfiguracija" @@ -8035,45 +7787,6 @@ msgstr "ZniÄić" msgid "Delete this user" msgstr "Tutoho wužiwarja wuÅ¡mórnyć" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Design skÅ‚adować" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Barby zmÄ›nić" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Standardne hódnoty wužiwać" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Dataju nahrać" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"MóžeÅ¡ swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa wulkosć " -"je 2 MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Zapinjeny" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Wupinjeny" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Designowe standardne nastajenja wobnowjene." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8292,13 +8005,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Logo skupiny %s pÅ™idać abo wobdźěłać" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Design skupiny %s pÅ™idać abo wobdźěłać" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Skupinske akcije" @@ -9615,10 +9321,6 @@ msgstr "E-mejl" msgid "Change email handling" msgstr "" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Twój profil wuhotować" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10063,3 +9765,227 @@ msgstr "NjepÅ‚aćiwy XML, korjeÅ„ XRD faluje." #, php-format msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawÄ›sćenje z dataje \"%s\"-" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Awatarowy URL \"%s\" njeda so Äitać." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Zmylk pÅ™i aktualizaciji zdaleneho profila." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Njemóžno sÅ‚užby za %s namakać." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Profil njeje so skÅ‚adować daÅ‚." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Wužiwar z pÅ™imjenom %s njeda so namakać." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "NjepÅ‚aćiwa e-mejlowa adresa." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Profil njeje so skÅ‚adować daÅ‚." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Njeje móžno, designowe nastajenja skÅ‚adować." + +#~ msgid "Could not update your design." +#~ msgstr "Design njeda so aktualizować." + +#~ msgid "Design" +#~ msgstr "Design" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Designowe nastajenja za tute sydÅ‚o StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Å at njesteji k dispoziciji: %s." + +#~ msgid "Change logo" +#~ msgstr "Logo zmÄ›nić" + +#~ msgid "Change theme" +#~ msgstr "Å at zmÄ›nić" + +#~ msgid "Site theme" +#~ msgstr "Å at sydÅ‚a" + +#~ msgid "Theme for the site." +#~ msgstr "Å at za sydÅ‚o." + +#~ msgid "Custom theme" +#~ msgstr "Swójski Å¡at" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "MóžeÅ¡ swójski Å¡at StatusNet jako .ZIP-archiw nahrać." + +#~ msgid "Change background image" +#~ msgstr "Pozadkowy wobraz zmÄ›nić" + +#~ msgid "Background" +#~ msgstr "Pozadk" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "MóžeÅ¡ pozadkowy wobraz za sydÅ‚o nahrać. Maksimalna datajowa wulkosć je %1" +#~ "$s." + +#~ msgid "On" +#~ msgstr "Zapinjeny" + +#~ msgid "Off" +#~ msgstr "Wupinjeny" + +#~ msgid "Turn background image on or off." +#~ msgstr "Pozadkowy wobraz zmóžnić abo znjemóžnić." + +#~ msgid "Tile background image" +#~ msgstr "Pozadkowy wobraz kachlicować" + +#~ msgid "Change colors" +#~ msgstr "Barby zmÄ›nić" + +#~ msgid "Content" +#~ msgstr "Wobsah" + +#~ msgid "Sidebar" +#~ msgstr "BóÄnica" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Links" +#~ msgstr "Wotkazy" + +#~ msgid "Advanced" +#~ msgstr "Rozšěrjeny" + +#~ msgid "Custom CSS" +#~ msgstr "Swójski CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Standardne hódnoty wužiwać" + +#~ msgid "Restore default designs." +#~ msgstr "Standardne designy wobnowić." + +#~ msgid "Reset back to default." +#~ msgstr "Na standard wróćo stajić." + +#~ msgid "Save design." +#~ msgstr "Design skÅ‚adować." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "DyrbiÅ¡ pÅ™izjewjeny być, zo by skupinu wobdźěłaÅ‚." + +#~ msgid "Group design" +#~ msgstr "Skupinski design" + +#~ msgid "Unable to update your design settings." +#~ msgstr "Njeje móžno, twoje designowe nastajenja aktualizować." + +#~ msgid "Design preferences saved." +#~ msgstr "Designowe nastajenja skÅ‚adowane." + +#~ msgid "Backgrounds" +#~ msgstr "Pozadki" + +#~ msgid "Server for backgrounds." +#~ msgstr "Serwer za pozadki." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Webšćežka k pozadkam." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Serwer za pozadki na SSL-stronach." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Webšćežka k pozadkam na SSL-stronach." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Zapis, hdźež pozadki su." + +#~ msgid "Profile design" +#~ msgstr "Profilowy design" + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Wjele wjesela!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "SydÅ‚owe nastajenja skÅ‚adować" + +#~ msgid "View profile designs" +#~ msgstr "Profilowe designy sej wobhladać" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Profilowe designy pokazać abo schować." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Pozadk" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Njeje móžno, designowe nastajenje zhaÅ¡eć." + +#~ msgid "Design configuration" +#~ msgstr "Designowa konfiguracija" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Design" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Design skÅ‚adować" + +#~ msgid "Change colours" +#~ msgstr "Barby zmÄ›nić" + +#~ msgid "Use defaults" +#~ msgstr "Standardne hódnoty wužiwać" + +#~ msgid "Upload file" +#~ msgstr "Dataju nahrać" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "MóžeÅ¡ swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa " +#~ "wulkosć je 2 MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Zapinjeny" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Wupinjeny" + +#~ msgid "Design defaults restored." +#~ msgstr "Designowe standardne nastajenja wobnowjene." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Design skupiny %s pÅ™idać abo wobdźěłać" + +#~ msgid "Design your profile" +#~ msgstr "Twój profil wuhotować" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 25f05d76cc..271e0164ad 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -105,7 +105,6 @@ msgid "Save access settings" msgstr "Hozzáférések beállításainak mentése" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -121,7 +120,6 @@ msgstr "Hozzáférések beállításainak mentése" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -193,7 +191,6 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -356,7 +353,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Nem sikerült frissíteni a felhasználót." @@ -371,7 +367,6 @@ msgstr "Nem sikerült menteni a profilt." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -386,24 +381,6 @@ msgstr[1] "" "A szerver nem tudott feldolgozni ennyi POST-adatot (%s bájtot) a jelenlegi " "konfigurációja miatt." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Nem sikerült frissíteni a megjelenítést." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -495,6 +472,8 @@ msgstr "" "Nem küldhetsz közvetlen üzenetet olyan felhasználóknak, akik nem a barátaid." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -726,7 +705,6 @@ msgstr "%s csoportok" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "A csoport szerkesztéséhez adminisztrátornak kell lenned." @@ -835,7 +813,6 @@ msgstr "Adatbázishiba történt az oauth_toke_association behelyezésekor." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -844,7 +821,6 @@ msgstr "Adatbázishiba történt az oauth_toke_association behelyezésekor." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Váratlan űrlapbeküldés." @@ -1204,7 +1180,6 @@ msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1290,6 +1265,7 @@ msgid "Join request canceled." msgstr "Csatlakozási kérelem jóváhagyva." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "A csoportban lévÅ‘ felhasználók listája." @@ -1455,7 +1431,6 @@ msgstr "Nincs ilyen csatolmány." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1975,151 +1950,6 @@ msgstr "Ne töröljük ezt a hírt" msgid "Delete this user." msgstr "Töröljük ezt a felhasználót" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Megjelenés" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "A StatusNet-oldal kinézetének beállítása" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Érvénytelen logó URL." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "Érvénytelen logó URL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "A téma nem áll rendelkezésre: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Logó megváltoztatása" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Oldal logója" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "Oldal logója" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Téma megváltoztatása" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Webhely-téma" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "A webhely témája." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Egyéni téma" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Feltölthetsz egy egyedi StatusNet-témát ZIP archívumon keresztül." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Háttérkép megváltoztatása" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Háttér" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Feltölthetsz egy háttérképet az oldalnak. A fájl maximális mérete %1$s lehet." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Be" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Ki" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Háttérkép be- vagy kikapcsolása." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Háttérkép csempézése" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Színek módosítása" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Tartalom" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Oldalsáv" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Szöveg" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Hivatkozások" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Haladó" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Egyedi CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Alapértelmezett beállítások használata" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Alapértelmezett beállítások használata" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Alapértelmezett beállítások visszaállítása" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "A kinézet mentése." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Ez a hír nincs a kedvenceid között!" @@ -2725,30 +2555,6 @@ msgstr "" msgid "No ID." msgstr "Nincs ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Csoport szerkesztéséhez be kell jelentkezned." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "A csoport megjelenése" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Design beállítások elmentve." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3420,12 +3226,6 @@ msgstr "Nincs tartalom!" msgid "No recipient specified." msgstr "Nincs címzett megadva." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Üzenet elküldve" @@ -3701,7 +3501,7 @@ msgid "Confirm" msgstr "MegerÅ‘sítés" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Ugyanaz, mint a fenti jelszó." @@ -3888,32 +3688,6 @@ msgstr "Avatar-könyvtár" msgid "Directory where avatars are located." msgstr "A nyelvi fájlok elérési útvonala" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Hátterek" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "A webhely témája." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Hátterek webes elérési útja." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "A nyelvi fájlok elérési útvonala" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Csatolmányok" @@ -4691,7 +4465,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 vagy több karakter, és ne felejtsd el!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4701,18 +4474,6 @@ msgstr "Alaphelyzet" msgid "Enter a nickname or email address." msgstr "Adj meg egy nicknevet vagy email címet." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5634,6 +5395,15 @@ msgstr "A webhely nevének legalább egy karakter hosszúnak kell lennie." msgid "You must have a valid contact email address." msgstr "Valódi kapcsolattartó email címet kell megadnod." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Érvénytelen logó URL." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "Érvénytelen logó URL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5708,7 +5478,8 @@ msgid "Default language" msgstr "Alapértelmezett nyelv" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5733,8 +5504,23 @@ msgstr "Duplázások korlátja" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logó" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Oldal logója" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "Oldal logója" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Mentsük el a webhely beállításait" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6478,40 +6264,6 @@ msgstr "" msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profilterv" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Mentsük el a webhely beállításait" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Profiltervek megtekintése" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Profiltervek megjelenítése vagy elrejtése" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Háttér" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6943,6 +6695,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Nem sikerült létrehozni a csoportot." @@ -7211,11 +6975,6 @@ msgstr "a showForm() nincs megvalósítva." msgid "saveSettings() not implemented." msgstr "a saveSettings() nincs megvalósítva." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Nem sikerült törölni a megjelenés beállításait." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7247,17 +7006,6 @@ msgctxt "MENU" msgid "Site" msgstr "Oldal" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "A megjelenés beállításai" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "A felhasználók beállításai" @@ -8115,46 +7863,6 @@ msgstr "Törlés" msgid "Delete this user" msgstr "Töröljük ezt a felhasználót" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Design mentése" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Színek megváltoztatása" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Alapértelmezések használata" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Fájl feltöltése" - -#. TRANS: Instructions for form on profile design page. -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "Be" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Ki" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8375,13 +8083,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Csoport-tevékenységek" @@ -8755,7 +8456,7 @@ msgstr "" "Ne erre az email-re válaszolj; az nem jut el a címzetthez.\n" "\n" "Mély tisztelettel,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9734,10 +9435,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "Email kezelés megváltoztatása" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Profil tervezése" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10165,3 +9862,216 @@ msgstr "Érvénytelen XML, hiányzó XRD gyökér." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Érvénytelen címke: \"%s\"" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Nem sikerült frissíteni a távoli profilt." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Nem sikerült elmenteni a címkét." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Nem sikerült menteni a profilt." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Nem sikerült menteni a profilt." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Érvénytelen email cím." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Nem sikerült menteni a profilt." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." + +#~ msgid "Could not update your design." +#~ msgstr "Nem sikerült frissíteni a megjelenítést." + +#~ msgid "Design" +#~ msgstr "Megjelenés" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "A StatusNet-oldal kinézetének beállítása" + +#~ msgid "Theme not available: %s." +#~ msgstr "A téma nem áll rendelkezésre: %s." + +#~ msgid "Change logo" +#~ msgstr "Logó megváltoztatása" + +#~ msgid "Change theme" +#~ msgstr "Téma megváltoztatása" + +#~ msgid "Site theme" +#~ msgstr "Webhely-téma" + +#~ msgid "Theme for the site." +#~ msgstr "A webhely témája." + +#~ msgid "Custom theme" +#~ msgstr "Egyéni téma" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Feltölthetsz egy egyedi StatusNet-témát ZIP archívumon keresztül." + +#~ msgid "Change background image" +#~ msgstr "Háttérkép megváltoztatása" + +#~ msgid "Background" +#~ msgstr "Háttér" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Feltölthetsz egy háttérképet az oldalnak. A fájl maximális mérete %1$s " +#~ "lehet." + +#~ msgid "On" +#~ msgstr "Be" + +#~ msgid "Off" +#~ msgstr "Ki" + +#~ msgid "Turn background image on or off." +#~ msgstr "Háttérkép be- vagy kikapcsolása." + +#~ msgid "Tile background image" +#~ msgstr "Háttérkép csempézése" + +#~ msgid "Change colors" +#~ msgstr "Színek módosítása" + +#~ msgid "Content" +#~ msgstr "Tartalom" + +#~ msgid "Sidebar" +#~ msgstr "Oldalsáv" + +#~ msgid "Text" +#~ msgstr "Szöveg" + +#~ msgid "Links" +#~ msgstr "Hivatkozások" + +#~ msgid "Advanced" +#~ msgstr "Haladó" + +#~ msgid "Custom CSS" +#~ msgstr "Egyedi CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Alapértelmezett beállítások használata" + +#~ msgid "Restore default designs." +#~ msgstr "Alapértelmezett beállítások használata" + +#~ msgid "Reset back to default." +#~ msgstr "Alapértelmezett beállítások visszaállítása" + +#~ msgid "Save design." +#~ msgstr "A kinézet mentése." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Csoport szerkesztéséhez be kell jelentkezned." + +#~ msgid "Group design" +#~ msgstr "A csoport megjelenése" + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." + +#~ msgid "Design preferences saved." +#~ msgstr "Design beállítások elmentve." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." + +#~ msgid "Backgrounds" +#~ msgstr "Hátterek" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "A webhely témája." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Hátterek webes elérési útja." + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "A nyelvi fájlok elérési útvonala" + +#~ msgid "Profile design" +#~ msgstr "Profilterv" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Mentsük el a webhely beállításait" + +#~ msgid "View profile designs" +#~ msgstr "Profiltervek megtekintése" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Profiltervek megjelenítése vagy elrejtése" + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Háttér" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Nem sikerült törölni a megjelenés beállításait." + +#~ msgid "Design configuration" +#~ msgstr "A megjelenés beállításai" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Design mentése" + +#~ msgid "Change colours" +#~ msgstr "Színek megváltoztatása" + +#~ msgid "Use defaults" +#~ msgstr "Alapértelmezések használata" + +#~ msgid "Upload file" +#~ msgstr "Fájl feltöltése" + +#, fuzzy +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Be" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Ki" + +#~ msgid "Design your profile" +#~ msgstr "Profil tervezése" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index cd208cb919..852f04dfea 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "Salveguardar configurationes de accesso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -197,7 +195,6 @@ msgstr "Pagina non existe." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -365,7 +362,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Non poteva actualisar le usator." @@ -380,7 +376,6 @@ msgstr "Non poteva salveguardar le profilo." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -395,24 +390,6 @@ msgstr[1] "" "Le servitor non ha potite tractar tante datos POST (%s bytes) a causa de su " "configuration actual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Impossibile salveguardar le configurationes del apparentia." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Non poteva actualisar le apparentia." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -504,6 +481,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Non pote inviar messages directe a usatores que non es tu amicos." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Non invia un message a te mesme; il suffice susurrar lo discretemente." @@ -732,7 +711,6 @@ msgstr "gruppos in %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Tu debe esser administrator pro modificar le gruppo." @@ -842,7 +820,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -851,7 +828,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." @@ -1213,7 +1189,6 @@ msgstr "Tu debe aperir un session pro quitar un gruppo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1300,6 +1275,7 @@ msgid "Join request canceled." msgstr "Requesta de adhesion cancellate." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s non es in le cauda de moderation pro tu subscriptiones." @@ -1451,7 +1427,6 @@ msgstr "Annexo non existe." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1957,152 +1932,6 @@ msgstr "Non deler iste usator." msgid "Delete this user." msgstr "Deler iste usator." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Apparentia" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Configuration del apparentia de iste sito StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL de logotypo invalide." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "URL de logotypo SSL invalide." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Thema non disponibile: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Cambiar logotypo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logotypo del sito" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logotypo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Cambiar thema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Thema del sito" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Le thema de apparentia pro le sito." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Apparentia personalisate" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Es possibile incargar un apparentia personalisate de StatusNet in un " -"archivo .ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Cambiar imagine de fundo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fundo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Tu pote incargar un imagine de fundo pro le sito. Le dimension maximal del " -"file es %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Active" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Non active" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Activar o disactivar le imagine de fundo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Tegular le imagine de fundo" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Cambiar colores" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contento" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra lateral" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Ligamines" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avantiate" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalisate" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Usar predefinitiones" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Restaurar apparentias predefinite." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Revenir al predefinitiones." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Salveguardar apparentia." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Iste nota non es favorite!" @@ -2704,31 +2533,6 @@ msgstr "Error del base de datos al blocar le usator del gruppo." msgid "No ID." msgstr "Nulle ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Tu debe aperir un session pro modificar un gruppo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Apparentia del gruppo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalisa le apparentia de tu gruppo con un imagine de fundo e un paletta " -"de colores de tu preferentia." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Impossibile actualisar le configurationes del apparentia." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Preferentias de apparentia salveguardate." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3389,12 +3193,6 @@ msgstr "Nulle contento!" msgid "No recipient specified." msgstr "Nulle destinatario specificate." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non invia un message a te mesme; il suffice susurrar lo discretemente." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Message inviate" @@ -3679,7 +3477,7 @@ msgid "Confirm" msgstr "Confirmar" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Identic al contrasigno hic supra." @@ -3855,30 +3653,6 @@ msgstr "Directorio del avatares" msgid "Directory where avatars are located." msgstr "Cammino a ubi se trova le avatares." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fundos" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Servitor pro fundos de schermo." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Cammino web verso fundos de schermo." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Servitor pro fundos de schermo in paginas SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Cammino web verso fundos de schermo in paginas SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Cammino a ubi se trova le fundos de schermo." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Annexos" @@ -4670,7 +4444,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 o plus characteres, e non oblida lo!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Reinitialisar" @@ -4679,18 +4452,6 @@ msgstr "Reinitialisar" msgid "Enter a nickname or email address." msgstr "Entra un pseudonymo o adresse de e-mail." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Nulle usator existe con iste adresse de e-mail o nomine de usator." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Nulle adresse de e-mail registrate pro iste usator." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Error al salveguardar le confirmation del adresse." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -4732,7 +4493,7 @@ msgstr "File \"%d\" non existe." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." -msgstr "Pardono, solmente le personas invitate pote registrar se." +msgstr "Pardono, solmente personas invitate pote crear un conto." #. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation. msgid "Sorry, invalid invitation code." @@ -5647,6 +5408,14 @@ msgstr "Le longitude del nomine del sito debe esser plus que zero." msgid "You must have a valid contact email address." msgstr "Tu debe haber un valide adresse de e-mail pro contacto." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL de logotypo invalide." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "URL de logotypo SSL invalide." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5717,7 +5486,9 @@ msgid "Default language" msgstr "Lingua predefinite" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Le lingua del sito quando le detection automatic ex le configuration del " "navigator non es disponibile" @@ -5745,8 +5516,22 @@ msgstr "" "Quante tempore (in secundas) le usatores debe attender ante de poter " "publicar le mesme cosa de novo." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotypo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logotypo del sito" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logotypo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Salveguardar configurationes del sito" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6507,40 +6292,6 @@ msgstr "Non pote leger URL de avatar \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Typo de imagine incorrecte pro URL de avatar \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Apparentia del profilo" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalisa le apparentia de tu profilo con un imagine de fundo e un paletta " -"de colores de tu preferentia." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Bon appetito!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Configuration del apparentia" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Vider apparentias de profilo" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Monstrar o celar apparentias de profilo." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "File de fundo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6990,6 +6741,18 @@ msgstr "Nulle signule usator definite pro le modo de singule usator." msgid "Single-user mode code called when not enabled." msgstr "Codice in modo de usator singule appellate sin esser activate." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Nulle usator existe con iste adresse de e-mail o nomine de usator." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Nulle adresse de e-mail registrate pro iste usator." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Error al salveguardar le confirmation del adresse." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Non poteva crear gruppo." @@ -7259,11 +7022,6 @@ msgstr "showForm() non implementate." msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Impossibile deler configuration de apparentia." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7292,17 +7050,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuration del apparentia" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Apparentia" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuration del usator" @@ -8143,44 +7890,6 @@ msgstr "Deler" msgid "Delete this user" msgstr "Deler iste usator" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Cambiar de apparentia" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Cambiar colores" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Usar predefinitiones" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Incargar file" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " -"file es 2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Active" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Non active" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Apparentia predefinite restaurate." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8393,13 +8102,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Adder o modificar logotypo de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Adder o modificar apparentia de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Actiones del gruppo" @@ -8514,9 +8216,8 @@ msgid "Invite more colleagues" msgstr "Invitar plus collegas" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Invitar plus collegas" +msgstr "Invitar collegas" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8541,9 +8242,8 @@ msgid "Send" msgstr "Inviar" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invitationes" +msgstr "Inviar invitationes." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8613,9 +8313,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s seque ora %2$s." +msgstr "%1$s te seque ora in %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -9742,10 +9442,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "Modificar le tractamento de e-mail" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Designar tu profilo" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10165,3 +9861,245 @@ msgstr "XML invalide, radice XRD mancante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Non pote leger URL de avatar \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Error durante le actualisation del profilo remote." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Incapace de trovar servicios pro %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Non poteva crear le etiquetta de profilo." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Non poteva trovar un usator con pseudonymo %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Adresse de e-mail invalide." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Non poteva salveguardar le profilo." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Impossibile salveguardar le configurationes del apparentia." + +#~ msgid "Could not update your design." +#~ msgstr "Non poteva actualisar le apparentia." + +#~ msgid "Design" +#~ msgstr "Apparentia" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Configuration del apparentia de iste sito StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Thema non disponibile: %s." + +#~ msgid "Change logo" +#~ msgstr "Cambiar logotypo" + +#~ msgid "Change theme" +#~ msgstr "Cambiar thema" + +#~ msgid "Site theme" +#~ msgstr "Thema del sito" + +#~ msgid "Theme for the site." +#~ msgstr "Le thema de apparentia pro le sito." + +#~ msgid "Custom theme" +#~ msgstr "Apparentia personalisate" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Es possibile incargar un apparentia personalisate de StatusNet in un " +#~ "archivo .ZIP." + +#~ msgid "Change background image" +#~ msgstr "Cambiar imagine de fundo" + +#~ msgid "Background" +#~ msgstr "Fundo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Tu pote incargar un imagine de fundo pro le sito. Le dimension maximal " +#~ "del file es %1$s." + +#~ msgid "On" +#~ msgstr "Active" + +#~ msgid "Off" +#~ msgstr "Non active" + +#~ msgid "Turn background image on or off." +#~ msgstr "Activar o disactivar le imagine de fundo." + +#~ msgid "Tile background image" +#~ msgstr "Tegular le imagine de fundo" + +#~ msgid "Change colors" +#~ msgstr "Cambiar colores" + +#~ msgid "Content" +#~ msgstr "Contento" + +#~ msgid "Sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Links" +#~ msgstr "Ligamines" + +#~ msgid "Advanced" +#~ msgstr "Avantiate" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalisate" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Usar predefinitiones" + +#~ msgid "Restore default designs." +#~ msgstr "Restaurar apparentias predefinite." + +#~ msgid "Reset back to default." +#~ msgstr "Revenir al predefinitiones." + +#~ msgid "Save design." +#~ msgstr "Salveguardar apparentia." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Tu debe aperir un session pro modificar un gruppo." + +#~ msgid "Group design" +#~ msgstr "Apparentia del gruppo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalisa le apparentia de tu gruppo con un imagine de fundo e un " +#~ "paletta de colores de tu preferentia." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Impossibile actualisar le configurationes del apparentia." + +#~ msgid "Design preferences saved." +#~ msgstr "Preferentias de apparentia salveguardate." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Non invia un message a te mesme; il suffice susurrar lo discretemente." + +#~ msgid "Backgrounds" +#~ msgstr "Fundos" + +#~ msgid "Server for backgrounds." +#~ msgstr "Servitor pro fundos de schermo." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Cammino web verso fundos de schermo." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Servitor pro fundos de schermo in paginas SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Cammino web verso fundos de schermo in paginas SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Cammino a ubi se trova le fundos de schermo." + +#~ msgid "Profile design" +#~ msgstr "Apparentia del profilo" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalisa le apparentia de tu profilo con un imagine de fundo e un " +#~ "paletta de colores de tu preferentia." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Bon appetito!" + +#~ msgid "Design settings" +#~ msgstr "Configuration del apparentia" + +#~ msgid "View profile designs" +#~ msgstr "Vider apparentias de profilo" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Monstrar o celar apparentias de profilo." + +#~ msgid "Background file" +#~ msgstr "File de fundo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Impossibile deler configuration de apparentia." + +#~ msgid "Design configuration" +#~ msgstr "Configuration del apparentia" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Apparentia" + +#~ msgid "Change design" +#~ msgstr "Cambiar de apparentia" + +#~ msgid "Change colours" +#~ msgstr "Cambiar colores" + +#~ msgid "Use defaults" +#~ msgstr "Usar predefinitiones" + +#~ msgid "Upload file" +#~ msgstr "Incargar file" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " +#~ "file es 2MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Active" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Non active" + +#~ msgid "Design defaults restored." +#~ msgstr "Apparentia predefinite restaurate." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Adder o modificar apparentia de %s" + +#~ msgid "Design your profile" +#~ msgstr "Designar tu profilo" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 833ad6681a..0511ad4a16 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:29+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -106,7 +106,6 @@ msgid "Save access settings" msgstr "Salva impostazioni di accesso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -122,7 +121,6 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -197,7 +195,6 @@ msgstr "Pagina inesistente." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -364,7 +361,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Impossibile aggiornare l'utente." @@ -379,7 +375,6 @@ msgstr "Impossibile salvare il profilo." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -394,24 +389,6 @@ msgstr[1] "" "Il server non è in grado di gestire tutti quei dati POST (%s byte) con la " "configurazione attuale." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Impossibile salvare la impostazioni dell'aspetto." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Impossibile aggiornare l'aspetto." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -504,6 +481,8 @@ msgstr "" "Non è possibile inviare messaggi diretti ad utenti che non sono tuoi amici." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -734,7 +713,6 @@ msgstr "Gruppi su %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Devi essere amministratore per modificare il gruppo." @@ -853,7 +831,6 @@ msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -862,7 +839,6 @@ msgstr "Errore nel database nell'inserire l'applicazione utente OAuth." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." @@ -1224,7 +1200,6 @@ msgstr "Devi eseguire l'accesso per lasciare un gruppo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1309,9 +1284,10 @@ msgid "Join request canceled." msgstr "Richiesta di iscrizione rifiutata." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "Un elenco degli utenti in questo gruppo." +msgstr "%s non è nella coda di moderazione per i tuoi abbonamenti." #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. @@ -1468,7 +1444,6 @@ msgstr "Nessun allegato." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1981,157 +1956,6 @@ msgstr "Non eliminare il messaggio" msgid "Delete this user." msgstr "Elimina questo utente" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Aspetto" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Impostazioni dell'aspetto per questo sito StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL del logo non valido." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "URL del logo non valido." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema non disponibile: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Modifica logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo del sito" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "Logo del sito" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Modifica tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema del sito" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema per questo sito." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Tema personalizzato" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Puoi caricare un tema per StatusNet personalizzato come un file ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Modifica l'immagine di sfondo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Sfondo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Puoi caricare un'immagine di sfondo per il sito. La dimensione massima del " -"file è di %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "On" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Off" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Abilita o disabilita l'immagine di sfondo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Affianca l'immagine di sfondo" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "Modifica colori" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Contenuto" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra laterale" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Testo" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Collegamenti" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avanzate" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalizzato" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Usa predefiniti" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Ripristina i valori predefiniti" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Reimposta i valori predefiniti" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Salva aspetto" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Questo messaggio non è un preferito!" @@ -2748,32 +2572,6 @@ msgstr "Errore del database nel bloccare l'utente dal gruppo." msgid "No ID." msgstr "Nessun ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Devi eseguire l'accesso per modificare un gruppo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Aspetto del gruppo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalizza l'aspetto del tuo gruppo con un'immagine di sfondo e dei colori " -"personalizzati." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Impossibile salvare la impostazioni dell'aspetto." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Preferenze dell'aspetto salvate." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3463,12 +3261,6 @@ msgstr "Nessun contenuto!" msgid "No recipient specified." msgstr "Nessun destinatario specificato." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Messaggio inviato" @@ -3754,7 +3546,7 @@ msgid "Confirm" msgstr "Conferma" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3947,32 +3739,6 @@ msgstr "Directory dell'immagine" msgid "Directory where avatars are located." msgstr "Percorso della directory alle localizzazioni" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Sfondi" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "Tema per questo sito." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "Percorso della directory alle localizzazioni" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Allegati" @@ -4779,7 +4545,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 o più caratteri, e non dimenticarla!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Reset" @@ -4788,18 +4553,6 @@ msgstr "Reset" msgid "Enter a nickname or email address." msgstr "Inserisci un soprannome o un indirizzo email." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Nessun utente con quell'email o nome utente." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Nessun indirizzo email registrato per quell'utente." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Errore nel salvare la conferma dell'indirizzo." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5770,6 +5523,15 @@ msgstr "Il nome del sito non deve avere lunghezza parti a zero." msgid "You must have a valid contact email address." msgstr "Devi avere un'email di contatto valida." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL del logo non valido." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "URL del logo non valido." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5847,7 +5609,9 @@ msgid "Default language" msgstr "Lingua predefinita" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Lingua del sito quando il rilevamento automatico del browser non è " "disponibile" @@ -5876,8 +5640,23 @@ msgstr "" "Quanto tempo gli utenti devono attendere (in secondi) prima di inviare " "nuovamente lo stesso messaggio" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo del sito" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "Logo del sito" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Salva impostazioni" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6669,42 +6448,6 @@ msgstr "Impossibile leggere l'URL \"%s\" dell'immagine." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo di immagine errata per l'URL \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Aspetto del profilo" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalizza l'aspetto del tuo profilo con un'immagine di sfondo e dei " -"colori personalizzati." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Gustati il tuo hotdog!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Salva impostazioni" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Visualizza aspetto" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Mostra o nasconde gli aspetti del profilo" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Sfondo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7171,6 +6914,18 @@ msgstr "Nessun utente singolo definito per la modalità single-user." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Nessun utente con quell'email o nome utente." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Nessun indirizzo email registrato per quell'utente." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Errore nel salvare la conferma dell'indirizzo." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Impossibile creare il gruppo." @@ -7449,11 +7204,6 @@ msgstr "showForm() non implementata." msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Impossibile eliminare le impostazioni dell'aspetto." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7485,17 +7235,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sito" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configurazione aspetto" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Aspetto" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configurazione utente" @@ -8370,47 +8109,6 @@ msgstr "Elimina" msgid "Delete this user" msgstr "Elimina questo utente" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Salva aspetto" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Modifica colori" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Usa predefiniti" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Carica file" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Puoi caricare la tua immagine di sfondo. La dimensione massima del file è di " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "On" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Off" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Valori predefiniti ripristinati." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8627,13 +8325,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Aggiungi o modifica il logo di %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Aggiungi o modifica l'aspetto di %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Azioni dei gruppi" @@ -9021,7 +8712,7 @@ msgstr "" "Non rispondere a questa email, nessuno la riceverà!\n" "\n" "Cordiali saluti,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10034,10 +9725,6 @@ msgstr "Email" msgid "Change email handling" msgstr "Modifica la gestione dell'email" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Progetta il tuo profilo" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10466,3 +10153,247 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Impossibile leggere l'URL \"%s\" dell'immagine." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Errore nell'aggiornare il profilo remoto." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Impossibile revocare l'accesso per l'applicazione: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Impossibile salvare il profilo." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Impossibile trovare un utente col soprannome %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Non è un indirizzo email valido." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Impossibile salvare il profilo." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Impossibile salvare la impostazioni dell'aspetto." + +#~ msgid "Could not update your design." +#~ msgstr "Impossibile aggiornare l'aspetto." + +#~ msgid "Design" +#~ msgstr "Aspetto" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Impostazioni dell'aspetto per questo sito StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema non disponibile: %s." + +#~ msgid "Change logo" +#~ msgstr "Modifica logo" + +#~ msgid "Change theme" +#~ msgstr "Modifica tema" + +#~ msgid "Site theme" +#~ msgstr "Tema del sito" + +#~ msgid "Theme for the site." +#~ msgstr "Tema per questo sito." + +#~ msgid "Custom theme" +#~ msgstr "Tema personalizzato" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Puoi caricare un tema per StatusNet personalizzato come un file ZIP." + +#~ msgid "Change background image" +#~ msgstr "Modifica l'immagine di sfondo" + +#~ msgid "Background" +#~ msgstr "Sfondo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Puoi caricare un'immagine di sfondo per il sito. La dimensione massima " +#~ "del file è di %1$s." + +#~ msgid "On" +#~ msgstr "On" + +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgid "Turn background image on or off." +#~ msgstr "Abilita o disabilita l'immagine di sfondo." + +#~ msgid "Tile background image" +#~ msgstr "Affianca l'immagine di sfondo" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "Modifica colori" + +#~ msgid "Content" +#~ msgstr "Contenuto" + +#~ msgid "Sidebar" +#~ msgstr "Barra laterale" + +#~ msgid "Text" +#~ msgstr "Testo" + +#~ msgid "Links" +#~ msgstr "Collegamenti" + +#~ msgid "Advanced" +#~ msgstr "Avanzate" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalizzato" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Usa predefiniti" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Ripristina i valori predefiniti" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Reimposta i valori predefiniti" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Salva aspetto" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Devi eseguire l'accesso per modificare un gruppo." + +#~ msgid "Group design" +#~ msgstr "Aspetto del gruppo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalizza l'aspetto del tuo gruppo con un'immagine di sfondo e dei " +#~ "colori personalizzati." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Impossibile salvare la impostazioni dell'aspetto." + +#~ msgid "Design preferences saved." +#~ msgstr "Preferenze dell'aspetto salvate." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." + +#~ msgid "Backgrounds" +#~ msgstr "Sfondi" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "Tema per questo sito." + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Percorso della directory alle localizzazioni" + +#~ msgid "Profile design" +#~ msgstr "Aspetto del profilo" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalizza l'aspetto del tuo profilo con un'immagine di sfondo e dei " +#~ "colori personalizzati." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Gustati il tuo hotdog!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Salva impostazioni" + +#~ msgid "View profile designs" +#~ msgstr "Visualizza aspetto" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Mostra o nasconde gli aspetti del profilo" + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Sfondo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Impossibile eliminare le impostazioni dell'aspetto." + +#~ msgid "Design configuration" +#~ msgstr "Configurazione aspetto" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Aspetto" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Salva aspetto" + +#~ msgid "Change colours" +#~ msgstr "Modifica colori" + +#~ msgid "Use defaults" +#~ msgstr "Usa predefiniti" + +#~ msgid "Upload file" +#~ msgstr "Carica file" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Puoi caricare la tua immagine di sfondo. La dimensione massima del file è " +#~ "di 2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "On" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Off" + +#~ msgid "Design defaults restored." +#~ msgstr "Valori predefiniti ripristinati." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Aggiungi o modifica l'aspetto di %s" + +#~ msgid "Design your profile" +#~ msgstr "Progetta il tuo profilo" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 6941db6173..6d621b126f 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -106,7 +106,6 @@ msgid "Save access settings" msgstr "アクセス設定ã®ä¿å­˜" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -122,7 +121,6 @@ msgstr "アクセス設定ã®ä¿å­˜" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -198,7 +196,6 @@ msgstr "ãã®ã‚ˆã†ãªãƒšãƒ¼ã‚¸ã¯ã‚りã¾ã›ã‚“。" #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -366,7 +363,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "ユーザを更新ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" @@ -381,7 +377,6 @@ msgstr "プロフィールをä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -393,24 +388,6 @@ msgstr[0] "" "サーãƒãƒ¼ã®ç¾åœ¨ã®æ§‹æˆãŒç†ç”±ã§ã€å¤§é‡ã® POST データ (%sãƒã‚¤ãƒˆ) を処ç†ã™ã‚‹ã“ã¨ãŒ" "ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "デザインを更新ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -500,6 +477,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "å‹äººã§ãªã„ユーザã«ãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。" #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -732,7 +711,6 @@ msgstr "%s 上ã®ã‚°ãƒ«ãƒ¼ãƒ—" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "グループを編集ã™ã‚‹ã«ã¯ç®¡ç†è€…ã§ã‚ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" @@ -856,7 +834,6 @@ msgstr "OAuth アプリケーションユーザã®è¿½åŠ æ™‚ï¼¤ï¼¢ã‚¨ãƒ©ãƒ¼ã€‚" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -865,7 +842,6 @@ msgstr "OAuth アプリケーションユーザã®è¿½åŠ æ™‚ï¼¤ï¼¢ã‚¨ãƒ©ãƒ¼ã€‚" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "予期ã›ã¬ãƒ•ォームé€ä¿¡ã§ã™ã€‚" @@ -1222,7 +1198,6 @@ msgstr "グループã‹ã‚‰é›¢ã‚Œã‚‹ã«ã¯ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã„ãªã‘れã°ãªã‚Š #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1309,6 +1284,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã®ãƒ¦ãƒ¼ã‚¶ã®ãƒªã‚¹ãƒˆã€‚" @@ -1474,7 +1450,6 @@ msgstr "ãã®ã‚ˆã†ãªæ·»ä»˜ã¯ã‚りã¾ã›ã‚“。" #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -2002,158 +1977,6 @@ msgstr "ã“ã®ã¤ã¶ã‚„ãを削除ã§ãã¾ã›ã‚“。" msgid "Delete this user." msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ã‚’削除" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "デザイン" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "䏿­£ãªãƒ­ã‚´ URL" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "䏿­£ãªãƒ­ã‚´ URL" - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "IM ãŒåˆ©ç”¨ä¸å¯ã€‚" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "ロゴã®å¤‰æ›´" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "サイトロゴ" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "サイトロゴ" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "テーマ変更" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "サイトテーマ" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "サイトã®ãƒ†ãƒ¼ãƒž" - -#. TRANS: Field label for uploading a cutom theme. -#, fuzzy -msgid "Custom theme" -msgstr "サイトテーマ" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®å¤‰æ›´" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"ã“ã®ã‚µã‚¤ãƒˆç”¨ã«ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã‚’アップロードã§ãã¾ã™ã€‚最大ファイルサ" -"イズ㯠%1$s。" - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "オン" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "オフ" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ã‚ªãƒ³ã¾ãŸã¯ã‚ªãƒ•。" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "タイルãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "色ã®å¤‰æ›´" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "内容" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "サイドãƒãƒ¼" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "テキスト" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "リンク" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "デフォルトを使用" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ‡ã‚¶ã‚¤ãƒ³ã«æˆ»ã™ã€‚" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "デフォルトã¸ãƒªã‚»ãƒƒãƒˆã™ã‚‹" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "デザインã®ä¿å­˜" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "ã“ã®ã¤ã¶ã‚„ãã¯ãŠæ°—ã«å…¥ã‚Šã§ã¯ã‚りã¾ã›ã‚“!" @@ -2775,32 +2598,6 @@ msgstr "グループã‹ã‚‰ã®ãƒ–ロックユーザã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚¨ãƒ©ãƒ¼ msgid "No ID." msgstr "ID ãŒã‚りã¾ã›ã‚“。" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "グループを編集ã™ã‚‹ã«ã¯ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã„ãªã‘れã°ãªã‚Šã¾ã›ã‚“。" - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "グループデザイン" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"ã‚ãªãŸãŒé¸ã‚“ã ãƒ‘レットã®è‰²ã¨ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã§ã‚ãªãŸã®ã‚°ãƒ«ãƒ¼ãƒ—をカス" -"タマイズã—ã¦ãã ã•ã„。" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "デザイン設定ãŒä¿å­˜ã•れã¾ã—ãŸã€‚" - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3484,13 +3281,6 @@ msgstr "コンテンツãŒã‚りã¾ã›ã‚“ï¼" msgid "No recipient specified." msgstr "å—å–äººãŒæ›¸ã‹ã‚Œã¦ã„ã¾ã›ã‚“。" -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"自分自身ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“; ã‹ã‚りã«ç‹¬ã‚Šè¨€ã‚’言ã„ã¾ã—ょã†ã€‚" - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "メッセージをé€ã‚Šã¾ã—ãŸ" @@ -3777,7 +3567,7 @@ msgid "Confirm" msgstr "パスワード確èª" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3970,32 +3760,6 @@ msgstr "ã‚¢ãƒã‚¿ãƒ¼ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª" msgid "Directory where avatars are located." msgstr "ロケールã¸ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ‘ス" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "サイトã®ãƒ†ãƒ¼ãƒž" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "ロケールã¸ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ‘ス" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "添付" @@ -4814,7 +4578,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6文字以上。忘れãªã„ã§ãã ã•ã„ï¼" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4824,18 +4587,6 @@ msgstr "リセット" msgid "Enter a nickname or email address." msgstr "ニックãƒãƒ¼ãƒ ã‹ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’入力ã—ã¦ãã ã•ã„。" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "ãã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‹ãƒ¦ãƒ¼ã‚¶åã‚’ã‚‚ã£ã¦ã„るユーザãŒã‚りã¾ã›ã‚“。" - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ã«ã¯ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã®ç™»éŒ²ãŒã‚りã¾ã›ã‚“。" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "アドレス確èªä¿å­˜ã‚¨ãƒ©ãƒ¼" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5814,6 +5565,15 @@ msgstr "サイトåã¯é•·ã•0ã§ã¯ã„ã‘ã¾ã›ã‚“。" msgid "You must have a valid contact email address." msgstr "有効ãªé€£çµ¡ç”¨ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒãªã‘れã°ãªã‚Šã¾ã›ã‚“。" +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "䏿­£ãªãƒ­ã‚´ URL" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "䏿­£ãªãƒ­ã‚´ URL" + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5896,7 +5656,8 @@ msgid "Default language" msgstr "ã”希望ã®è¨€èªž" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5923,8 +5684,23 @@ msgstr "" "ã©ã‚Œãらã„é•·ã„é–“(ç§’)ã€ãƒ¦ãƒ¼ã‚¶ã¯ã€å†ã³åŒã˜ã‚‚ã®ã‚’投稿ã™ã‚‹ã®ã‚’å¾…ãŸãªã‘れã°ãªã‚‰ãª" "ã„ã‹ã€‚" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "ロゴ" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "サイトロゴ" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "サイトロゴ" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "サイト設定ã®ä¿å­˜" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6728,43 +6504,6 @@ msgstr "ã‚¢ãƒã‚¿ãƒ¼URL を読ã¿å–れã¾ã›ã‚“ '%s'" msgid "Wrong image type for avatar URL \"%s\"." msgstr "ã‚¢ãƒã‚¿ãƒ¼ URL '%s' ã¯ä¸æ­£ãªç”»åƒå½¢å¼ã€‚" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "プロファイルデザイン" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"ã‚ãªãŸã®ãƒ—ロフィールãŒãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã¨ã‚ãªãŸã®é¸æŠžã®è‰²ã®ãƒ‘レットã§è¦‹ã‚‹" -"方法をカスタマイズã—ã¦ãã ã•ã„。" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -#, fuzzy -msgid "Enjoy your hotdog!" -msgstr "ã‚ãªãŸã®hotdogを楽ã—ã‚“ã§ãã ã•ã„!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "サイト設定ã®ä¿å­˜" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "プロファイルデザインを表示" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "プロファイルデザインã®è¡¨ç¤ºã¾ãŸã¯éžè¡¨ç¤º" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7213,6 +6952,18 @@ msgstr "single-user モードã®ãŸã‚ã®ã‚·ãƒ³ã‚°ãƒ«ãƒ¦ãƒ¼ã‚¶ãŒå®šç¾©ã•れ msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "ãã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‹ãƒ¦ãƒ¼ã‚¶åã‚’ã‚‚ã£ã¦ã„るユーザãŒã‚りã¾ã›ã‚“。" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ã«ã¯ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã®ç™»éŒ²ãŒã‚りã¾ã›ã‚“。" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "アドレス確èªä¿å­˜ã‚¨ãƒ©ãƒ¼" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "グループを作æˆã§ãã¾ã›ã‚“。" @@ -7491,11 +7242,6 @@ msgstr "showForm() ã¯å®Ÿè£…ã•れã¦ã„ã¾ã›ã‚“。" msgid "saveSettings() not implemented." msgstr "saveSettings() ã¯å®Ÿè£…ã•れã¦ã„ã¾ã›ã‚“。" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "デザイン設定を削除ã§ãã¾ã›ã‚“。" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7528,18 +7274,6 @@ msgctxt "MENU" msgid "Site" msgstr "サイト" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "デザイン設定" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Design" -msgstr "デザイン" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ユーザ設定" @@ -8413,47 +8147,6 @@ msgstr "削除" msgid "Delete this user" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ã‚’削除" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "デザインã®ä¿å­˜" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "色ã®å¤‰æ›´" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "デフォルトを使用" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "ファイルアップロード" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"自分ã®ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã‚’アップロードã§ãã¾ã™ã€‚最大ファイルサイズ㯠2MB ã§" -"ã™ã€‚" - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "オン" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "オフ" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "デフォルトã®ãƒ‡ã‚¶ã‚¤ãƒ³ã‚’回復。" - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8667,13 +8360,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "グループアクション" @@ -9056,7 +8742,7 @@ msgstr "" "ã“ã®ãƒ¡ãƒ¼ãƒ«ã«ç­”ãˆãªã„ã§ãã ã•ã„。 ãれã¯ãれらを始ã‚ãªã„ã§ã—ょã†ã€‚\n" "\n" "敬具\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10064,10 +9750,6 @@ msgstr "メール" msgid "Change email handling" msgstr "ãƒ¡ãƒ¼ãƒ«ã®æ‰±ã„を変更" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "ã‚ãªãŸã®ãƒ—ロファイルをデザイン" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10491,3 +10173,234 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "ã‚¢ãƒã‚¿ãƒ¼URL を読ã¿å–れã¾ã›ã‚“ '%s'" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "リモートプロファイル更新エラー" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "アプリケーションã®ãŸã‚ã®å–消ã—アクセスãŒã§ãã¾ã›ã‚“: " + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "プロフィールをä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "ユーザを更新ã§ãã¾ã›ã‚“" + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã§ã¯ã‚りã¾ã›ã‚“。" + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "プロフィールをä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" + +#~ msgid "Unable to save your design settings." +#~ msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" + +#~ msgid "Could not update your design." +#~ msgstr "デザインを更新ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" + +#~ msgid "Design" +#~ msgstr "デザイン" + +#~ msgid "Theme not available: %s." +#~ msgstr "IM ãŒåˆ©ç”¨ä¸å¯ã€‚" + +#~ msgid "Change logo" +#~ msgstr "ロゴã®å¤‰æ›´" + +#~ msgid "Change theme" +#~ msgstr "テーマ変更" + +#~ msgid "Site theme" +#~ msgstr "サイトテーマ" + +#~ msgid "Theme for the site." +#~ msgstr "サイトã®ãƒ†ãƒ¼ãƒž" + +#, fuzzy +#~ msgid "Custom theme" +#~ msgstr "サイトテーマ" + +#~ msgid "Change background image" +#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®å¤‰æ›´" + +#~ msgid "Background" +#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "ã“ã®ã‚µã‚¤ãƒˆç”¨ã«ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã‚’アップロードã§ãã¾ã™ã€‚最大ファイル" +#~ "サイズ㯠%1$s。" + +#~ msgid "On" +#~ msgstr "オン" + +#~ msgid "Off" +#~ msgstr "オフ" + +#~ msgid "Turn background image on or off." +#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ã‚ªãƒ³ã¾ãŸã¯ã‚ªãƒ•。" + +#~ msgid "Tile background image" +#~ msgstr "タイルãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "色ã®å¤‰æ›´" + +#~ msgid "Content" +#~ msgstr "内容" + +#~ msgid "Sidebar" +#~ msgstr "サイドãƒãƒ¼" + +#~ msgid "Text" +#~ msgstr "テキスト" + +#~ msgid "Links" +#~ msgstr "リンク" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "デフォルトを使用" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ‡ã‚¶ã‚¤ãƒ³ã«æˆ»ã™ã€‚" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "デフォルトã¸ãƒªã‚»ãƒƒãƒˆã™ã‚‹" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "デザインã®ä¿å­˜" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "グループを編集ã™ã‚‹ã«ã¯ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã„ãªã‘れã°ãªã‚Šã¾ã›ã‚“。" + +#~ msgid "Group design" +#~ msgstr "グループデザイン" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "ã‚ãªãŸãŒé¸ã‚“ã ãƒ‘レットã®è‰²ã¨ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã§ã‚ãªãŸã®ã‚°ãƒ«ãƒ¼ãƒ—ã‚’ã‚«" +#~ "スタマイズã—ã¦ãã ã•ã„。" + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" + +#~ msgid "Design preferences saved." +#~ msgstr "デザイン設定ãŒä¿å­˜ã•れã¾ã—ãŸã€‚" + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "自分自身ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“; ã‹ã‚りã«ç‹¬ã‚Šè¨€ã‚’言ã„ã¾ã—ょã†ã€‚" + +#~ msgid "Backgrounds" +#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "サイトã®ãƒ†ãƒ¼ãƒž" + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "ロケールã¸ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ‘ス" + +#~ msgid "Profile design" +#~ msgstr "プロファイルデザイン" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "ã‚ãªãŸã®ãƒ—ロフィールãŒãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã¨ã‚ãªãŸã®é¸æŠžã®è‰²ã®ãƒ‘レットã§è¦‹" +#~ "る方法をカスタマイズã—ã¦ãã ã•ã„。" + +#, fuzzy +#~ msgid "Enjoy your hotdog!" +#~ msgstr "ã‚ãªãŸã®hotdogを楽ã—ã‚“ã§ãã ã•ã„!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "サイト設定ã®ä¿å­˜" + +#~ msgid "View profile designs" +#~ msgstr "プロファイルデザインを表示" + +#~ msgid "Show or hide profile designs." +#~ msgstr "プロファイルデザインã®è¡¨ç¤ºã¾ãŸã¯éžè¡¨ç¤º" + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" + +#~ msgid "Unable to delete design setting." +#~ msgstr "デザイン設定を削除ã§ãã¾ã›ã‚“。" + +#~ msgid "Design configuration" +#~ msgstr "デザイン設定" + +#, fuzzy +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "デザイン" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "デザインã®ä¿å­˜" + +#~ msgid "Change colours" +#~ msgstr "色ã®å¤‰æ›´" + +#~ msgid "Use defaults" +#~ msgstr "デフォルトを使用" + +#~ msgid "Upload file" +#~ msgstr "ファイルアップロード" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "自分ã®ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã‚’アップロードã§ãã¾ã™ã€‚最大ファイルサイズ㯠" +#~ "2MB ã§ã™ã€‚" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "オン" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "オフ" + +#~ msgid "Design defaults restored." +#~ msgstr "デフォルトã®ãƒ‡ã‚¶ã‚¤ãƒ³ã‚’回復。" + +#~ msgid "Design your profile" +#~ msgstr "ã‚ãªãŸã®ãƒ—ロファイルをデザイン" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 07bc924011..6e84d3a7c3 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -100,7 +100,6 @@ msgid "Save access settings" msgstr "შეინáƒáƒ®áƒ” შესვლის პáƒáƒ áƒáƒ›áƒ”ტრები" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -116,7 +115,6 @@ msgstr "შეინáƒáƒ®áƒ” შესვლის პáƒáƒ áƒáƒ›áƒ”ტრე #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -192,7 +190,6 @@ msgstr "áƒáƒ¡áƒ”თი გვერდი áƒáƒ  áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -359,7 +356,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერ მáƒáƒ®áƒ”რხდáƒ." @@ -374,7 +370,6 @@ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რ #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, fuzzy, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -386,24 +381,6 @@ msgstr[0] "" "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ სერვერმრვერ გáƒáƒ£áƒ«áƒšáƒ áƒáƒ›áƒ“ენ POST მáƒáƒœáƒáƒªáƒ”მებს (%s ბáƒáƒ˜áƒ¢áƒ˜) მიმდინáƒáƒ áƒ” " "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ გáƒáƒ›áƒ." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერ მáƒáƒ®áƒ”რხდáƒ." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -493,6 +470,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "ვერ გáƒáƒ£áƒ’ზáƒáƒ•ნი პირდáƒáƒžáƒ˜áƒ  შეტყáƒáƒ‘ინებáƒáƒ¡ იმáƒáƒ¡, ვისთáƒáƒœáƒáƒª áƒáƒ  მეგáƒáƒ‘რáƒáƒ‘." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. #, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." @@ -723,7 +702,6 @@ msgstr "ჯგუფები %s-ზე" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "ჯგუფის რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბისáƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ áƒáƒ“მინის უფლებები." @@ -841,7 +819,6 @@ msgstr "ბáƒáƒ–áƒáƒ› დáƒáƒ£áƒ¨áƒ•რშეცდáƒáƒ›áƒ OAuth áƒáƒžáƒš #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -850,7 +827,6 @@ msgstr "ბáƒáƒ–áƒáƒ› დáƒáƒ£áƒ¨áƒ•რშეცდáƒáƒ›áƒ OAuth áƒáƒžáƒš #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "" @@ -1206,7 +1182,6 @@ msgstr "გჯუფის დáƒáƒ¢áƒáƒ•ებისáƒáƒ—ვის სáƒáƒ­ #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1292,6 +1267,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "áƒáƒ› ჯგუფის წევრების სიáƒ." @@ -1456,7 +1432,6 @@ msgstr "áƒáƒ¡áƒ”თი მიმáƒáƒ’რებული დáƒáƒ™áƒ£áƒ›áƒ”ნ #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1977,158 +1952,6 @@ msgstr "áƒáƒ  წáƒáƒ¨áƒáƒšáƒ ეს შეტყáƒáƒ‘ინებáƒ" msgid "Delete this user." msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის წáƒáƒ¨áƒšáƒ" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის წáƒáƒ¨áƒšáƒ" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "ლáƒáƒ’áƒáƒ¡ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ URL-ი" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#, fuzzy -msgid "Invalid SSL logo URL." -msgstr "ლáƒáƒ’áƒáƒ¡ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ URL-ი" - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "იერსáƒáƒ®áƒ” áƒáƒ  áƒáƒ áƒ˜áƒ¡ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜ %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "შეცვáƒáƒšáƒ” ლáƒáƒ’áƒ" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ლáƒáƒ’áƒ" - -#. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy -msgid "SSL logo" -msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ლáƒáƒ’áƒ" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "შეცვáƒáƒšáƒ” იერსáƒáƒ®áƒ”" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ იერსáƒáƒ®áƒ”" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ იერსáƒáƒ®áƒ”" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ StatusNet–იერსáƒáƒ®áƒ” .ZIP áƒáƒ áƒ¥áƒ˜áƒ•ის სáƒáƒ®áƒ˜áƒ—." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "შეცვáƒáƒšáƒ” ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "ფáƒáƒœáƒ˜" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•უირთáƒáƒ— ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები " -"ზáƒáƒ›áƒáƒ %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "ჩáƒáƒ áƒ—ვáƒ" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "ჩáƒáƒ áƒ—ე áƒáƒœ გáƒáƒ›áƒáƒ áƒ—ე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ის ფუნქციáƒ." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "გáƒáƒáƒ›áƒ áƒáƒ•ლე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" - -#. TRANS: Fieldset legend for theme colors. -#, fuzzy -msgid "Change colors" -msgstr "შეცვáƒáƒšáƒ” ფერები" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "შიგთáƒáƒ•სი" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "გვერდითი პáƒáƒœáƒ”ლი" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ტექსტი" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "ბმულები" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "მეტი პáƒáƒ áƒáƒ›áƒ”ტრები" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ CSS" - -#. TRANS: Button text for resetting theme settings. -#, fuzzy -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "დáƒáƒáƒ‘რუნე პირვáƒáƒœáƒ“ელი დიზáƒáƒ˜áƒœáƒ˜" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "პირვáƒáƒœáƒ“ელის პáƒáƒ áƒáƒ›áƒ”ტრების დáƒáƒ‘რუნებáƒ" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "ეს შეტყáƒáƒ‘ინებრáƒáƒ  áƒáƒ áƒ˜áƒ¡ რჩეული!" @@ -2741,32 +2564,6 @@ msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის ჯგუფიდáƒáƒœ გáƒáƒ  msgid "No ID." msgstr "ID უცნáƒáƒ‘იáƒ." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "ჯგუფის რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბისáƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ áƒáƒ•ტáƒáƒ áƒ˜áƒ–áƒáƒªáƒ˜áƒ." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "ჯგუფის დიზáƒáƒ˜áƒœáƒ˜" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი ჯგუფი ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრფერთრ" -"პáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები შენáƒáƒ®áƒ£áƒšáƒ˜áƒ." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3451,12 +3248,6 @@ msgstr "შიგთáƒáƒ•სი áƒáƒ  áƒáƒ áƒ˜áƒ¡!" msgid "No recipient specified." msgstr "მიმღები მითითებული áƒáƒ  áƒáƒ áƒ˜áƒ¡." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "ნუ გáƒáƒ£áƒ’ზáƒáƒ•ნი შეტყáƒáƒ‘ინებáƒáƒ¡ სáƒáƒ™áƒ£áƒ—áƒáƒ  თáƒáƒ•ს; უბრáƒáƒšáƒáƒ“ ჩუმáƒáƒ“ ჩáƒáƒ£áƒ©áƒ£áƒ áƒ©áƒ£áƒšáƒ”." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "შეტყáƒáƒ‘ინებრგáƒáƒ’ზáƒáƒ•ნილიáƒ" @@ -3739,7 +3530,7 @@ msgid "Confirm" msgstr "ვáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ áƒ”ბ" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3929,31 +3720,6 @@ msgstr "áƒáƒ•áƒáƒ¢áƒáƒ áƒ”ბის დირექტáƒáƒ áƒ˜áƒ" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "ფáƒáƒœáƒ”ბი" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "მიმáƒáƒ’რებები" @@ -4752,7 +4518,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 áƒáƒœ მეტი სიმბáƒáƒšáƒ, დრáƒáƒ  დáƒáƒ’áƒáƒ•იწყდეთ!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4762,18 +4527,6 @@ msgstr "გáƒáƒ“áƒáƒ§áƒ”ნებáƒ" msgid "Enter a nickname or email address." msgstr "შეიყვáƒáƒœáƒ”თ მეტსáƒáƒ®áƒ”ლი áƒáƒœ ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "áƒáƒ¡áƒ”თი ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ით áƒáƒœ სáƒáƒ®áƒ”ლით áƒáƒ  áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლისთვის ვერ მáƒáƒ˜áƒ«áƒ”ბნრრეგისტრირებული ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "მისáƒáƒ›áƒáƒ áƒ—ის დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ áƒ”ბის სენáƒáƒ®áƒ•ისáƒáƒ¡ მáƒáƒ®áƒ“რშეცდáƒáƒ›áƒ." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5736,6 +5489,15 @@ msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ სáƒáƒ®áƒ”ლი áƒáƒ  უნდრიყáƒáƒ¡ msgid "You must have a valid contact email address." msgstr "თქვენ უნდრგქáƒáƒœáƒ“ეთ ნáƒáƒ›áƒ“ვილი სáƒáƒ™áƒáƒœáƒ¢áƒáƒ¥áƒ¢áƒ ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "ლáƒáƒ’áƒáƒ¡ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ URL-ი" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#, fuzzy +msgid "Invalid SSL logo URL." +msgstr "ლáƒáƒ’áƒáƒ¡ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ URL-ი" + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5813,7 +5575,9 @@ msgid "Default language" msgstr "პირვáƒáƒœáƒ“ელი ენáƒ" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ენáƒ, რáƒáƒ“ესáƒáƒª ბრáƒáƒ£áƒ–ერის áƒáƒ•ტáƒáƒ“áƒáƒ›áƒ“გენი áƒáƒ  áƒáƒ áƒ˜áƒ¡ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜" #. TRANS: Fieldset legend on site settings panel. @@ -5839,8 +5603,23 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "რáƒáƒ›áƒ“ენი ხáƒáƒœáƒ˜ (წáƒáƒ›áƒ”ბში) უნდრელáƒáƒ“áƒáƒ¡ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელი რáƒáƒ› დáƒáƒžáƒáƒ¡áƒ¢áƒáƒ¡ ერთი დრიგივე." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "გáƒáƒ¡áƒ•ლáƒ" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ლáƒáƒ’áƒ" + +#. TRANS: Field label for SSL StatusNet site logo. +#, fuzzy +msgid "SSL logo" +msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ლáƒáƒ’áƒ" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•áƒ" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6641,42 +6420,6 @@ msgstr "ვერ ვკითხულáƒáƒ‘ áƒáƒ•áƒáƒ¢áƒáƒ áƒ˜áƒ¡ URL ‘%s msgid "Wrong image type for avatar URL \"%s\"." msgstr "áƒáƒ•áƒáƒ¢áƒáƒ áƒ˜áƒ¡ სურáƒáƒ—ის ფáƒáƒ áƒ›áƒáƒ¢áƒ˜ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜áƒ URL ‘%s’." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ˜" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი პრáƒáƒ¤áƒ˜áƒšáƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრ" -"ფერთრპáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "ისიáƒáƒ›áƒáƒ•ნეთ ჰáƒáƒ— დáƒáƒ’ით!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•áƒ" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბის ნáƒáƒ®áƒ•áƒ" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "áƒáƒ©áƒ•ენე áƒáƒœ დáƒáƒ›áƒáƒšáƒ” პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბი." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "ფáƒáƒœáƒ˜" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7137,6 +6880,18 @@ msgstr "ერთი მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელი áƒáƒ  გáƒáƒœáƒ¡áƒ msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "áƒáƒ¡áƒ”თი ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ით áƒáƒœ სáƒáƒ®áƒ”ლით áƒáƒ  áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლისთვის ვერ მáƒáƒ˜áƒ«áƒ”ბნრრეგისტრირებული ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "მისáƒáƒ›áƒáƒ áƒ—ის დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ áƒ”ბის სენáƒáƒ®áƒ•ისáƒáƒ¡ მáƒáƒ®áƒ“რშეცდáƒáƒ›áƒ." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "ჯგუფის შექმნრვერ მáƒáƒ®áƒ”რხდáƒ." @@ -7411,11 +7166,6 @@ msgstr "showForm() áƒáƒ  áƒáƒ áƒ˜áƒ¡ გáƒáƒœáƒ®áƒáƒ áƒªáƒ˜áƒ”ლებუ msgid "saveSettings() not implemented." msgstr "saveSettings() áƒáƒ  áƒáƒ áƒ˜áƒ¡ გáƒáƒœáƒ®áƒáƒ áƒªáƒ˜áƒ”ლებული." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების წáƒáƒ¨áƒšáƒ ვერ ხერხდებáƒ." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7447,17 +7197,6 @@ msgctxt "MENU" msgid "Site" msgstr "სáƒáƒ˜áƒ¢áƒ˜" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "დიზáƒáƒ˜áƒœáƒ˜" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" @@ -8323,47 +8062,6 @@ msgstr "წáƒáƒ¨áƒšáƒ" msgid "Delete this user" msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის წáƒáƒ¨áƒšáƒ" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "შეცვáƒáƒšáƒ” ფერები" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "ფáƒáƒ˜áƒšáƒ˜áƒ¡ áƒáƒ¢áƒ•ირთვáƒ" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— პერსáƒáƒœáƒáƒšáƒ£áƒ áƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები ზáƒáƒ›áƒáƒ " -"2მბ." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "ჩáƒáƒ áƒ—ვáƒ" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პირველáƒáƒ“ი პáƒáƒ áƒáƒ›áƒ”ტრები დáƒáƒ‘რუნებულიáƒ." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8579,13 +8277,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "" @@ -8969,7 +8660,7 @@ msgstr "" "áƒáƒ  უპáƒáƒ¡áƒ£áƒ®áƒáƒ— áƒáƒ› წერილს; áƒáƒ“რესáƒáƒ¢áƒ¡ áƒáƒ  მიუვáƒ.\n" "\n" "პáƒáƒ¢áƒ˜áƒ•ისცემით,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9975,10 +9666,6 @@ msgstr "ელ. ფáƒáƒ¡áƒ¢áƒ" msgid "Change email handling" msgstr "ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მáƒáƒ áƒ—ვáƒ" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10406,3 +10093,236 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "ვერ ვკითხულáƒáƒ‘ áƒáƒ•áƒáƒ¢áƒáƒ áƒ˜áƒ¡ URL ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "შეცდáƒáƒ›áƒ დáƒáƒ¨áƒáƒ áƒ”ბული პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ გáƒáƒœáƒáƒ®áƒšáƒ”ბისáƒáƒ¡." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "%s áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ მიერ ზვდáƒáƒ›áƒ˜áƒ¡ გáƒáƒ£áƒ¥áƒ›áƒ”ბრვერ ხერხდებáƒ." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელი მეტსáƒáƒ®áƒ”ლით %s ვერ მáƒáƒ˜áƒ«áƒ”ბნáƒ." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." + +#~ msgid "Unable to save your design settings." +#~ msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." + +#~ msgid "Could not update your design." +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერ მáƒáƒ®áƒ”რხდáƒ." + +#~ msgid "Design" +#~ msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის წáƒáƒ¨áƒšáƒ" + +#~ msgid "Theme not available: %s." +#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ  áƒáƒ áƒ˜áƒ¡ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜ %s." + +#~ msgid "Change logo" +#~ msgstr "შეცვáƒáƒšáƒ” ლáƒáƒ’áƒ" + +#~ msgid "Change theme" +#~ msgstr "შეცვáƒáƒšáƒ” იერსáƒáƒ®áƒ”" + +#~ msgid "Site theme" +#~ msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ იერსáƒáƒ®áƒ”" + +#~ msgid "Theme for the site." +#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" + +#~ msgid "Custom theme" +#~ msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ იერსáƒáƒ®áƒ”" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ StatusNet–იერსáƒáƒ®áƒ” .ZIP áƒáƒ áƒ¥áƒ˜áƒ•ის სáƒáƒ®áƒ˜áƒ—." + +#~ msgid "Change background image" +#~ msgstr "შეცვáƒáƒšáƒ” ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" + +#~ msgid "Background" +#~ msgstr "ფáƒáƒœáƒ˜" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•უირთáƒáƒ— ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები " +#~ "ზáƒáƒ›áƒáƒ %1$s." + +#~ msgid "On" +#~ msgstr "ჩáƒáƒ áƒ—ვáƒ" + +#~ msgid "Off" +#~ msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" + +#~ msgid "Turn background image on or off." +#~ msgstr "ჩáƒáƒ áƒ—ე áƒáƒœ გáƒáƒ›áƒáƒ áƒ—ე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ის ფუნქციáƒ." + +#~ msgid "Tile background image" +#~ msgstr "გáƒáƒáƒ›áƒ áƒáƒ•ლე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" + +#, fuzzy +#~ msgid "Change colors" +#~ msgstr "შეცვáƒáƒšáƒ” ფერები" + +#~ msgid "Content" +#~ msgstr "შიგთáƒáƒ•სი" + +#~ msgid "Sidebar" +#~ msgstr "გვერდითი პáƒáƒœáƒ”ლი" + +#~ msgid "Text" +#~ msgstr "ტექსტი" + +#~ msgid "Links" +#~ msgstr "ბმულები" + +#~ msgid "Advanced" +#~ msgstr "მეტი პáƒáƒ áƒáƒ›áƒ”ტრები" + +#~ msgid "Custom CSS" +#~ msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ CSS" + +#, fuzzy +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "დáƒáƒáƒ‘რუნე პირვáƒáƒœáƒ“ელი დიზáƒáƒ˜áƒœáƒ˜" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "პირვáƒáƒœáƒ“ელის პáƒáƒ áƒáƒ›áƒ”ტრების დáƒáƒ‘რუნებáƒ" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "ჯგუფის რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბისáƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ áƒáƒ•ტáƒáƒ áƒ˜áƒ–áƒáƒªáƒ˜áƒ." + +#~ msgid "Group design" +#~ msgstr "ჯგუფის დიზáƒáƒ˜áƒœáƒ˜" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი ჯგუფი ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრ" +#~ "ფერთრპáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." + +#~ msgid "Design preferences saved." +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები შენáƒáƒ®áƒ£áƒšáƒ˜áƒ." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "ნუ გáƒáƒ£áƒ’ზáƒáƒ•ნი შეტყáƒáƒ‘ინებáƒáƒ¡ სáƒáƒ™áƒ£áƒ—áƒáƒ  თáƒáƒ•ს; უბრáƒáƒšáƒáƒ“ ჩუმáƒáƒ“ ჩáƒáƒ£áƒ©áƒ£áƒ áƒ©áƒ£áƒšáƒ”." + +#~ msgid "Backgrounds" +#~ msgstr "ფáƒáƒœáƒ”ბი" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" + +#~ msgid "Profile design" +#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ˜" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი პრáƒáƒ¤áƒ˜áƒšáƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრ" +#~ "ფერთრპáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "ისიáƒáƒ›áƒáƒ•ნეთ ჰáƒáƒ— დáƒáƒ’ით!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•áƒ" + +#~ msgid "View profile designs" +#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბის ნáƒáƒ®áƒ•áƒ" + +#~ msgid "Show or hide profile designs." +#~ msgstr "áƒáƒ©áƒ•ენე áƒáƒœ დáƒáƒ›áƒáƒšáƒ” პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბი." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "ფáƒáƒœáƒ˜" + +#~ msgid "Unable to delete design setting." +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების წáƒáƒ¨áƒšáƒ ვერ ხერხდებáƒ." + +#~ msgid "Design configuration" +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" + +#~ msgid "Change colours" +#~ msgstr "შეცვáƒáƒšáƒ” ფერები" + +#~ msgid "Use defaults" +#~ msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" + +#~ msgid "Upload file" +#~ msgstr "ფáƒáƒ˜áƒšáƒ˜áƒ¡ áƒáƒ¢áƒ•ირთვáƒ" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— პერსáƒáƒœáƒáƒšáƒ£áƒ áƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები " +#~ "ზáƒáƒ›áƒáƒ 2მბ." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "ჩáƒáƒ áƒ—ვáƒ" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" + +#~ msgid "Design defaults restored." +#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პირველáƒáƒ“ი პáƒáƒ áƒáƒ›áƒ”ტრები დáƒáƒ‘რუნებულიáƒ." + +#~ msgid "Design your profile" +#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index a06fe3918f..b522ce9f36 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "ì ‘ê·¼ 권한 설정 저장" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "ì ‘ê·¼ 권한 설정 저장" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -197,7 +195,6 @@ msgstr "해당 페ì´ì§€ê°€ 없습니다." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -362,7 +359,6 @@ msgstr "'device' 파ë¼ë¯¸í„°ì˜ ê°’ì€ ë‹¤ìŒ ì¤‘ 하나로 지정해야 합니 #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "사용ìžë¥¼ ì—…ë°ì´íŠ¸í•  수 없습니다." @@ -377,7 +373,6 @@ msgstr "í”„ë¡œí•„ì„ ì €ìž¥ í•  수 없습니다." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -387,24 +382,6 @@ msgid_plural "" "current configuration." msgstr[0] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í•  수 없습니다." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "ë””ìžì¸ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -493,6 +470,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "친구가 아닌 사용ìžì—게는 ì§ì ‘ ì§ì ‘ 메시지를 보낼 수 없습니다." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -721,7 +700,6 @@ msgstr "%s 사ì´íŠ¸ì˜ ê·¸ë£¹" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "관리ìžë§Œ ê·¸ë£¹ì„ íŽ¸ì§‘í•  수 있습니다." @@ -831,7 +809,6 @@ msgstr "oauth_token_associationì„ ë„£ëŠ”ë° ë°ì´í„°ë² ì´ìФ 오류." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -840,7 +817,6 @@ msgstr "oauth_token_associationì„ ë„£ëŠ”ë° ë°ì´í„°ë² ì´ìФ 오류." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "예ìƒì¹˜ 못한 í¼ ì œì¶œ." @@ -1192,7 +1168,6 @@ msgstr "ê·¸ë£¹ì„ ë– ë‚˜ë ¤ë©´ 로그ì¸í•´ì•¼ 합니다." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1276,6 +1251,7 @@ msgid "Join request canceled." msgstr "가입 ìš”ì²­ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s 사용ìžëŠ” êµ¬ë… í™•ì¸ íì— ë“¤ì–´ 있지 않습니다." @@ -1425,7 +1401,6 @@ msgstr "첨부 파ì¼ì´ 없습니다." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1920,149 +1895,6 @@ msgstr "ì´ ì‚¬ìš©ìž ì‚­ì œí•˜ì§€ 않기." msgid "Delete this user." msgstr "ì´ ì‚¬ìš©ìž ì‚­ì œ." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "ë””ìžì¸" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "ì´ StatusNet 사ì´íŠ¸ì˜ ë””ìžì¸ 설정" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "로고 URLì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "SSL 로고 URLì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "테마가 없습니다: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "로고 바꾸기" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "사ì´íЏ 로고" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL 로고" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "테마 바꾸기" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "사ì´íЏ 테마" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "사ì´íŠ¸ì— ëŒ€í•œ 테마" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "ì‚¬ìš©ìž ì§€ì • 테마" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "StatusNetì˜ ì‚¬ìš©ìž ì§€ì • 테마를 .ZIP ì••ì¶• 파ì¼ë¡œ 업로드할 수 있습니다." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "ë°°ê²½ ì´ë¯¸ì§€ 바꾸기" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "ë°°ê²½" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"사ì´íŠ¸ì˜ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” %1$s 입니다." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "켜기" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "ë„기" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 켜거나 ë•니다." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 반복 나열" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "색 바꾸기" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "ë‚´ìš©" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "가장ìžë¦¬ ì°½" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "문ìž" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "ë§í¬" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "고급" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "ì‚¬ìš©ìž ì •ì˜ CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "기본값 사용" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "기본값 ë””ìžì¸ìœ¼ë¡œ ë˜ëŒë¦¬ê¸°." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "기본값으로 초기화." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "ë””ìžì¸ 저장." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "좋아하는 ê¸€ì´ ì•„ë‹™ë‹ˆë‹¤!" @@ -2660,29 +2492,6 @@ msgstr "사용ìžë¥¼ 그룹ì—서 ì°¨ë‹¨í•˜ëŠ”ë° ë°ì´í„°ë² ì´ìФ 오류." msgid "No ID." msgstr "ì•„ì´ë””ê°€ 없습니다." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "ê·¸ë£¹ì„ íŽ¸ì§‘í•˜ë ¤ë©´ 로그ì¸í•´ì•¼ 합니다." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "그룹 ë””ìžì¸" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ ê·¸ë£¹ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "ë””ìžì¸ ì„¤ì •ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í–ˆìŠµë‹ˆë‹¤." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3326,14 +3135,6 @@ msgstr "ë‚´ìš©ì´ ì—†ìŠµë‹ˆë‹¤!" msgid "No recipient specified." msgstr "수신ìžë¥¼ 지정하지 않았습니다." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"ìžê¸° ìžì‹ ì—게 메시지를 ë³´ë‚´ì§€ 마세요. (혼ìžì„œ 조용히 ìžì‹ ì—게 ë§í•˜ëŠ” ê±´ ì–´ë–¤" -"가요?)" - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "메세지를 보냈습니다." @@ -3616,7 +3417,7 @@ msgid "Confirm" msgstr "확ì¸" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "위와 ê°™ì€ ë¹„ë°€ 번호." @@ -3792,30 +3593,6 @@ msgstr "아바타 디렉터리" msgid "Directory where avatars are located." msgstr "아바타가 들어 있는 디렉터리." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "ë°°ê²½" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "ë°°ê²½ 서버." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "ë°°ê²½ì˜ ì›¹ 경로." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 서버." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 웹 경로." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "ë°°ê²½ì´ ë“¤ì–´ 있는 디렉터리." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "첨부" @@ -4595,7 +4372,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6ê¸€ìž ì´ìƒ, 잊어버리지 마십시오!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "초기화" @@ -4604,18 +4380,6 @@ msgstr "초기화" msgid "Enter a nickname or email address." msgstr "ì‚¬ìš©ìž ì´ë¦„ì´ë‚˜ ë©”ì¼ ê³„ì •ì„ ìž…ë ¥í•˜ì‹­ì‹œì˜¤." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "그러한 ë©”ì¼ ì£¼ì†Œë‚˜ ì´ë¦„ì˜ ì‚¬ìš©ìžê°€ 없습니다." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "ê·¸ 사용ìžëŠ” 등ë¡í•œ ë©”ì¼ ì£¼ì†Œê°€ 없습니다." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "주소 í™•ì¸ ì €ìž¥ 오류." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5555,6 +5319,14 @@ msgstr "사ì´íЏ ì´ë¦„ì€ ê¸¸ì´ê°€ 0보다 커야 합니다." msgid "You must have a valid contact email address." msgstr "올바른 ì—°ë½ì²˜ ë©”ì¼ ì£¼ì†Œê°€ 필요합니다." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "로고 URLì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "SSL 로고 URLì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5625,7 +5397,9 @@ msgid "Default language" msgstr "기본 언어" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "사ì´íŠ¸ì˜ ì–¸ì–´, 브ë¼ìš°ì €ì˜ ìžë™ 언어 ì„¤ì •ì´ ì—†ì„ ë•Œ." #. TRANS: Fieldset legend on site settings panel. @@ -5650,8 +5424,22 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "ê°™ì€ ë‚´ìš©ì„ ê¸€ì„ ë‹¤ì‹œ 올릴 수 ìžˆì„ ë•Œê¹Œì§€ 기다려야 하는 시간. (ì´ˆ 단위)" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "로고" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "사ì´íЏ 로고" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL 로고" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "사ì´íЏ 설정 저장" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6400,38 +6188,6 @@ msgstr "아바타 URL \"%s\"ì„(를) ì½ì„ 수 없습니다." msgid "Wrong image type for avatar URL \"%s\"." msgstr "아바타 URL \"%s\"ì˜ ì´ë¯¸ì§€ 종류가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "프로필 ë””ìžì¸" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ í”„ë¡œí•„ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "í•«ë„ê·¸ 맛있게 드세요!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "ë””ìžì¸ 설정" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "프로필 ë””ìžì¸ 보기" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "프로필 ë””ìžì¸ ë³´ì´ê±°ë‚˜ ê°ì¶¥ë‹ˆë‹¤." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "ë°°ê²½ 파ì¼" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6872,6 +6628,18 @@ msgstr "ë‹¨ì¼ ì‚¬ìš©ìž ëª¨ë“œì—서 사용ìžë¥¼ ì •ì˜í•˜ì§€ 않았습니다. msgid "Single-user mode code called when not enabled." msgstr "ë‹¨ì¼ ì‚¬ìš©ìž ëª¨ë“œë¥¼ 사용하지 않지만 코드를 호출했습니다." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "그러한 ë©”ì¼ ì£¼ì†Œë‚˜ ì´ë¦„ì˜ ì‚¬ìš©ìžê°€ 없습니다." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "ê·¸ 사용ìžëŠ” 등ë¡í•œ ë©”ì¼ ì£¼ì†Œê°€ 없습니다." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "주소 í™•ì¸ ì €ìž¥ 오류." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "ê·¸ë£¹ì„ ë§Œë“¤ 수 없습니다." @@ -7137,11 +6905,6 @@ msgstr "showForm()ì´ êµ¬í˜„ë˜ì§€ 않았습니다." msgid "saveSettings() not implemented." msgstr "saveSettings()ì´ êµ¬í˜„ë˜ì§€ 않았습니다." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "ë””ìžì¸ ì„¤ì •ì„ ì‚­ì œí•  수 없습니다." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7170,17 +6933,6 @@ msgctxt "MENU" msgid "Site" msgstr "사ì´íЏ" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ë””ìžì¸ 설정" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "ë””ìžì¸" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ì‚¬ìš©ìž ì„¤ì •" @@ -8001,42 +7753,6 @@ msgstr "ì‚­ì œ" msgid "Delete this user" msgstr "ì´ ì‚¬ìš©ìž ì‚­ì œ" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "ë””ìžì¸ 변경" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "색 변경" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "기본값 사용" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "íŒŒì¼ ì—…ë¡œë“œ" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "ê°œì¸ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” 2MB입니다." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "켜기" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "ë„기" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "ë””ìžì¸ ê¸°ë³¸ê°’ì„ ë³µêµ¬í–ˆìŠµë‹ˆë‹¤." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8240,13 +7956,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "%s 로고 추가 ë˜ëŠ” 편집" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "%s ë””ìžì¸ 추가 ë˜ëŠ” 편집" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "그룹 ë™ìž‘" @@ -9578,10 +9287,6 @@ msgstr "ë©”ì¼" msgid "Change email handling" msgstr "ë©”ì¼ ì²˜ë¦¬ 바꾸기" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "프로필 ë””ìžì¸" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -9986,3 +9691,239 @@ msgstr "XMLì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤. XRD 루트가 없습니다." #, php-format msgid "Getting backup from file '%s'." msgstr "'%s' 파ì¼ì—서 ë°±ì—…ì„ ê°€ì ¸ì˜µë‹ˆë‹¤." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "아바타 URL \"%s\"ì„(를) ì½ì„ 수 없습니다." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "ì›ê²© 프로필 프로필 ì—…ë°ì´íЏ 오류." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "%sì— ëŒ€í•œ 서비스를 ì°¾ì„ ìˆ˜ 없습니다." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "프로필 태그를 만들 수 없습니다." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "ì´ë¦„ì´ %sì¸ ì‚¬ìš©ìžë¥¼ ì°¾ì„ ìˆ˜ 없습니다." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "올바른 ë©”ì¼ ì£¼ì†Œê°€ 아닙니다." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "í”„ë¡œí•„ì„ ì €ìž¥ í•  수 없습니다." + +#~ msgid "Unable to save your design settings." +#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í•  수 없습니다." + +#~ msgid "Could not update your design." +#~ msgstr "ë””ìžì¸ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." + +#~ msgid "Design" +#~ msgstr "ë””ìžì¸" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "ì´ StatusNet 사ì´íŠ¸ì˜ ë””ìžì¸ 설정" + +#~ msgid "Theme not available: %s." +#~ msgstr "테마가 없습니다: %s." + +#~ msgid "Change logo" +#~ msgstr "로고 바꾸기" + +#~ msgid "Change theme" +#~ msgstr "테마 바꾸기" + +#~ msgid "Site theme" +#~ msgstr "사ì´íЏ 테마" + +#~ msgid "Theme for the site." +#~ msgstr "사ì´íŠ¸ì— ëŒ€í•œ 테마" + +#~ msgid "Custom theme" +#~ msgstr "ì‚¬ìš©ìž ì§€ì • 테마" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "StatusNetì˜ ì‚¬ìš©ìž ì§€ì • 테마를 .ZIP ì••ì¶• 파ì¼ë¡œ 업로드할 수 있습니다." + +#~ msgid "Change background image" +#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ 바꾸기" + +#~ msgid "Background" +#~ msgstr "ë°°ê²½" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "사ì´íŠ¸ì˜ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” %1$s 입니다." + +#~ msgid "On" +#~ msgstr "켜기" + +#~ msgid "Off" +#~ msgstr "ë„기" + +#~ msgid "Turn background image on or off." +#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 켜거나 ë•니다." + +#~ msgid "Tile background image" +#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 반복 나열" + +#~ msgid "Change colors" +#~ msgstr "색 바꾸기" + +#~ msgid "Content" +#~ msgstr "ë‚´ìš©" + +#~ msgid "Sidebar" +#~ msgstr "가장ìžë¦¬ ì°½" + +#~ msgid "Text" +#~ msgstr "문ìž" + +#~ msgid "Links" +#~ msgstr "ë§í¬" + +#~ msgid "Advanced" +#~ msgstr "고급" + +#~ msgid "Custom CSS" +#~ msgstr "ì‚¬ìš©ìž ì •ì˜ CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "기본값 사용" + +#~ msgid "Restore default designs." +#~ msgstr "기본값 ë””ìžì¸ìœ¼ë¡œ ë˜ëŒë¦¬ê¸°." + +#~ msgid "Reset back to default." +#~ msgstr "기본값으로 초기화." + +#~ msgid "Save design." +#~ msgstr "ë””ìžì¸ 저장." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "ê·¸ë£¹ì„ íŽ¸ì§‘í•˜ë ¤ë©´ 로그ì¸í•´ì•¼ 합니다." + +#~ msgid "Group design" +#~ msgstr "그룹 ë””ìžì¸" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ ê·¸ë£¹ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." + +#~ msgid "Unable to update your design settings." +#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." + +#~ msgid "Design preferences saved." +#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í–ˆìŠµë‹ˆë‹¤." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "ìžê¸° ìžì‹ ì—게 메시지를 ë³´ë‚´ì§€ 마세요. (혼ìžì„œ 조용히 ìžì‹ ì—게 ë§í•˜ëŠ” ê±´ ì–´" +#~ "떤가요?)" + +#~ msgid "Backgrounds" +#~ msgstr "ë°°ê²½" + +#~ msgid "Server for backgrounds." +#~ msgstr "ë°°ê²½ 서버." + +#~ msgid "Web path to backgrounds." +#~ msgstr "ë°°ê²½ì˜ ì›¹ 경로." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 서버." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 웹 경로." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "ë°°ê²½ì´ ë“¤ì–´ 있는 디렉터리." + +#~ msgid "Profile design" +#~ msgstr "프로필 ë””ìžì¸" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ í”„ë¡œí•„ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "í•«ë„ê·¸ 맛있게 드세요!" + +#~ msgid "Design settings" +#~ msgstr "ë””ìžì¸ 설정" + +#~ msgid "View profile designs" +#~ msgstr "프로필 ë””ìžì¸ 보기" + +#~ msgid "Show or hide profile designs." +#~ msgstr "프로필 ë””ìžì¸ ë³´ì´ê±°ë‚˜ ê°ì¶¥ë‹ˆë‹¤." + +#~ msgid "Background file" +#~ msgstr "ë°°ê²½ 파ì¼" + +#~ msgid "Unable to delete design setting." +#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì‚­ì œí•  수 없습니다." + +#~ msgid "Design configuration" +#~ msgstr "ë””ìžì¸ 설정" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "ë””ìžì¸" + +#~ msgid "Change design" +#~ msgstr "ë””ìžì¸ 변경" + +#~ msgid "Change colours" +#~ msgstr "색 변경" + +#~ msgid "Use defaults" +#~ msgstr "기본값 사용" + +#~ msgid "Upload file" +#~ msgstr "íŒŒì¼ ì—…ë¡œë“œ" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "ê°œì¸ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” 2MB입니다." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "켜기" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "ë„기" + +#~ msgid "Design defaults restored." +#~ msgstr "ë””ìžì¸ ê¸°ë³¸ê°’ì„ ë³µêµ¬í–ˆìŠµë‹ˆë‹¤." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "%s ë””ìžì¸ 추가 ë˜ëŠ” 편집" + +#~ msgid "Design your profile" +#~ msgstr "프로필 ë””ìžì¸" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 379fb049f4..b7076cffee 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -110,7 +110,6 @@ msgid "Save access settings" msgstr "Зачувај нагодувања на приÑтап" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -126,7 +125,6 @@ msgstr "Зачувај нагодувања на приÑтап" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -200,7 +198,6 @@ msgstr "Ðема таква Ñтраница." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -367,7 +364,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Ðе можев да го подновам кориÑникот." @@ -382,7 +378,6 @@ msgstr "Ðе може да Ñе зачува профил." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -397,24 +392,6 @@ msgstr[1] "" "ОпÑлужувачот не можеше да обработи толку многу POST-податоци (%s бајти) " "поради неговата тековна поÑтавеноÑÑ‚." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Ðе можам да ги зачувам Вашите нагодувања за изглед." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Ðе може да Ñе поднови Вашиот изглед." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -505,6 +482,8 @@ msgstr "" "Ðе можете да иÑпраќате непоÑредни пораки на кориÑници што не Ви Ñе пријатели." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -736,7 +715,6 @@ msgstr "групи на %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Мора да Ñте админиÑтратор за да можете да ја уредите групата." @@ -845,7 +823,6 @@ msgstr "Грешка во базата при вметнувањето на auth #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -854,7 +831,6 @@ msgstr "Грешка во базата при вметнувањето на auth #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Ðеочекувано поднеÑување на образец." @@ -1215,7 +1191,6 @@ msgstr "Мора да Ñте најавени за да можете да ја #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1302,6 +1277,7 @@ msgid "Join request canceled." msgstr "Барањето за зачленување е откажано." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s не е во редицата за модерација на Вашите претплати." @@ -1453,7 +1429,6 @@ msgstr "Ðема таков прилог." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1957,150 +1932,6 @@ msgstr "Ðе го бриши кориÑников." msgid "Delete this user." msgstr "Избриши го кориÑников." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Изглед" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Ðагодувања на изгледот на ова StatusNet-мрежно меÑто." - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Погрешен URL на лого." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ðеважечка URL-адреÑа на SSL-логото." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Темата е недоÑтапна: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Промени лого" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Лого на мрежното меÑто" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-лого" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Промени изглед" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Изглед на мрежното меÑто" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Изглед за мрежното меÑто." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Прилагоден мотив" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Можете да подигнете Ñвој изглед за StatusNet како .ZIP архив." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Промена на Ñлика за позадина" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Позадина" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Може да подигнете позадинÑка Ñлика за ова мрежно меÑто. МакÑималната " -"големина на податотеката е %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Вкл." - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "ИÑкл." - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Вклучи или иÑклучи позадинÑка Ñлика." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Позадината во квадрати" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Смени бои" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Содржина" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Странична лента" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ТекÑÑ‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Ð’Ñ€Ñки" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Ðапредно" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Прилагодено CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "КориÑти по оÑновно" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Врати ги изгледите по оÑновно." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Врати по оÑновно." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Зачувај изглед." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Оваа забелешка не Ви е бендиÑана!" @@ -2707,31 +2538,6 @@ msgstr "" msgid "No ID." msgstr "Ðема ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Мора да Ñте најавени за да можете да уредувате група." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Изглед на групата" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Прилагодете го изгледот на Вашата група Ñо позадинÑка Ñлика и палета од бои " -"по Ваш избор." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Ðе можам да ги подновам Вашите нагодувања за изглед." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Ðагодувањата Ñе зачувани." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3280,7 +3086,7 @@ msgstr "Запамети ме" #. TRANS: Checkbox title on account registration page. msgid "Automatically login in the future; not for shared computers!" msgstr "" -"ОтÑега врши автоматÑка најава. Ðе треба да Ñе кориÑти за јавни Ñметачи!" +"ОтÑега врши автоматÑка најава (не треба да Ñе кориÑти на јавни Ñметачи!)" #. TRANS: Button text for log in on login page. msgctxt "BUTTON" @@ -3395,14 +3201,6 @@ msgstr "Ðема Ñодржина!" msgid "No recipient specified." msgstr "Ðема назначено примач." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ðе иÑпраќајте Ñи порака Ñамите на Ñебе; подобро тивко кажете Ñи го тоа на " -"ÑебеÑи." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Пораката е иÑпратена" @@ -3413,7 +3211,7 @@ msgstr "Пораката е иÑпратена" #. TRANS: %s is the name of the other user. #, php-format msgid "Direct message to %s sent." -msgstr "Директната порака до %s е иÑпратена." +msgstr "ÐепоÑредната порака до %s е иÑпратена." #. TRANS: Page title after an AJAX error occurred on the "send direct message" page. #. TRANS: Page title after an AJAX error occurs on the send notice page. @@ -3687,7 +3485,7 @@ msgid "Confirm" msgstr "Потврди" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "ИÑто како лозинката погоре." @@ -3863,30 +3661,6 @@ msgstr "Директориум на аватарот" msgid "Directory where avatars are located." msgstr "Директориумот кадешто Ñе ÑмеÑтени аватарите." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Позадини" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "ОпÑлужувач за позадини." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Мрежна патека за позадините." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "ОпÑлужувач за позадини на SSL-Ñтраници." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Мрежна патека за позадините на SSL-Ñтраници." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Директориумот кадешто Ñе ÑмеÑтени позадините." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Прилози" @@ -4683,7 +4457,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 или повеќе знаци - не заборавајте!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Врати одново" @@ -4692,18 +4465,6 @@ msgstr "Врати одново" msgid "Enter a nickname or email address." msgstr "ВнеÑете прекар или е-пошта" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ðема кориÑник Ñо таа е-поштенÑка адреÑа или кориÑничко име." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ðема региÑтрирана адреÑа за е-пошта за тој кориÑник." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Грешка при зачувувањето на потврдата за адреÑа." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -4865,7 +4626,7 @@ msgstr "" "\n" "* Отидете на [Вашиот профил](%2$s) и објавете ја Вашата прва порака.\n" "* Додајте [Jabber/GTalk адреÑа](%%%%action.imsettings%%%%) за да можете да " -"иÑпраќате забелешки преку инÑтант-пораки.\n" +"иÑпраќате забелешки преку непоÑредни пораки.\n" "* [Пребарајте луѓе](%%%%action.peoplesearch%%%%) кои можеби ги знаете или " "кои имаат иÑти интереÑи како ВаÑ. \n" "* Подновете Ñи ги [нагодувањата на профилот](%%%%action.profilesettings%%%%) " @@ -5666,6 +5427,14 @@ msgstr "Должината на името на мрежното меÑто не msgid "You must have a valid contact email address." msgstr "Мора да имате важечка контактна е-поштенÑка адреÑа." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Погрешен URL на лого." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ðеважечка URL-адреÑа на SSL-логото." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5739,7 +5508,9 @@ msgid "Default language" msgstr "ОÑновен јазик" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "Јазик на мрежното меÑто ако прелиÑтувачот не може да го препознае Ñам" #. TRANS: Fieldset legend on site settings panel. @@ -5765,8 +5536,22 @@ msgstr "" "Колку долго треба да почекаат кориÑниците (во Ñекунди) за да можат повторно " "да го објават иÑтото." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Лого" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Лого на мрежното меÑто" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-лого" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Зачувај нагодувања на мреж. меÑто" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6530,40 +6315,6 @@ msgstr "Ðе можам да ја прочитам URL-адреÑата на а msgid "Wrong image type for avatar URL \"%s\"." msgstr "Погрешен тип на Ñлика за аватарот Ñо URL „%s“." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Изглед на профилот" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Прилагодете го изгледот на Вашиот профил, Ñо позадинÑка Ñлика и палета од " -"бои по Ваш избор." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Добар апетит!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Ðагодувања на изгледот" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Види изгледи на профилот" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Прикажи или Ñкриј изгледи на профилот." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Податотека за позадината" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7021,6 +6772,18 @@ msgstr "Ðе е зададен кориÑник за еднокориÑничк msgid "Single-user mode code called when not enabled." msgstr "Повикан е еднокориÑнички режим, но не е овозможен." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ðема кориÑник Ñо таа е-поштенÑка адреÑа или кориÑничко име." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ðема региÑтрирана адреÑа за е-пошта за тој кориÑник." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Грешка при зачувувањето на потврдата за адреÑа." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Ðе можев да ја Ñоздадам групата." @@ -7289,11 +7052,6 @@ msgstr "showForm() не е имплементирано." msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Ðе можам да ги избришам нагодувањата за изглед." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7322,17 +7080,6 @@ msgctxt "MENU" msgid "Site" msgstr "Мреж. меÑто" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ПоÑтавки на изгледот" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Изглед" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "КориÑнички поÑтавки" @@ -7829,7 +7576,7 @@ msgstr "Ðе можете да иÑпратите порака до овојо #. TRANS: Error text shown sending a direct message fails with an unknown reason. msgid "Error sending direct message." -msgstr "Грашка при иÑпаќањето на директната порака." +msgstr "Грашка при иÑпаќањето на непоÑредната порака." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. @@ -8173,44 +7920,6 @@ msgstr "Избриши" msgid "Delete this user" msgstr "Избриши овој кориÑник" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Измени изглед" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Промена на бои" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "КориÑти по оÑновно" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Подигање" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Можете да подигнете лична позадинÑка Ñлика. МакÑималната дозволена големина " -"изнеÑува 2МБ." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Вкл." - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "ИÑкл." - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "ОÑновно-зададениот изглед е вратен." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8424,13 +8133,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Додавање или уредување на лого на групата „%s “" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Додавање или уредување на изгледот на групата „%s“" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Групни дејÑтва" @@ -9040,7 +8742,7 @@ msgstr "„%s„ не е поддржан податотечен тип на о #. TRANS: Form legend for direct notice. msgid "Send a direct notice" -msgstr "ИÑпрати директна забелешка" +msgstr "ИÑпрати непоÑредна забелешка" #. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. #. TRANS: This is the default entry in the drop-down box, doubling as instructions @@ -9771,10 +9473,6 @@ msgstr "Е-пошта" msgid "Change email handling" msgstr "Смени ракување Ñо е-пошта" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "ÐамеÑтете изглед на Вашиот профил" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -9787,7 +9485,7 @@ msgstr "Скратувачи на URL" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "IM" -msgstr "IM" +msgstr "ÐП" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" @@ -10190,3 +9888,244 @@ msgstr "Ðеважечки XML. Ðема XRD-корен." #, php-format msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Ðе можам да ја прочитам URL-адреÑата на аватарот „%s“." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Грешка во подновувањето на далечинÑкиот профил." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Ðе можам да пронајдам Ñлужби за: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Ðе можев да Ñоздадам профилна ознака." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Ðе можев да пронајдам кориÑник Ñо прекар %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Ова не е важечка е-пошта." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Ðе може да Ñе зачува профил." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Ðе можам да ги зачувам Вашите нагодувања за изглед." + +#~ msgid "Could not update your design." +#~ msgstr "Ðе може да Ñе поднови Вашиот изглед." + +#~ msgid "Design" +#~ msgstr "Изглед" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Ðагодувања на изгледот на ова StatusNet-мрежно меÑто." + +#~ msgid "Theme not available: %s." +#~ msgstr "Темата е недоÑтапна: %s." + +#~ msgid "Change logo" +#~ msgstr "Промени лого" + +#~ msgid "Change theme" +#~ msgstr "Промени изглед" + +#~ msgid "Site theme" +#~ msgstr "Изглед на мрежното меÑто" + +#~ msgid "Theme for the site." +#~ msgstr "Изглед за мрежното меÑто." + +#~ msgid "Custom theme" +#~ msgstr "Прилагоден мотив" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Можете да подигнете Ñвој изглед за StatusNet како .ZIP архив." + +#~ msgid "Change background image" +#~ msgstr "Промена на Ñлика за позадина" + +#~ msgid "Background" +#~ msgstr "Позадина" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Може да подигнете позадинÑка Ñлика за ова мрежно меÑто. МакÑималната " +#~ "големина на податотеката е %1$s." + +#~ msgid "On" +#~ msgstr "Вкл." + +#~ msgid "Off" +#~ msgstr "ИÑкл." + +#~ msgid "Turn background image on or off." +#~ msgstr "Вклучи или иÑклучи позадинÑка Ñлика." + +#~ msgid "Tile background image" +#~ msgstr "Позадината во квадрати" + +#~ msgid "Change colors" +#~ msgstr "Смени бои" + +#~ msgid "Content" +#~ msgstr "Содржина" + +#~ msgid "Sidebar" +#~ msgstr "Странична лента" + +#~ msgid "Text" +#~ msgstr "ТекÑÑ‚" + +#~ msgid "Links" +#~ msgstr "Ð’Ñ€Ñки" + +#~ msgid "Advanced" +#~ msgstr "Ðапредно" + +#~ msgid "Custom CSS" +#~ msgstr "Прилагодено CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "КориÑти по оÑновно" + +#~ msgid "Restore default designs." +#~ msgstr "Врати ги изгледите по оÑновно." + +#~ msgid "Reset back to default." +#~ msgstr "Врати по оÑновно." + +#~ msgid "Save design." +#~ msgstr "Зачувај изглед." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Мора да Ñте најавени за да можете да уредувате група." + +#~ msgid "Group design" +#~ msgstr "Изглед на групата" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Прилагодете го изгледот на Вашата група Ñо позадинÑка Ñлика и палета од " +#~ "бои по Ваш избор." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ðе можам да ги подновам Вашите нагодувања за изглед." + +#~ msgid "Design preferences saved." +#~ msgstr "Ðагодувањата Ñе зачувани." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Ðе иÑпраќајте Ñи порака Ñамите на Ñебе; подобро тивко кажете Ñи го тоа на " +#~ "ÑебеÑи." + +#~ msgid "Backgrounds" +#~ msgstr "Позадини" + +#~ msgid "Server for backgrounds." +#~ msgstr "ОпÑлужувач за позадини." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Мрежна патека за позадините." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "ОпÑлужувач за позадини на SSL-Ñтраници." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Мрежна патека за позадините на SSL-Ñтраници." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Директориумот кадешто Ñе ÑмеÑтени позадините." + +#~ msgid "Profile design" +#~ msgstr "Изглед на профилот" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Прилагодете го изгледот на Вашиот профил, Ñо позадинÑка Ñлика и палета од " +#~ "бои по Ваш избор." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Добар апетит!" + +#~ msgid "Design settings" +#~ msgstr "Ðагодувања на изгледот" + +#~ msgid "View profile designs" +#~ msgstr "Види изгледи на профилот" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Прикажи или Ñкриј изгледи на профилот." + +#~ msgid "Background file" +#~ msgstr "Податотека за позадината" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Ðе можам да ги избришам нагодувањата за изглед." + +#~ msgid "Design configuration" +#~ msgstr "ПоÑтавки на изгледот" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Изглед" + +#~ msgid "Change design" +#~ msgstr "Измени изглед" + +#~ msgid "Change colours" +#~ msgstr "Промена на бои" + +#~ msgid "Use defaults" +#~ msgstr "КориÑти по оÑновно" + +#~ msgid "Upload file" +#~ msgstr "Подигање" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Можете да подигнете лична позадинÑка Ñлика. МакÑималната дозволена " +#~ "големина изнеÑува 2МБ." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Вкл." + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "ИÑкл." + +#~ msgid "Design defaults restored." +#~ msgstr "ОÑновно-зададениот изглед е вратен." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Додавање или уредување на изгледот на групата „%s“" + +#~ msgid "Design your profile" +#~ msgstr "ÐамеÑтете изглед на Вашиот профил" diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index e6dc635b7f..2cb061df4d 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -99,7 +99,6 @@ msgid "Save access settings" msgstr "à´…à´­à´¿à´—à´®àµà´¯à´¤à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ സേവൠചെയàµà´¯àµà´•" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -115,7 +114,6 @@ msgstr "à´…à´­à´¿à´—à´®àµà´¯à´¤à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ സേ #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -187,7 +185,6 @@ msgstr "à´…à´¤àµà´¤à´°à´¤àµà´¤à´¿àµ½ ഒരൠതാളിലàµà´²." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -346,7 +343,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "ഉപയോകàµà´¤àµƒ വിവരങàµà´™àµ¾ à´ªàµà´¤àµà´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." @@ -361,7 +357,6 @@ msgstr "" #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -372,24 +367,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ കാതàµà´¤àµà´¸àµ‚à´•àµà´·à´¿à´•àµà´•ാനായിലàµà´²." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -479,6 +456,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "താങàµà´•à´³àµà´Ÿàµ† à´¸àµà´¹àµƒà´¤àµà´¤àµà´•àµà´•ളലàµà´²à´¾à´¤àµà´¤ ഉപയോകàµà´¤à´¾à´•àµà´•ൾകàµà´•ൠനേരിടàµà´Ÿàµà´³àµà´³ സനàµà´¦àµ‡à´¶à´™àµà´™àµ¾ അയയàµà´•àµà´•ാൻ കഴിയിലàµà´²." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "താങàµà´•ൾകàµà´•ൠതനàµà´¨àµ† സനàµà´¦àµ‡à´¶à´‚ അയയàµà´•àµà´•à´°àµà´¤àµ; പകരം അതൠപതàµà´•àµà´•െ à´¸àµà´µà´¯à´‚ പറയàµà´•." @@ -707,7 +686,6 @@ msgstr "%s സൈറàµà´±à´¿à´²àµ† സംഘങàµà´™àµ¾" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "സംഘതàµà´¤à´¿àµ½ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¾àµ» താങàµà´•ൾ ഒരൠകാരàµà´¯à´¨à´¿àµ¼à´µàµà´µà´¾à´¹à´•നായിരികàµà´•ണം." @@ -816,7 +794,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -825,7 +802,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "à´…à´ªàµà´°à´¤àµ€à´•àµà´·à´¿à´¤ ഫോം സമർപàµà´ªà´¿à´•àµà´•ൽ." @@ -1174,7 +1150,6 @@ msgstr "ഒരൠസംഘതàµà´¤à´¿àµ½ നിനàµà´¨àµà´‚ à´ªàµà´±à´¤àµ #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1259,6 +1234,7 @@ msgid "Join request canceled." msgstr "ഭാഗഭാകàµà´•ാകൽ à´…à´­àµà´¯àµ¼à´¤àµà´¥à´¨ നിരസിചàµà´šàµ." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "à´ˆ സംഘതàµà´¤à´¿à´²àµ† ഉപയോകàµà´¤à´¾à´•àµà´•à´³àµà´Ÿàµ† പടàµà´Ÿà´¿à´•." @@ -1412,7 +1388,6 @@ msgstr "" #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1905,152 +1880,6 @@ msgstr "à´ˆ ഉപയോകàµà´¤à´¾à´µà´¿à´¨àµ† നീകàµà´•à´‚ ചെയൠmsgid "Delete this user." msgstr "à´ˆ ഉപയോകàµà´¤à´¾à´µà´¿à´¨àµ† നീകàµà´•à´‚ ചെയàµà´¯àµà´•." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "രൂപകലàµà´ªà´¨" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "à´ˆ à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ സൈറàµà´±à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "ലോഗോ യൂ.ആർ.എൽ. അസാധàµà´µà´¾à´£àµ." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "അസാധàµà´µà´¾à´¯ à´Žà´¸àµ.à´Žà´¸àµ.എൽ. ലോഗോ യൂ.ആർ.എൽ." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "ദൃശàµà´¯à´°àµ‚പം ലഭàµà´¯à´®à´²àµà´²: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "ലോഗോ മാറàµà´±àµà´•" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† ലോഗോ" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "à´Žà´¸àµ.à´Žà´¸àµ.എൽ. ലോഗോ" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "ദൃശàµà´¯à´°àµ‚പം മാറàµà´±àµà´•" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "à´ˆ സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "à´à´šàµà´›à´¿à´• ദൃശàµà´¯à´°àµ‚പം" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"താങàµà´•à´³àµà´Ÿàµ† ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´‚ നിർമàµà´®à´¿à´šàµà´š à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ ദൃശàµà´¯à´°àµ‚പം .സിപൠആർകàµà´•ൈവൠആയി താങàµà´•ൾകàµà´•ൠഅപàµâ€Œà´²àµ‹à´¡àµ " -"ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ മാറàµà´±àµà´•" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " -"വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "സജàµà´œà´‚" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "രഹിതം" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨ സജàµà´œà´®à´¾à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ രഹിതമാകàµà´•àµà´•." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ ആവർതàµà´¤à´¿à´šàµà´šàµ ചേർകàµà´•àµà´•" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "ഉളàµà´³à´Ÿà´•àµà´•à´‚" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "പാർശàµà´µà´­à´¿à´¤àµà´¤à´¿" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "à´Žà´´àµà´¤àµà´¤àµ" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "à´•à´£àµà´£à´¿à´•ൾ" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "വിപàµà´²à´‚" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "à´¸àµà´µà´¨àµà´¤à´‚ സി.à´Žà´¸àµ.à´Žà´¸àµ." - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨à´•ൾ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "à´®àµà´®àµà´ªàµ à´¸àµà´µà´¤àµ‡à´¯àµà´£àµà´Ÿà´¾à´¯à´¿à´°àµà´¨àµà´¨à´¤à´¿à´²àµ‡à´¯àµà´•àµà´•ൠപàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "à´ˆ അറിയിപàµà´ªàµ à´ªàµà´°à´¿à´¯à´™àµà´•രമാണെനàµà´¨àµ അടയാളപàµà´ªàµ†à´Ÿàµà´¤àµà´¤à´¿à´¯à´¿à´Ÿàµà´Ÿà´¿à´²àµà´²!" @@ -2647,29 +2476,6 @@ msgstr "സംഘതàµà´¤à´¿àµ½ നിനàµà´¨àµà´‚ ഉപയോകàµà´¤à´¾ msgid "No ID." msgstr "à´.à´¡à´¿. ഇലàµà´²." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "സംഘതàµà´¤à´¿àµ½ മാറàµà´±à´™àµà´™àµ¾ വരàµà´¤àµà´¤à´¾àµ» താങàµà´•ൾ ലോഗിൻ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•േണàµà´Ÿà´¤à´¾à´£àµ." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "സംഘതàµà´¤à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²àµà´² à´šà´¿à´¤àµà´°à´µàµà´‚ വർണàµà´£à´™àµà´™à´³àµà´‚ ചേർതàµà´¤àµ സംഘതàµà´¤à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´®à´¾à´•àµà´•àµà´•." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണങàµà´™àµ¾ സേവൠചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3337,12 +3143,6 @@ msgstr "ഉളàµà´³à´Ÿà´•àµà´•മിലàµà´²!" msgid "No recipient specified." msgstr "à´¸àµà´µàµ€à´•ർതàµà´¤à´¾à´µà´¿à´¨àµ† à´µàµà´¯à´•àµà´¤à´®à´¾à´•àµà´•ിയിടàµà´Ÿà´¿à´²àµà´²." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "താങàµà´•ൾകàµà´•ൠതനàµà´¨àµ† സനàµà´¦àµ‡à´¶à´‚ അയയàµà´•àµà´•à´°àµà´¤àµ; പകരം അതൠപതàµà´•àµà´•െ à´¸àµà´µà´¯à´‚ പറയàµà´•." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "സനàµà´¦àµ‡à´¶à´‚ അയചàµà´šàµ" @@ -3616,7 +3416,7 @@ msgid "Confirm" msgstr "à´¸àµà´¥à´¿à´°àµ€à´•à´°à´¿à´•àµà´•àµà´•" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "à´®àµà´•ളിൽ നൽകിയ അതേ രഹസàµà´¯à´µà´¾à´•àµà´•àµ." @@ -3793,30 +3593,6 @@ msgstr "" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "" @@ -4601,7 +4377,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "ആറോ അതിലധികമോ à´…à´•àµà´·à´°à´™àµà´™àµ¾, അതൠമറകàµà´•à´°àµà´¤àµ!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "à´ªàµà´¨à´ƒà´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµà´•" @@ -4610,18 +4385,6 @@ msgstr "à´ªàµà´¨à´ƒà´•àµà´°à´®àµ€à´•à´°à´¿à´•àµà´•àµà´•" msgid "Enter a nickname or email address." msgstr "ഒരൠവിളിപàµà´ªàµ‡à´°àµ‹ ഇമെയിൽ വിലാസമോ നൽകàµà´•." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "à´† ഇമെയിൽ വിലാസമോ ഉപയോകàµà´¤àµƒà´¨à´¾à´®à´®àµ‹ ഉപയോഗികàµà´•àµà´¨àµà´¨ ഒരൠഉപയോകàµà´¤à´¾à´µàµà´‚ ഇലàµà´²." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "à´† ഉപയോകàµà´¤à´¾à´µàµ ഇമെയിൽ വിലാസമൊനàµà´¨àµà´‚ നൽകിയിടàµà´Ÿà´¿à´²àµà´²." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "വിലാസതàµà´¤à´¿à´¨àµà´±àµ† à´¸àµà´¥à´¿à´°àµ€à´•രണം സേവൠചെയàµà´¯àµà´®àµà´ªàµ‹àµ¾ പിഴവàµà´£àµà´Ÿà´¾à´¯à´¿." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5536,6 +5299,14 @@ msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† പേരൠശൂനàµà´¯à´®à´¾à´¯à´¿ msgid "You must have a valid contact email address." msgstr "താങàµà´•ളെ ബനàµà´§à´ªàµà´ªàµ†à´Ÿà´¾à´¨à´¾à´¯à´¿ സാധàµà´µà´¾à´¯ ഇമെയിൽ വിലാസമàµà´£àµà´Ÿà´¾à´¯à´¿à´°à´¿à´•àµà´•ണം." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "ലോഗോ യൂ.ആർ.എൽ. അസാധàµà´µà´¾à´£àµ." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "അസാധàµà´µà´¾à´¯ à´Žà´¸àµ.à´Žà´¸àµ.എൽ. ലോഗോ യൂ.ആർ.എൽ." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5608,7 +5379,8 @@ msgid "Default language" msgstr "à´¸àµà´µà´¤àµ‡ വേണàµà´Ÿ ഭാഷ" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5634,8 +5406,22 @@ msgstr "" "ഒരേ കാരàµà´¯à´‚ വീണàµà´Ÿàµà´‚ à´ªàµà´°à´¸à´¿à´¦àµà´§àµ€à´•à´°à´¿à´•àµà´•ാൻ ഉപയോകàµà´¤à´¾à´•àµà´•ൾ à´Žà´¤àµà´° നേരമാണൠ(സെകàµà´•à´¨àµà´±àµà´•ളിൽ) " "കാതàµà´¤à´¿à´°à´¿à´•àµà´•േണàµà´Ÿà´¤àµ." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "ലോഗോ" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† ലോഗോ" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "à´Žà´¸àµ.à´Žà´¸àµ.എൽ. ലോഗോ" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "സൈറàµà´±àµ സജàµà´œàµ€à´•രണങàµà´™àµ¾ സേവൠചെയàµà´¯àµà´•" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6381,39 +6167,6 @@ msgstr "" msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "താങàµà´•à´³àµà´Ÿàµ† ഹോടàµà´Ÿàµà´¡àµ‹à´—ൠആസàµà´µà´¦à´¿à´•àµà´•ൂ!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "സൈറàµà´±àµ സജàµà´œàµ€à´•രണങàµà´™àµ¾ ചേവൠചെയàµà´¯àµà´•" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "പശàµà´šà´¾à´¤àµà´¤à´² à´ªàµà´°à´®à´¾à´£à´‚" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6851,6 +6604,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "à´† ഇമെയിൽ വിലാസമോ ഉപയോകàµà´¤àµƒà´¨à´¾à´®à´®àµ‹ ഉപയോഗികàµà´•àµà´¨àµà´¨ ഒരൠഉപയോകàµà´¤à´¾à´µàµà´‚ ഇലàµà´²." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "à´† ഉപയോകàµà´¤à´¾à´µàµ ഇമെയിൽ വിലാസമൊനàµà´¨àµà´‚ നൽകിയിടàµà´Ÿà´¿à´²àµà´²." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "വിലാസതàµà´¤à´¿à´¨àµà´±àµ† à´¸àµà´¥à´¿à´°àµ€à´•രണം സേവൠചെയàµà´¯àµà´®àµà´ªàµ‹àµ¾ പിഴവàµà´£àµà´Ÿà´¾à´¯à´¿." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "സംഘം സൃഷàµà´Ÿà´¿à´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." @@ -7117,11 +6882,6 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ മായàµà´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7153,17 +6913,6 @@ msgctxt "MENU" msgid "Site" msgstr "സൈറàµà´±àµ" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണം" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "രൂപകലàµà´ªà´¨" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ഉപയോകàµà´¤àµƒ à´•àµà´°à´®àµ€à´•രണം" @@ -8015,46 +7764,6 @@ msgstr "മായàµà´•àµà´•àµà´•" msgid "Delete this user" msgstr "à´ˆ ഉപയോകàµà´¤à´¾à´µà´¿à´¨àµ† നീകàµà´•à´‚ ചെയàµà´¯àµà´•" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "à´ªàµà´°à´®à´¾à´£à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯àµà´•" - -#. TRANS: Instructions for form on profile design page. -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " -"വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "സജàµà´œà´‚" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "രഹിതം" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8266,13 +7975,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "%s à´Žà´¨àµà´¨ സംഘതàµà´¤à´¿à´¨àµ രൂപകലàµà´ªà´¨ കൂടàµà´Ÿà´¿à´šàµà´šàµ‡àµ¼à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´•" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "സംഘതàµà´¤à´¿à´¨àµà´±àµ† à´ªàµà´°à´µàµƒà´¤àµà´¤à´¿à´•ൾ" @@ -9577,10 +9279,6 @@ msgstr "ഇമെയിൽ" msgid "Change email handling" msgstr "ഇമെയിൽ കൈകാരàµà´¯à´°àµ€à´¤à´¿à´¯à´¿àµ½ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´•" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10004,3 +9702,211 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "അസാധàµà´µà´¾à´¯ à´±àµà´±à´¾à´—àµ: \"%s\"" + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "സംഘം സൃഷàµà´Ÿà´¿à´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "à´ªàµà´°à´¿à´¯à´™àµà´•à´°à´™àµà´™àµ¾ സൃഷàµà´Ÿà´¿à´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "സാധàµà´µà´¾à´¯ ഇമെയിൽ വിലാസം à´…à´²àµà´²." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "ലകàµà´·àµà´¯à´®à´¿à´Ÿàµà´Ÿ ഉപയോകàµà´¤à´¾à´µà´¿à´¨àµ† à´•à´£àµà´Ÿàµ†à´¤àµà´¤à´¾à´¨à´¾à´¯à´¿à´²àµà´²." + +#~ msgid "Unable to save your design settings." +#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ കാതàµà´¤àµà´¸àµ‚à´•àµà´·à´¿à´•àµà´•ാനായിലàµà´²." + +#~ msgid "Could not update your design." +#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." + +#~ msgid "Design" +#~ msgstr "രൂപകലàµà´ªà´¨" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "à´ˆ à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ സൈറàµà´±à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾" + +#~ msgid "Theme not available: %s." +#~ msgstr "ദൃശàµà´¯à´°àµ‚പം ലഭàµà´¯à´®à´²àµà´²: %s." + +#~ msgid "Change logo" +#~ msgstr "ലോഗോ മാറàµà´±àµà´•" + +#~ msgid "Change theme" +#~ msgstr "ദൃശàµà´¯à´°àµ‚പം മാറàµà´±àµà´•" + +#~ msgid "Site theme" +#~ msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം" + +#~ msgid "Theme for the site." +#~ msgstr "à´ˆ സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം." + +#~ msgid "Custom theme" +#~ msgstr "à´à´šàµà´›à´¿à´• ദൃശàµà´¯à´°àµ‚പം" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "താങàµà´•à´³àµà´Ÿàµ† ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´‚ നിർമàµà´®à´¿à´šàµà´š à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ ദൃശàµà´¯à´°àµ‚പം .സിപൠആർകàµà´•ൈവൠആയി താങàµà´•ൾകàµà´•ൠ" +#~ "à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ." + +#~ msgid "Change background image" +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ മാറàµà´±àµà´•" + +#~ msgid "Background" +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " +#~ "വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." + +#~ msgid "On" +#~ msgstr "സജàµà´œà´‚" + +#~ msgid "Off" +#~ msgstr "രഹിതം" + +#~ msgid "Turn background image on or off." +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨ സജàµà´œà´®à´¾à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ രഹിതമാകàµà´•àµà´•." + +#~ msgid "Tile background image" +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ ആവർതàµà´¤à´¿à´šàµà´šàµ ചേർകàµà´•àµà´•" + +#~ msgid "Change colors" +#~ msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" + +#~ msgid "Content" +#~ msgstr "ഉളàµà´³à´Ÿà´•àµà´•à´‚" + +#~ msgid "Sidebar" +#~ msgstr "പാർശàµà´µà´­à´¿à´¤àµà´¤à´¿" + +#~ msgid "Text" +#~ msgstr "à´Žà´´àµà´¤àµà´¤àµ" + +#~ msgid "Links" +#~ msgstr "à´•à´£àµà´£à´¿à´•ൾ" + +#~ msgid "Advanced" +#~ msgstr "വിപàµà´²à´‚" + +#~ msgid "Custom CSS" +#~ msgstr "à´¸àµà´µà´¨àµà´¤à´‚ സി.à´Žà´¸àµ.à´Žà´¸àµ." + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" + +#~ msgid "Restore default designs." +#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨à´•ൾ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." + +#~ msgid "Reset back to default." +#~ msgstr "à´®àµà´®àµà´ªàµ à´¸àµà´µà´¤àµ‡à´¯àµà´£àµà´Ÿà´¾à´¯à´¿à´°àµà´¨àµà´¨à´¤à´¿à´²àµ‡à´¯àµà´•àµà´•ൠപàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." + +#~ msgid "Save design." +#~ msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "സംഘതàµà´¤à´¿àµ½ മാറàµà´±à´™àµà´™àµ¾ വരàµà´¤àµà´¤à´¾àµ» താങàµà´•ൾ ലോഗിൻ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•േണàµà´Ÿà´¤à´¾à´£àµ." + +#~ msgid "Group design" +#~ msgstr "സംഘതàµà´¤à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²àµà´² à´šà´¿à´¤àµà´°à´µàµà´‚ വർണàµà´£à´™àµà´™à´³àµà´‚ ചേർതàµà´¤àµ സംഘതàµà´¤à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´®à´¾à´•àµà´•àµà´•." + +#~ msgid "Unable to update your design settings." +#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." + +#~ msgid "Design preferences saved." +#~ msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണങàµà´™àµ¾ സേവൠചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "താങàµà´•ൾകàµà´•ൠതനàµà´¨àµ† സനàµà´¦àµ‡à´¶à´‚ അയയàµà´•àµà´•à´°àµà´¤àµ; പകരം അതൠപതàµà´•àµà´•െ à´¸àµà´µà´¯à´‚ പറയàµà´•." + +#~ msgid "Backgrounds" +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† ഹോടàµà´Ÿàµà´¡àµ‹à´—ൠആസàµà´µà´¦à´¿à´•àµà´•ൂ!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "സൈറàµà´±àµ സജàµà´œàµ€à´•രണങàµà´™àµ¾ ചേവൠചെയàµà´¯àµà´•" + +#~ msgid "Background file" +#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´² à´ªàµà´°à´®à´¾à´£à´‚" + +#~ msgid "Unable to delete design setting." +#~ msgstr "രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ മായàµà´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." + +#~ msgid "Design configuration" +#~ msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണം" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "രൂപകലàµà´ªà´¨" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•" + +#~ msgid "Change colours" +#~ msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" + +#~ msgid "Use defaults" +#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" + +#~ msgid "Upload file" +#~ msgstr "à´ªàµà´°à´®à´¾à´£à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯àµà´•" + +#, fuzzy +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " +#~ "വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "സജàµà´œà´‚" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "രഹിതം" + +#~ msgid "Design defaults restored." +#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "%s à´Žà´¨àµà´¨ സംഘതàµà´¤à´¿à´¨àµ രൂപകലàµà´ªà´¨ കൂടàµà´Ÿà´¿à´šàµà´šàµ‡àµ¼à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´•" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 599a63479b..7f4a75a48a 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:40+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -107,7 +107,6 @@ msgid "Save access settings" msgstr "Lagre tilgangsinnstillinger" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -123,7 +122,6 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -197,7 +195,6 @@ msgstr "Ingen slik side." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -362,7 +359,6 @@ msgstr "Du mÃ¥ angi en verdi for parameteren 'device' med en av: sms, im, none." #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Kunne ikke oppdatere bruker." @@ -377,7 +373,6 @@ msgstr "Kunne ikke lagre profil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -392,24 +387,6 @@ msgstr[1] "" "Tjeneren kunne ikke hÃ¥ndtere sÃ¥ mye POST-data (%s bytes) pÃ¥ grunn av sin " "gjeldende konfigurasjon." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Kunne ikke lagre dine innstillinger for utseende." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Kunne ikke oppdatere din profils utseende." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -499,6 +476,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Du kan ikke sende direktemeldinger til brukere som ikke er din venn." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -728,7 +707,6 @@ msgstr "grupper pÃ¥ %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Du mÃ¥ være en administrator for Ã¥ redigere gruppen." @@ -840,7 +818,6 @@ msgstr "Databasefeil ved innsetting av oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -849,7 +826,6 @@ msgstr "Databasefeil ved innsetting av oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Uventet skjemainnsending." @@ -1207,7 +1183,6 @@ msgstr "Du mÃ¥ være innlogget for Ã¥ forlate en gruppe." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1293,6 +1268,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "En liste over brukerne i denne gruppen." @@ -1451,7 +1427,6 @@ msgstr "Ingen slike vedlegg." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1955,149 +1930,6 @@ msgstr "Ikke slett denne brukeren." msgid "Delete this user." msgstr "Slett denne brukeren." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Utseende" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Utseendeinnstillinger for dette StatusNet-nettstedet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Ugyldig logo-URL." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ugyldig SSL-logo-URL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema ikke tilgjengelig: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Endre logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Nettstedslogo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Endre tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Nettstedstema" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema for nettstedet." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Egendefinert tema" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Endre bakgrunnsbilde" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Bakgrunn" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "PÃ¥" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Av" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "SlÃ¥ pÃ¥ eller av bakgrunnsbilde." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Gjenta bakgrunnsbildet" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Endre farger" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Innhold" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Sidelinje" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Tekst" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Lenker" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avansert" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Egendefinert CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Bruk standardinnstillinger" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Gjenopprett standardutseende." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Tilbakestill til standardinnstillinger." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Lagre utseende." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Denne notisen er ikke en favoritt!" @@ -2704,32 +2536,6 @@ msgstr "Databasefeil ved blokkering av bruker fra gruppe." msgid "No ID." msgstr "Ingen ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Du mÃ¥ være logget inn for Ã¥ redigere en gruppe." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Gruppeutseende" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en fargepalett " -"av ditt valg." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Kunne ikke lagre dine innstillinger for utseende." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Utseende lagret." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3407,13 +3213,6 @@ msgstr "Inget innhold." msgid "No recipient specified." msgstr "Ingen mottaker oppgitt." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ikke send en melding til degselv; bare hvisk det stille til degselv istedet." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Melding sendt" @@ -3696,7 +3495,7 @@ msgid "Confirm" msgstr "Bekreft" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #, fuzzy msgid "Same as password above." @@ -3881,30 +3680,6 @@ msgstr "Avatarmappe" msgid "Directory where avatars are located." msgstr "Mappen avatarer er plassert i." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Bakgrunner" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Tjener for bakgrunner." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Sti til bakgrunner." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Tjener for bakgrunner pÃ¥ SSL-sider." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Sti til bakgrunner pÃ¥ SSL-sider." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Mappen bakgrunner er plassert i." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Vedlegg" @@ -4712,7 +4487,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 eller flere tegn. Og ikke glem det!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4722,18 +4496,6 @@ msgstr "Nullstill" msgid "Enter a nickname or email address." msgstr "Skriv inn et kallenavn eller en e-postadresse." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ingen bruker med den e-postadressen eller det kallenavnet." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ingen registrert e-postadresse for den brukeren." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Feil ved lagring av adressebekreftelse." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5709,6 +5471,14 @@ msgstr "Nettstedsnavnet mÃ¥ være minst ett tegn langt." msgid "You must have a valid contact email address." msgstr "Du mÃ¥ ha en gyldig e-postadresse." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Ugyldig logo-URL." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ugyldig SSL-logo-URL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5784,7 +5554,9 @@ msgid "Default language" msgstr "StandardsprÃ¥k" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "NettstedssprÃ¥k nÃ¥r automatisk identifisering av innstillinger i nettleseren " "ikke er tilgjengelig" @@ -5812,8 +5584,22 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hvor lenge en bruker mÃ¥ vente (i sekund) for Ã¥ poste den samme tingen igjen." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Nettstedslogo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Lagre nettstedsinnstillinger" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6591,43 +6377,6 @@ msgstr "Kan ikke lese avatar-URL ‘%s’" msgid "Wrong image type for avatar URL \"%s\"." msgstr "Feil bildetype for avatar-URL ‘%s’." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Vis profilutseender" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -#, fuzzy -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en fargepalett " -"av ditt valg." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Bon appétit." - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Lagre nettstedsinnstillinger" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Vis profilutseender" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Vis eller skjul profilutseender." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "Bakgrunn" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7075,6 +6824,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ingen bruker med den e-postadressen eller det kallenavnet." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ingen registrert e-postadresse for den brukeren." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Feil ved lagring av adressebekreftelse." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Kunne ikke opprette gruppe." @@ -7347,12 +7108,6 @@ msgstr "showForm() ikke implementert." msgid "saveSettings() not implemented." msgstr "saveSettings() ikke implementert." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#, fuzzy -msgid "Unable to delete design setting." -msgstr "Kunne ikke lagre dine innstillinger for utseende." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7385,18 +7140,6 @@ msgctxt "MENU" msgid "Site" msgstr "Nettsted" -#. TRANS: Menu item title in administrator navigation panel. -#, fuzzy -msgid "Design configuration" -msgstr "Tilgangskonfigurasjon" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Utseende" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Brukerkonfigurasjon" @@ -8274,47 +8017,6 @@ msgstr "Slett" msgid "Delete this user" msgstr "Slett denne brukeren" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Lagre utseende" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Endre farger" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Bruk standard" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Last opp fil" - -#. TRANS: Instructions for form on profile design page. -#, fuzzy -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "PÃ¥" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Av" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#, fuzzy -msgid "Design defaults restored." -msgstr "Utseende lagret." - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8531,13 +8233,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Legg til eller rediger %s logo" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Legg til eller rediger %s utseende" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Gruppehandlinger" @@ -8920,7 +8615,7 @@ msgstr "" "Ikke svar pÃ¥ denne e-posten; det vil ikke nÃ¥ frem til dem.\n" "\n" "Med vennlig hilsen,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9964,10 +9659,6 @@ msgstr "E-post" msgid "Change email handling" msgstr "Endre eposthÃ¥ndtering" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Brukerprofil" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10400,3 +10091,253 @@ msgstr "Ugyldig XML, mangler XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Kan ikke lese avatar-URL ‘%s’" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Feil ved oppdatering av fjernprofil." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Kunne ikke fjerne tilgang for applikasjonen: %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Kunne ikke lagre profil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Klarte ikke Ã¥ oppdatere bruker med bekreftet e-post." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Ugyldig e-postadresse." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Kunne ikke lagre profil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." + +#~ msgid "Could not update your design." +#~ msgstr "Kunne ikke oppdatere din profils utseende." + +#~ msgid "Design" +#~ msgstr "Utseende" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Utseendeinnstillinger for dette StatusNet-nettstedet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema ikke tilgjengelig: %s." + +#~ msgid "Change logo" +#~ msgstr "Endre logo" + +#~ msgid "Change theme" +#~ msgstr "Endre tema" + +#~ msgid "Site theme" +#~ msgstr "Nettstedstema" + +#~ msgid "Theme for the site." +#~ msgstr "Tema for nettstedet." + +#~ msgid "Custom theme" +#~ msgstr "Egendefinert tema" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv." + +#~ msgid "Change background image" +#~ msgstr "Endre bakgrunnsbilde" + +#~ msgid "Background" +#~ msgstr "Bakgrunn" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1" +#~ "$s." + +#~ msgid "On" +#~ msgstr "PÃ¥" + +#~ msgid "Off" +#~ msgstr "Av" + +#~ msgid "Turn background image on or off." +#~ msgstr "SlÃ¥ pÃ¥ eller av bakgrunnsbilde." + +#~ msgid "Tile background image" +#~ msgstr "Gjenta bakgrunnsbildet" + +#~ msgid "Change colors" +#~ msgstr "Endre farger" + +#~ msgid "Content" +#~ msgstr "Innhold" + +#~ msgid "Sidebar" +#~ msgstr "Sidelinje" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Links" +#~ msgstr "Lenker" + +#~ msgid "Advanced" +#~ msgstr "Avansert" + +#~ msgid "Custom CSS" +#~ msgstr "Egendefinert CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Bruk standardinnstillinger" + +#~ msgid "Restore default designs." +#~ msgstr "Gjenopprett standardutseende." + +#~ msgid "Reset back to default." +#~ msgstr "Tilbakestill til standardinnstillinger." + +#~ msgid "Save design." +#~ msgstr "Lagre utseende." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Du mÃ¥ være logget inn for Ã¥ redigere en gruppe." + +#~ msgid "Group design" +#~ msgstr "Gruppeutseende" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en " +#~ "fargepalett av ditt valg." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." + +#~ msgid "Design preferences saved." +#~ msgstr "Utseende lagret." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Ikke send en melding til degselv; bare hvisk det stille til degselv " +#~ "istedet." + +#~ msgid "Backgrounds" +#~ msgstr "Bakgrunner" + +#~ msgid "Server for backgrounds." +#~ msgstr "Tjener for bakgrunner." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Sti til bakgrunner." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Tjener for bakgrunner pÃ¥ SSL-sider." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Sti til bakgrunner pÃ¥ SSL-sider." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Mappen bakgrunner er plassert i." + +#~ msgid "Profile design" +#~ msgstr "Vis profilutseender" + +#, fuzzy +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en " +#~ "fargepalett av ditt valg." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Bon appétit." + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Lagre nettstedsinnstillinger" + +#~ msgid "View profile designs" +#~ msgstr "Vis profilutseender" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Vis eller skjul profilutseender." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "Bakgrunn" + +#, fuzzy +#~ msgid "Unable to delete design setting." +#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." + +#, fuzzy +#~ msgid "Design configuration" +#~ msgstr "Tilgangskonfigurasjon" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Utseende" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Lagre utseende" + +#~ msgid "Change colours" +#~ msgstr "Endre farger" + +#~ msgid "Use defaults" +#~ msgstr "Bruk standard" + +#~ msgid "Upload file" +#~ msgstr "Last opp fil" + +#, fuzzy +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "PÃ¥" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Av" + +#, fuzzy +#~ msgid "Design defaults restored." +#~ msgstr "Utseende lagret." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Legg til eller rediger %s utseende" + +#~ msgid "Design your profile" +#~ msgstr "Brukerprofil" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index c58a0467ad..ec2aabcf2c 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -110,7 +110,6 @@ msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -126,7 +125,6 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -206,7 +204,6 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -375,7 +372,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Het was niet mogelijk de gebruiker bij te werken." @@ -390,7 +386,6 @@ msgstr "Het was niet mogelijk het profiel op te slaan." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -405,24 +400,6 @@ msgstr[1] "" "De server was niet in staat zoveel POST-gegevens te verwerken (%s bytes) " "vanwege de huidige instellingen." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Het was niet mogelijk uw ontwerp bij te werken." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -514,6 +491,8 @@ msgstr "" "vriendenlijst staan." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." @@ -746,7 +725,6 @@ msgstr "groepen op %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "U moet beheerder zijn om de groep te kunnen bewerken." @@ -859,7 +837,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -868,7 +845,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." @@ -1230,7 +1206,6 @@ msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1318,6 +1293,7 @@ msgid "Join request canceled." msgstr "Het verzoek voor lidmaatschap is geweigerd." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s staat niet in de wachtrij voor uw abonnementen." @@ -1476,7 +1452,6 @@ msgstr "Deze bijlage bestaat niet." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1987,150 +1962,6 @@ msgstr "Deze gebruiker niet verwijderen." msgid "Delete this user." msgstr "Deze gebruiker verwijderen." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Uiterlijk" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Instellingen voor de vormgeving van deze StatusNet-website" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "De logo-URL is ongeldig." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "De SSL logo-URL is ongeldig." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "De vormgeving is niet beschikbaar: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Logo wijzigen" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Websitelogo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Vormgeving wijzigen" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Vormgeving website" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Mogelijke vormgevingen voor deze website." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Aangepaste vormgeving" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Achtergrondafbeelding wijzigen" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Achtergrond" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Hier kunt u een achtergrondafbeelding voor de website uploaden. De maximale " -"bestandsgrootte is %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Aan" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Uit" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Achtergrondafbeelding inschakelen of uitschakelen." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Achtergrondafbeelding naast elkaar" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Kleuren wijzigen" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Inhoud" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Menubalk" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Tekst" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Verwijzingen" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Uitgebreid" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Aangepaste CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Standaardinstellingen gebruiken" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Het standaardontwerp toepassen." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "De standaardinstellingen toepassen." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Ontwerp opslaan." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Deze mededeling staat niet op uw favorietenlijst." @@ -2741,31 +2572,6 @@ msgstr "" msgid "No ID." msgstr "Geen ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Groepsontwerp" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"De vormgeving van uw groep aanpassen met een achtergrondafbeelding en een " -"kleurenpalet van uw keuze." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Het was niet mogelijk om uw ontwerpinstellingen bij te werken." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "De ontwerpvoorkeuren zijn opgeslagen." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3431,12 +3237,6 @@ msgstr "Geen inhoud!" msgid "No recipient specified." msgstr "Er is geen ontvanger aangegeven." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Bericht verzonden" @@ -3725,7 +3525,7 @@ msgid "Confirm" msgstr "Bevestigen" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Gelijk aan het wachtwoord hierboven." @@ -3901,30 +3701,6 @@ msgstr "Avatarmap" msgid "Directory where avatars are located." msgstr "Map waar alle avatars worden opgeslagen." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Achtergronden" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Server voor achtergronden." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Webpad naar achtergronden." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Server voor achtergronden op SSL-pagina's." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Webpad naar achtergronden op SSL-pagina's." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Map waar achtergronden worden opgeslagen." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Bijlagen" @@ -4720,7 +4496,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Opnieuw instellen" @@ -4729,20 +4504,6 @@ msgstr "Opnieuw instellen" msgid "Enter a nickname or email address." msgstr "Voer een gebruikersnaam of e-mailadres in." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven " -"gebruikersnaam." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Die gebruiker heeft geen e-mailadres geregistreerd." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5710,6 +5471,14 @@ msgid "You must have a valid contact email address." msgstr "" "U moet een geldig e-mailadres opgeven waarop contact opgenomen kan worden." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "De logo-URL is ongeldig." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "De SSL logo-URL is ongeldig." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5784,7 +5553,9 @@ msgid "Default language" msgstr "Standaardtaal" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "De taal voor de website als deze niet uit de browserinstellingen opgemaakt " "kan worden" @@ -5812,8 +5583,22 @@ msgstr "" "Hoe lang gebruikers moeten wachten (in seconden) voor ze hetzelfde kunnen " "zenden." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Websitelogo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Websiteinstellingen opslaan" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6575,40 +6360,6 @@ msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profielontwerp" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"U kunt de vormgeving van uw profiel aanpassen door een achtergrondafbeelding " -"toe te voegen of het kleurenpalet aan te passen." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Geniet van uw hotdog!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Vormgevingsinstellingen" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Profielontwerpen gebruiken" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Profielontwerpen weergeven of verbergen" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Achtergrondbestand" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7077,6 +6828,20 @@ msgid "Single-user mode code called when not enabled." msgstr "" "De \"single-user\"-modus is aangeroepen terwijl deze niet is ingeschakeld." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven " +"gebruikersnaam." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Die gebruiker heeft geen e-mailadres geregistreerd." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." @@ -7350,11 +7115,6 @@ msgstr "showForm() is niet geïmplementeerd." msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7383,17 +7143,6 @@ msgctxt "MENU" msgid "Site" msgstr "Website" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Instellingen vormgeving" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Uiterlijk" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Gebruikersinstellingen" @@ -8245,44 +7994,6 @@ msgstr "Verwijderen" msgid "Delete this user" msgstr "Gebruiker verwijderen" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Ontwerp wijzigen" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Kleuren wijzigen" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Standaardinstellingen gebruiken" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Bestand uploaden" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " -"bestandsgrootte is 2 megabyte." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Aan" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Uit" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Het standaardontwerp is weer ingesteld." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8494,13 +8205,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Logo voor de groep %s toevoegen of bewerken" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Vormgeving van de groep %s toevoegen of aanpassen" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Groepshandelingen" @@ -9842,10 +9546,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "E-mailafhandeling wijzigen" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Uw profiel ontwerpen" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10268,3 +9968,243 @@ msgstr "Ongeldige XML. De XRD-root mist." #, php-format msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" +"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Er zijn geen diensten aantroffen voor %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Het was niet mogelijk het profiellabel aan te maken." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "De gebruiker %s is niet aangetroffen." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Geen geldig e-mailadres." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Het was niet mogelijk het profiel op te slaan." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." + +#~ msgid "Could not update your design." +#~ msgstr "Het was niet mogelijk uw ontwerp bij te werken." + +#~ msgid "Design" +#~ msgstr "Uiterlijk" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Instellingen voor de vormgeving van deze StatusNet-website" + +#~ msgid "Theme not available: %s." +#~ msgstr "De vormgeving is niet beschikbaar: %s." + +#~ msgid "Change logo" +#~ msgstr "Logo wijzigen" + +#~ msgid "Change theme" +#~ msgstr "Vormgeving wijzigen" + +#~ msgid "Site theme" +#~ msgstr "Vormgeving website" + +#~ msgid "Theme for the site." +#~ msgstr "Mogelijke vormgevingen voor deze website." + +#~ msgid "Custom theme" +#~ msgstr "Aangepaste vormgeving" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief." + +#~ msgid "Change background image" +#~ msgstr "Achtergrondafbeelding wijzigen" + +#~ msgid "Background" +#~ msgstr "Achtergrond" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Hier kunt u een achtergrondafbeelding voor de website uploaden. De " +#~ "maximale bestandsgrootte is %1$s." + +#~ msgid "On" +#~ msgstr "Aan" + +#~ msgid "Off" +#~ msgstr "Uit" + +#~ msgid "Turn background image on or off." +#~ msgstr "Achtergrondafbeelding inschakelen of uitschakelen." + +#~ msgid "Tile background image" +#~ msgstr "Achtergrondafbeelding naast elkaar" + +#~ msgid "Change colors" +#~ msgstr "Kleuren wijzigen" + +#~ msgid "Content" +#~ msgstr "Inhoud" + +#~ msgid "Sidebar" +#~ msgstr "Menubalk" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Links" +#~ msgstr "Verwijzingen" + +#~ msgid "Advanced" +#~ msgstr "Uitgebreid" + +#~ msgid "Custom CSS" +#~ msgstr "Aangepaste CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Standaardinstellingen gebruiken" + +#~ msgid "Restore default designs." +#~ msgstr "Het standaardontwerp toepassen." + +#~ msgid "Reset back to default." +#~ msgstr "De standaardinstellingen toepassen." + +#~ msgid "Save design." +#~ msgstr "Ontwerp opslaan." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." + +#~ msgid "Group design" +#~ msgstr "Groepsontwerp" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "De vormgeving van uw groep aanpassen met een achtergrondafbeelding en een " +#~ "kleurenpalet van uw keuze." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Het was niet mogelijk om uw ontwerpinstellingen bij te werken." + +#~ msgid "Design preferences saved." +#~ msgstr "De ontwerpvoorkeuren zijn opgeslagen." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." + +#~ msgid "Backgrounds" +#~ msgstr "Achtergronden" + +#~ msgid "Server for backgrounds." +#~ msgstr "Server voor achtergronden." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Webpad naar achtergronden." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Server voor achtergronden op SSL-pagina's." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Webpad naar achtergronden op SSL-pagina's." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Map waar achtergronden worden opgeslagen." + +#~ msgid "Profile design" +#~ msgstr "Profielontwerp" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "U kunt de vormgeving van uw profiel aanpassen door een " +#~ "achtergrondafbeelding toe te voegen of het kleurenpalet aan te passen." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Geniet van uw hotdog!" + +#~ msgid "Design settings" +#~ msgstr "Vormgevingsinstellingen" + +#~ msgid "View profile designs" +#~ msgstr "Profielontwerpen gebruiken" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Profielontwerpen weergeven of verbergen" + +#~ msgid "Background file" +#~ msgstr "Achtergrondbestand" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." + +#~ msgid "Design configuration" +#~ msgstr "Instellingen vormgeving" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Uiterlijk" + +#~ msgid "Change design" +#~ msgstr "Ontwerp wijzigen" + +#~ msgid "Change colours" +#~ msgstr "Kleuren wijzigen" + +#~ msgid "Use defaults" +#~ msgstr "Standaardinstellingen gebruiken" + +#~ msgid "Upload file" +#~ msgstr "Bestand uploaden" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " +#~ "bestandsgrootte is 2 megabyte." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Aan" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Uit" + +#~ msgid "Design defaults restored." +#~ msgstr "Het standaardontwerp is weer ingesteld." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Vormgeving van de groep %s toevoegen of aanpassen" + +#~ msgid "Design your profile" +#~ msgstr "Uw profiel ontwerpen" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index d0f4a86ec9..813e3bfb33 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Last-Translator: Piotr DrÄ…g \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -105,7 +105,6 @@ msgid "Save access settings" msgstr "Zapisz ustawienia dostÄ™pu" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -121,7 +120,6 @@ msgstr "Zapisz ustawienia dostÄ™pu" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -198,7 +196,6 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -366,7 +363,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Nie można zaktualizować użytkownika." @@ -381,7 +377,6 @@ msgstr "Nie można zapisać profilu." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -399,24 +394,6 @@ msgstr[2] "" "Serwer nie może obsÅ‚użyć aż tylu danych POST (%s bajtów) z powodu bieżącej " "konfiguracji." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Nie można zaktualizować wyglÄ…du." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -510,6 +487,8 @@ msgstr "" "twoimi przyjaciółmi." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyÅ‚aj wiadomoÅ›ci do siebie, po prostu powiedz to sobie po cichu." @@ -741,7 +720,6 @@ msgstr "grupy na %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Musisz być administratorem, aby zmodyfikować grupÄ™." @@ -857,7 +835,6 @@ msgstr "Błąd bazy danych podczas wprowadzania oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -866,7 +843,6 @@ msgstr "Błąd bazy danych podczas wprowadzania oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Nieoczekiwane wysÅ‚anie formularza." @@ -1228,7 +1204,6 @@ msgstr "Musisz być zalogowany, aby opuÅ›cić grupÄ™." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1314,6 +1289,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Lista użytkowników znajdujÄ…cych siÄ™ w tej grupie." @@ -1466,7 +1442,6 @@ msgstr "Nie ma takiego załącznika." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1986,151 +1961,6 @@ msgstr "Nie usuwaj tego użytkownika" msgid "Delete this user." msgstr "UsuÅ„ tego użytkownika" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "WyglÄ…d" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Ustawienia wyglÄ…du tej witryny StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "NieprawidÅ‚owy adres URL logo." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "NieprawidÅ‚owy adres URL logo SSL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Motyw nie jest dostÄ™pny: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "ZmieÅ„ logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo witryny" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "ZmieÅ„ motyw" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Motyw witryny" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Motyw witryny." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "WÅ‚asny motyw" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Można wysÅ‚ać wÅ‚asny motyw witryny StatusNet jako archiwum zip." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "ZmieÅ„ obraz tÅ‚a" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "TÅ‚o" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "Można wysÅ‚ać obraz tÅ‚a dla witryny. Maksymalny rozmiar pliku to %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Włączone" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Wyłączone" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Włącz lub wyłącz obraz tÅ‚a." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Kafelkowy obraz tÅ‚a" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "ZmieÅ„ kolory" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Treść" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Panel boczny" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Tekst" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "OdnoÅ›niki" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Zaawansowane" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "WÅ‚asny plik CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Użyj domyÅ›lne" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "Przywróć domyÅ›lny wyglÄ…d" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "Przywróć domyÅ›lne ustawienia" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#, fuzzy -msgid "Save design." -msgstr "Zapisz wyglÄ…d" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Ten wpis nie jest ulubiony." @@ -2739,30 +2569,6 @@ msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." msgid "No ID." msgstr "Brak identyfikatora." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Musisz być zalogowany, aby zmodyfikować grupÄ™." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "WyglÄ…d grupy" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "Dostosuj wyglÄ…d grupy za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Zapisano preferencje wyglÄ…du." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3451,12 +3257,6 @@ msgstr "Brak treÅ›ci." msgid "No recipient specified." msgstr "Nie podano odbiorcy." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Nie wysyÅ‚aj wiadomoÅ›ci do siebie, po prostu powiedz to sobie po cichu." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "WysÅ‚ano wiadomość" @@ -3743,7 +3543,7 @@ msgid "Confirm" msgstr "Potwierdź" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Takie samo jak powyższe hasÅ‚o." @@ -3926,30 +3726,6 @@ msgstr "Katalog awatara" msgid "Directory where avatars are located." msgstr "Katalog, w którym poÅ‚ożone sÄ… awatary." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "TÅ‚a" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Serwer teÅ‚." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Åšcieżka WWW do teÅ‚." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Serwer teÅ‚ na stronach SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Åšcieżka WWW do teÅ‚ na stronach SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Katalog, w którym poÅ‚ożone sÄ… tÅ‚a." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Załączniki" @@ -4761,7 +4537,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 lub wiÄ™cej znaków, i nie zapomnij go." #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Przywróć" @@ -4770,18 +4545,6 @@ msgstr "Przywróć" msgid "Enter a nickname or email address." msgstr "Podaj pseudonim lub adres e-mail." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Brak użytkownika z tym adresem e-mail lub nazwÄ… użytkownika." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Błąd podczas zapisywania potwierdzenia adresu." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5765,6 +5528,14 @@ msgstr "Nazwa witryny nie może mieć zerowÄ… dÅ‚ugość." msgid "You must have a valid contact email address." msgstr "Należy posiadać prawidÅ‚owy kontaktowy adres e-mail." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "NieprawidÅ‚owy adres URL logo." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "NieprawidÅ‚owy adres URL logo SSL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5842,7 +5613,9 @@ msgid "Default language" msgstr "DomyÅ›lny jÄ™zyk" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "JÄ™zyk witryny, kiedy automatyczne wykrywanie z ustawieÅ„ przeglÄ…darki nie " "jest dostÄ™pne" @@ -5871,8 +5644,22 @@ msgstr "" "Ile czasu użytkownicy muszÄ… czekać (w sekundach), aby ponownie wysÅ‚ać to " "samo." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo witryny" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Zapisz ustawienia witryny" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6661,41 +6448,6 @@ msgstr "Nie można odczytać adresu URL awatara \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "WyglÄ…d profilu" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Dostosuj wyglÄ…d profilu za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Smacznego hot-doga." - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Zapisz ustawienia witryny" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "WyÅ›wietl ustawienia wyglÄ…du profilu" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "WyÅ›wietl lub ukryj ustawienia wyglÄ…du profilu." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "TÅ‚o" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7171,6 +6923,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "WywoÅ‚ano kod pojedynczego użytkownika, kiedy nie byÅ‚ włączony." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Brak użytkownika z tym adresem e-mail lub nazwÄ… użytkownika." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Błąd podczas zapisywania potwierdzenia adresu." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Nie można utworzyć grupy." @@ -7448,11 +7212,6 @@ msgstr "showForm() nie jest zaimplementowane." msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Nie można usunąć ustawienia wyglÄ…du." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7484,17 +7243,6 @@ msgctxt "MENU" msgid "Site" msgstr "Witryna" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Konfiguracja wyglÄ…du" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "WyglÄ…d" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguracja użytkownika" @@ -8364,43 +8112,6 @@ msgstr "UsuÅ„" msgid "Delete this user" msgstr "UsuÅ„ tego użytkownika" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Zapisz wyglÄ…d" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "ZmieÅ„ kolory" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Użycie domyÅ›lnych" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "WyÅ›lij plik" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "Można wysÅ‚ać osobisty obraz tÅ‚a. Maksymalny rozmiar pliku to 2 MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Włączone" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Wyłączone" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Przywrócono domyÅ›lny wyglÄ…d." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8625,13 +8336,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Dodanie lub modyfikacja loga grupy %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Dodanie lub modyfikacja wyglÄ…du grupy %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "DziaÅ‚ania grupy" @@ -9021,7 +8725,7 @@ msgstr "" "Nie odpowiadaj na tÄ™ wiadomość e-mail, nie dotrze ona do nich.\n" "\n" "Z poważaniem,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10052,10 +9756,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "ZmieÅ„ obsÅ‚ugÄ™ adresu e-mail" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "WyglÄ…d profilu" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10504,3 +10204,245 @@ msgstr "NieprawidÅ‚owy kod XML, brak głównego XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Nie można odczytać adresu URL awatara \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Błąd podczas aktualizowania zdalnego profilu." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Nie można odnaleźć usÅ‚ug dla %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Nie można zapisać profilu." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Nie można odnaleźć użytkownika z pseudonimem %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "To nie jest prawidÅ‚owy adres e-mail." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Nie można zapisać profilu." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." + +#~ msgid "Could not update your design." +#~ msgstr "Nie można zaktualizować wyglÄ…du." + +#~ msgid "Design" +#~ msgstr "WyglÄ…d" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Ustawienia wyglÄ…du tej witryny StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Motyw nie jest dostÄ™pny: %s." + +#~ msgid "Change logo" +#~ msgstr "ZmieÅ„ logo" + +#~ msgid "Change theme" +#~ msgstr "ZmieÅ„ motyw" + +#~ msgid "Site theme" +#~ msgstr "Motyw witryny" + +#~ msgid "Theme for the site." +#~ msgstr "Motyw witryny." + +#~ msgid "Custom theme" +#~ msgstr "WÅ‚asny motyw" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Można wysÅ‚ać wÅ‚asny motyw witryny StatusNet jako archiwum zip." + +#~ msgid "Change background image" +#~ msgstr "ZmieÅ„ obraz tÅ‚a" + +#~ msgid "Background" +#~ msgstr "TÅ‚o" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Można wysÅ‚ać obraz tÅ‚a dla witryny. Maksymalny rozmiar pliku to %1$s." + +#~ msgid "On" +#~ msgstr "Włączone" + +#~ msgid "Off" +#~ msgstr "Wyłączone" + +#~ msgid "Turn background image on or off." +#~ msgstr "Włącz lub wyłącz obraz tÅ‚a." + +#~ msgid "Tile background image" +#~ msgstr "Kafelkowy obraz tÅ‚a" + +#~ msgid "Change colors" +#~ msgstr "ZmieÅ„ kolory" + +#~ msgid "Content" +#~ msgstr "Treść" + +#~ msgid "Sidebar" +#~ msgstr "Panel boczny" + +#~ msgid "Text" +#~ msgstr "Tekst" + +#~ msgid "Links" +#~ msgstr "OdnoÅ›niki" + +#~ msgid "Advanced" +#~ msgstr "Zaawansowane" + +#~ msgid "Custom CSS" +#~ msgstr "WÅ‚asny plik CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Użyj domyÅ›lne" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "Przywróć domyÅ›lny wyglÄ…d" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "Przywróć domyÅ›lne ustawienia" + +#, fuzzy +#~ msgid "Save design." +#~ msgstr "Zapisz wyglÄ…d" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Musisz być zalogowany, aby zmodyfikować grupÄ™." + +#~ msgid "Group design" +#~ msgstr "WyglÄ…d grupy" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Dostosuj wyglÄ…d grupy za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." + +#~ msgid "Design preferences saved." +#~ msgstr "Zapisano preferencje wyglÄ…du." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Nie wysyÅ‚aj wiadomoÅ›ci do siebie, po prostu powiedz to sobie po cichu." + +#~ msgid "Backgrounds" +#~ msgstr "TÅ‚a" + +#~ msgid "Server for backgrounds." +#~ msgstr "Serwer teÅ‚." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Åšcieżka WWW do teÅ‚." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Serwer teÅ‚ na stronach SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Åšcieżka WWW do teÅ‚ na stronach SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Katalog, w którym poÅ‚ożone sÄ… tÅ‚a." + +#~ msgid "Profile design" +#~ msgstr "WyglÄ…d profilu" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Dostosuj wyglÄ…d profilu za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Smacznego hot-doga." + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Zapisz ustawienia witryny" + +#~ msgid "View profile designs" +#~ msgstr "WyÅ›wietl ustawienia wyglÄ…du profilu" + +#~ msgid "Show or hide profile designs." +#~ msgstr "WyÅ›wietl lub ukryj ustawienia wyglÄ…du profilu." + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "TÅ‚o" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Nie można usunąć ustawienia wyglÄ…du." + +#~ msgid "Design configuration" +#~ msgstr "Konfiguracja wyglÄ…du" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "WyglÄ…d" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Zapisz wyglÄ…d" + +#~ msgid "Change colours" +#~ msgstr "ZmieÅ„ kolory" + +#~ msgid "Use defaults" +#~ msgstr "Użycie domyÅ›lnych" + +#~ msgid "Upload file" +#~ msgstr "WyÅ›lij plik" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "Można wysÅ‚ać osobisty obraz tÅ‚a. Maksymalny rozmiar pliku to 2 MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Włączone" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Wyłączone" + +#~ msgid "Design defaults restored." +#~ msgstr "Przywrócono domyÅ›lny wyglÄ…d." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Dodanie lub modyfikacja wyglÄ…du grupy %s" + +#~ msgid "Design your profile" +#~ msgstr "WyglÄ…d profilu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 5b310f17ad..48c40390b5 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -109,7 +109,6 @@ msgid "Save access settings" msgstr "Gravar configurações de acesso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -125,7 +124,6 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -200,7 +198,6 @@ msgstr "Página não foi encontrada." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -367,7 +364,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Não foi possível actualizar o utilizador." @@ -382,7 +378,6 @@ msgstr "Não foi possível gravar o perfil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -397,24 +392,6 @@ msgstr[1] "" "O servidor não conseguiu processar tantos dados POST (%s bytes) devido à sua " "configuração actual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Não foi possível gravar as configurações do estilo." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Não foi possível actualizar o seu estilo." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -505,6 +482,8 @@ msgstr "" "Não pode enviar mensagens directas a utilizadores que não sejam amigos." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." @@ -734,7 +713,6 @@ msgstr "Grupos em %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Tem de ser administrador para editar o grupo." @@ -850,7 +828,6 @@ msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -859,7 +836,6 @@ msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Envio inesperado de formulário." @@ -1212,7 +1188,6 @@ msgstr "Tem de iniciar uma sessão para deixar um grupo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1298,6 +1273,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "Uma lista dos utilizadores neste grupo." @@ -1451,7 +1427,6 @@ msgstr "Anexo não foi encontrado." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1953,152 +1928,6 @@ msgstr "Não apagues este utilizador." msgid "Delete this user." msgstr "Apagar este utilizador." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Estilo" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "URL do logotipo inválida." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "URL SSL do logotipo inválido." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema não está disponível: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Alterar logotipo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logotipo do site" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logótipo SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Alterar tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema do site" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "O tema para o site." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Tema personalizado" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Pode fazer o upload de um tema personalizado para o StatusNet, na forma de " -"um arquivo .ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Alterar imagem de fundo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fundo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Pode carregar uma imagem de fundo para o site. O tamanho máximo do ficheiro " -"é %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Ligar" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Desligar" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Ligar ou desligar a imagem de fundo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Repetir imagem de fundo em mosaico" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Alterar cores" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Conteúdo" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Links" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avançado" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalizado" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Usar padrão" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Restaurar designs padrão." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Repor para o padrão." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Salvar o design." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Esta nota não é uma favorita!" @@ -2710,32 +2539,6 @@ msgstr "Erro na base de dados ao bloquear acesso do utilizador ao grupo." msgid "No ID." msgstr "Sem ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Tem de iniciar uma sessão para editar um grupo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Estilo do grupo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de " -"cores à sua escolha." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#, fuzzy -msgid "Unable to update your design settings." -msgstr "Não foi possível gravar as configurações do estilo." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Preferências de estilo foram gravadas." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3416,12 +3219,6 @@ msgstr "Sem conteúdo!" msgid "No recipient specified." msgstr "Não especificou um destinatário." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Mensagem enviada" @@ -3705,7 +3502,7 @@ msgid "Confirm" msgstr "Confirmação" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Repita a nova senha." @@ -3891,31 +3688,6 @@ msgstr "Directório do avatar" msgid "Directory where avatars are located." msgstr "Localização do directório das línguas" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Fundos" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Servidor para os fundos." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Directory where backgrounds are located." -msgstr "Localização do directório das línguas" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Anexos" @@ -4732,7 +4504,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 ou mais caracteres, e não a esqueça!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. #, fuzzy msgctxt "BUTTON" msgid "Reset" @@ -4742,19 +4513,6 @@ msgstr "Reiniciar" msgid "Enter a nickname or email address." msgstr "Introduza um utilizador ou um endereço de correio electrónico." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Não existe nenhum utilizador com esse correio electrónico nem com esse nome." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Nenhum endereço de email registado para esse utilizador." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Erro ao guardar confirmação do endereço." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5741,6 +5499,14 @@ msgstr "Nome do site não pode ter comprimento zero." msgid "You must have a valid contact email address." msgstr "Tem de ter um endereço válido para o correio electrónico de contacto." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "URL do logotipo inválida." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "URL SSL do logotipo inválido." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5818,7 +5584,9 @@ msgid "Default language" msgstr "Língua, por omissão" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Língua do site quando a sua detecção na configuração do browser não é " "possível" @@ -5847,8 +5615,22 @@ msgstr "" "Quanto tempo os utilizadores terão de esperar (em segundos) para publicar a " "mesma coisa outra vez." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logótipo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logotipo do site" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logótipo SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Gravar configurações do site" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6642,41 +6424,6 @@ msgstr "Não é possível ler a URL do avatar ‘%s’." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagem incorrecto para o avatar da URL ‘%s’." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Estilo do perfil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalize o estilo do seu perfil com uma imagem de fundo e uma paleta de " -"cores à sua escolha." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Disfrute do seu cachorro-quente!" - -#. TRANS: Form legend on Profile design page. -#, fuzzy -msgid "Design settings" -msgstr "Gravar configurações do site" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Ver estilos para o perfil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Mostrar ou esconder estilos para o perfil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Ficheiro de fundo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7142,6 +6889,19 @@ msgstr "Nenhum utilizador único definido para o modo de utilizador único." msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Não existe nenhum utilizador com esse correio electrónico nem com esse nome." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Nenhum endereço de email registado para esse utilizador." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Erro ao guardar confirmação do endereço." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Não foi possível criar o grupo." @@ -7422,11 +7182,6 @@ msgstr "showForm() não implementado." msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Não foi possível apagar a configuração do estilo." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7458,17 +7213,6 @@ msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuração do estilo" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Estilo" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do utilizador" @@ -8335,47 +8079,6 @@ msgstr "Apagar" msgid "Delete this user" msgstr "Apagar este utilizador" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "Gravar o estilo" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Alterar cores" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Usar predefinições" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Carregar ficheiro" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "On" -msgstr "Ligar" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#, fuzzy -msgctxt "RADIO" -msgid "Off" -msgstr "Desligar" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Predefinições do estilo repostas" - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8592,13 +8295,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Adicionar ou editar o logótipo de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Adicionar ou editar o design de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Acções do grupo" @@ -8985,7 +8681,7 @@ msgstr "" "Não responda a esta mensagem; o remetente não a receberá.\n" "\n" "Profusos cumprimentos,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -10019,10 +9715,6 @@ msgstr "Correio" msgid "Change email handling" msgstr "Alterar manuseamento de email" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Altere o estilo do seu perfil" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10462,3 +10154,238 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Não é possível ler a URL do avatar ‘%s’." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Erro ao actualizar o perfil remoto." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Não foi possível retirar acesso da aplicação: %s" + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Não foi possível gravar o perfil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Não foi encontrado um utilizador com o nome %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Correio electrónico é inválido." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Não foi possível gravar o perfil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Não foi possível gravar as configurações do estilo." + +#~ msgid "Could not update your design." +#~ msgstr "Não foi possível actualizar o seu estilo." + +#~ msgid "Design" +#~ msgstr "Estilo" + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema não está disponível: %s." + +#~ msgid "Change logo" +#~ msgstr "Alterar logotipo" + +#~ msgid "Change theme" +#~ msgstr "Alterar tema" + +#~ msgid "Site theme" +#~ msgstr "Tema do site" + +#~ msgid "Theme for the site." +#~ msgstr "O tema para o site." + +#~ msgid "Custom theme" +#~ msgstr "Tema personalizado" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Pode fazer o upload de um tema personalizado para o StatusNet, na forma " +#~ "de um arquivo .ZIP." + +#~ msgid "Change background image" +#~ msgstr "Alterar imagem de fundo" + +#~ msgid "Background" +#~ msgstr "Fundo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Pode carregar uma imagem de fundo para o site. O tamanho máximo do " +#~ "ficheiro é %1$s." + +#~ msgid "On" +#~ msgstr "Ligar" + +#~ msgid "Off" +#~ msgstr "Desligar" + +#~ msgid "Turn background image on or off." +#~ msgstr "Ligar ou desligar a imagem de fundo." + +#~ msgid "Tile background image" +#~ msgstr "Repetir imagem de fundo em mosaico" + +#~ msgid "Change colors" +#~ msgstr "Alterar cores" + +#~ msgid "Content" +#~ msgstr "Conteúdo" + +#~ msgid "Sidebar" +#~ msgstr "Barra" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Links" +#~ msgstr "Links" + +#~ msgid "Advanced" +#~ msgstr "Avançado" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalizado" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Usar padrão" + +#~ msgid "Restore default designs." +#~ msgstr "Restaurar designs padrão." + +#~ msgid "Reset back to default." +#~ msgstr "Repor para o padrão." + +#~ msgid "Save design." +#~ msgstr "Salvar o design." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Tem de iniciar uma sessão para editar um grupo." + +#~ msgid "Group design" +#~ msgstr "Estilo do grupo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta " +#~ "de cores à sua escolha." + +#, fuzzy +#~ msgid "Unable to update your design settings." +#~ msgstr "Não foi possível gravar as configurações do estilo." + +#~ msgid "Design preferences saved." +#~ msgstr "Preferências de estilo foram gravadas." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." + +#~ msgid "Backgrounds" +#~ msgstr "Fundos" + +#~ msgid "Server for backgrounds." +#~ msgstr "Servidor para os fundos." + +#, fuzzy +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Localização do directório das línguas" + +#~ msgid "Profile design" +#~ msgstr "Estilo do perfil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalize o estilo do seu perfil com uma imagem de fundo e uma paleta " +#~ "de cores à sua escolha." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Disfrute do seu cachorro-quente!" + +#, fuzzy +#~ msgid "Design settings" +#~ msgstr "Gravar configurações do site" + +#~ msgid "View profile designs" +#~ msgstr "Ver estilos para o perfil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Mostrar ou esconder estilos para o perfil." + +#~ msgid "Background file" +#~ msgstr "Ficheiro de fundo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Não foi possível apagar a configuração do estilo." + +#~ msgid "Design configuration" +#~ msgstr "Configuração do estilo" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Estilo" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "Gravar o estilo" + +#~ msgid "Change colours" +#~ msgstr "Alterar cores" + +#~ msgid "Use defaults" +#~ msgstr "Usar predefinições" + +#~ msgid "Upload file" +#~ msgstr "Carregar ficheiro" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " +#~ "2MB." + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Ligar" + +#, fuzzy +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Desligar" + +#~ msgid "Design defaults restored." +#~ msgstr "Predefinições do estilo repostas" + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Adicionar ou editar o design de %s" + +#~ msgid "Design your profile" +#~ msgstr "Altere o estilo do seu perfil" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index e3faeacfec..ec1ce8ce72 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,18 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:45+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +115,6 @@ msgid "Save access settings" msgstr "Salvar as configurações de acesso" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -131,7 +130,6 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -206,7 +204,6 @@ msgstr "Esta página não existe." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -376,7 +373,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Não foi possível atualizar o usuário." @@ -391,7 +387,6 @@ msgstr "Não foi possível salvar o perfil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -406,24 +401,6 @@ msgstr[1] "" "O servidor não conseguiu manipular a quantidade de dados do POST (%s bytes) " "devido à sua configuração atual." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Não foi possível salvar suas configurações de aparência." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Não foi possível atualizar a sua aparência." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -517,6 +494,8 @@ msgstr "" "amigos." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -747,7 +726,6 @@ msgstr "grupos no %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Você deve ser um administrador para editar o grupo." @@ -858,7 +836,6 @@ msgstr "Erro no banco de dados durante a inserção de oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -867,7 +844,6 @@ msgstr "Erro no banco de dados durante a inserção de oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." @@ -1225,7 +1201,6 @@ msgstr "Você deve estar autenticado para sair de um grupo." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1313,6 +1288,7 @@ msgid "Join request canceled." msgstr "A solicitação de entrada foi cancelada." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s não está na fila de moderação das suas assinaturas." @@ -1464,7 +1440,6 @@ msgstr "Este anexo não existe." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1975,152 +1950,6 @@ msgstr "Não excluir este este usuário." msgid "Delete this user." msgstr "Excluir este usuário." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Aparência" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Configurações da aparência deste site StatusNet." - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "A URL da logo é inválida." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "A URL da logo SSL é inválida." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema não disponível: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Alterar a logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo do site" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo do SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Alterar o tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema do site" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema para o site." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Tema personalizado" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Você pode enviar um tema personalizado para o StatusNet, na forma de um " -"arquivo .zip." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Alterar imagem do fundo" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Fundo" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Você pode enviar uma imagem de fundo para o site. O tamanho máximo do " -"arquivo é de %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Ativado" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Desativado" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Ativar/desativar a imagem de fundo." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Ladrilhar a imagem de fundo" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Alterar as cores" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Conteúdo" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Barra lateral" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Texto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Links" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avançado" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "CSS personalizado" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Usar o padrão" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Restaurar a aparência padrão." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Restaurar de volta ao padrão." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Salvar a aparência." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Esta mensagem não é uma favorita!" @@ -2729,31 +2558,6 @@ msgstr "" msgid "No ID." msgstr "Nenhuma ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Você precisa estar autenticado para editar um grupo." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Aparência do grupo" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalize a aparência do grupo com uma imagem de fundo e uma paleta de " -"cores à sua escolha." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Não foi possível atualizar suas configurações de aparência." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "As configurações da aparência foram salvas." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3420,14 +3224,6 @@ msgstr "Nenhum conteúdo!" msgid "No recipient specified." msgstr "Não foi especificado nenhum destinatário." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Não envie mensagens para você mesmo(a); ao invés disso, apenas diga-a para " -"si, discretamente." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "A mensagem foi enviada" @@ -3712,7 +3508,7 @@ msgid "Confirm" msgstr "Confirmar" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Igual à senha acima." @@ -3889,30 +3685,6 @@ msgstr "Diretório dos avatares" msgid "Directory where avatars are located." msgstr "Diretório onde os avatares estão localizados." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Imagens de fundo" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Servidor para as imagens de fundo." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Caminho web para os planos de fundo." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Servidor para planos de fundo nas páginas SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Caminho web para planos de fundo nas páginas SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Diretório onde os planos de fundo estão localizados." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Anexos" @@ -4708,7 +4480,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Restaurar" @@ -4717,20 +4488,6 @@ msgstr "Restaurar" msgid "Enter a nickname or email address." msgstr "Digite a identificação ou endereço de e-mail." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Não foi encontrado nenhum usuário com essa identificação ou endereço de " -"email." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Nenhum endereço de e-mail registrado para esse usuário." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Erro ao salvar o endereço de confirmação." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5695,6 +5452,14 @@ msgstr "Você deve digitar alguma coisa para o nome do site." msgid "You must have a valid contact email address." msgstr "Você deve ter um endereço de e-mail para contato válido." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "A URL da logo é inválida." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "A URL da logo SSL é inválida." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5765,7 +5530,9 @@ msgid "Default language" msgstr "Idioma padrão" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Idioma do site quando as configurações de autodetecção a partir do navegador " "não estiverem disponíveis" @@ -5793,8 +5560,22 @@ msgstr "" "Quanto tempo (em segundos) os usuários devem esperar para publicar a mesma " "coisa novamente." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotipo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo do site" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo do SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Salvar as configurações do site" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6563,40 +6344,6 @@ msgstr "Não é possível ler a URL de avatar \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Tipo de imagem errado para a URL de avatar \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Aparência do perfil" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Personalize a aparência do seu perfil, com uma imagem de fundo e uma paleta " -"de cores da sua preferência." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Aproveite o seu cachorro-quente!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Configurações da aparência" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Visualizar aparências do perfil" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Exibir ou esconder as aparências do perfil." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Arquivo da imagem de fundo" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7047,6 +6794,20 @@ msgstr "Nenhum usuário definido para o modo de usuário único." msgid "Single-user mode code called when not enabled." msgstr "Código de modo mono-usuário requisitado, mas sem estar habilitado." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Não foi encontrado nenhum usuário com essa identificação ou endereço de " +"email." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Nenhum endereço de e-mail registrado para esse usuário." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Erro ao salvar o endereço de confirmação." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Não foi possível criar o grupo." @@ -7315,11 +7076,6 @@ msgstr "showForm() não implementado." msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Não foi possível excluir as configurações da aparência." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #, fuzzy @@ -7350,17 +7106,6 @@ msgctxt "MENU" msgid "Site" msgstr "Site" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Configuração da aparência" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Aparência" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Configuração do usuário" @@ -8205,43 +7950,6 @@ msgstr "Excluir" msgid "Delete this user" msgstr "Excluir este usuário" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Alterar a aparência" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Alterar a cor" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Usar o padrão|" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Enviar arquivo" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Você pode enviar sua imagem de fundo. O tamanho máximo do arquivo é de 2Mb." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Habilitar" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Desabilitar" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "A aparência padrão foi restaurada." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8456,13 +8164,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Adicionar ou editar o logotipo de %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Adicionar ou editar a aparência de %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Ações do grupo" @@ -9852,10 +9553,6 @@ msgstr "E-mail" msgid "Change email handling" msgstr "Configurações de uso do e-mail" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Mude a aparência do seu perfil" - #. TRANS: Menu item in settings navigation panel. #, fuzzy msgctxt "MENU" @@ -10292,3 +9989,246 @@ msgstr "XML inválido, raiz XRD perdida." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtendo um backup do arquivo '%s'." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Não é possível ler a URL de avatar \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Ocorreu um erro durante a atualização do perfil remoto." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Não foi possível encontrar serviços para %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Não foi possível criar a etiqueta de perfil." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Não foi possível encontrar nenhum usuário com a identificação %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Não é um endereço de e-mail válido." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Não foi possível salvar o perfil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Não foi possível salvar suas configurações de aparência." + +#~ msgid "Could not update your design." +#~ msgstr "Não foi possível atualizar a sua aparência." + +#~ msgid "Design" +#~ msgstr "Aparência" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Configurações da aparência deste site StatusNet." + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema não disponível: %s." + +#~ msgid "Change logo" +#~ msgstr "Alterar a logo" + +#~ msgid "Change theme" +#~ msgstr "Alterar o tema" + +#~ msgid "Site theme" +#~ msgstr "Tema do site" + +#~ msgid "Theme for the site." +#~ msgstr "Tema para o site." + +#~ msgid "Custom theme" +#~ msgstr "Tema personalizado" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Você pode enviar um tema personalizado para o StatusNet, na forma de um " +#~ "arquivo .zip." + +#~ msgid "Change background image" +#~ msgstr "Alterar imagem do fundo" + +#~ msgid "Background" +#~ msgstr "Fundo" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Você pode enviar uma imagem de fundo para o site. O tamanho máximo do " +#~ "arquivo é de %1$s." + +#~ msgid "On" +#~ msgstr "Ativado" + +#~ msgid "Off" +#~ msgstr "Desativado" + +#~ msgid "Turn background image on or off." +#~ msgstr "Ativar/desativar a imagem de fundo." + +#~ msgid "Tile background image" +#~ msgstr "Ladrilhar a imagem de fundo" + +#~ msgid "Change colors" +#~ msgstr "Alterar as cores" + +#~ msgid "Content" +#~ msgstr "Conteúdo" + +#~ msgid "Sidebar" +#~ msgstr "Barra lateral" + +#~ msgid "Text" +#~ msgstr "Texto" + +#~ msgid "Links" +#~ msgstr "Links" + +#~ msgid "Advanced" +#~ msgstr "Avançado" + +#~ msgid "Custom CSS" +#~ msgstr "CSS personalizado" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Usar o padrão" + +#~ msgid "Restore default designs." +#~ msgstr "Restaurar a aparência padrão." + +#~ msgid "Reset back to default." +#~ msgstr "Restaurar de volta ao padrão." + +#~ msgid "Save design." +#~ msgstr "Salvar a aparência." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Você precisa estar autenticado para editar um grupo." + +#~ msgid "Group design" +#~ msgstr "Aparência do grupo" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalize a aparência do grupo com uma imagem de fundo e uma paleta de " +#~ "cores à sua escolha." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Não foi possível atualizar suas configurações de aparência." + +#~ msgid "Design preferences saved." +#~ msgstr "As configurações da aparência foram salvas." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Não envie mensagens para você mesmo(a); ao invés disso, apenas diga-a " +#~ "para si, discretamente." + +#~ msgid "Backgrounds" +#~ msgstr "Imagens de fundo" + +#~ msgid "Server for backgrounds." +#~ msgstr "Servidor para as imagens de fundo." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Caminho web para os planos de fundo." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Servidor para planos de fundo nas páginas SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Caminho web para planos de fundo nas páginas SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Diretório onde os planos de fundo estão localizados." + +#~ msgid "Profile design" +#~ msgstr "Aparência do perfil" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Personalize a aparência do seu perfil, com uma imagem de fundo e uma " +#~ "paleta de cores da sua preferência." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Aproveite o seu cachorro-quente!" + +#~ msgid "Design settings" +#~ msgstr "Configurações da aparência" + +#~ msgid "View profile designs" +#~ msgstr "Visualizar aparências do perfil" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Exibir ou esconder as aparências do perfil." + +#~ msgid "Background file" +#~ msgstr "Arquivo da imagem de fundo" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Não foi possível excluir as configurações da aparência." + +#~ msgid "Design configuration" +#~ msgstr "Configuração da aparência" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Aparência" + +#~ msgid "Change design" +#~ msgstr "Alterar a aparência" + +#~ msgid "Change colours" +#~ msgstr "Alterar a cor" + +#~ msgid "Use defaults" +#~ msgstr "Usar o padrão|" + +#~ msgid "Upload file" +#~ msgstr "Enviar arquivo" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Você pode enviar sua imagem de fundo. O tamanho máximo do arquivo é de " +#~ "2Mb." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Habilitar" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Desabilitar" + +#~ msgid "Design defaults restored." +#~ msgstr "A aparência padrão foi restaurada." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Adicionar ou editar a aparência de %s" + +#~ msgid "Design your profile" +#~ msgstr "Mude a aparência do seu perfil" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index f7cca0d976..843d6bc124 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\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" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -118,7 +118,6 @@ msgid "Save access settings" msgstr "Сохранить наÑтройки доÑтупа" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -134,7 +133,6 @@ msgstr "Сохранить наÑтройки доÑтупа" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -209,7 +207,6 @@ msgstr "Ðет такой Ñтраницы." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -375,7 +372,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ пользователÑ." @@ -390,7 +386,6 @@ msgstr "Ðе удаётÑÑ Ñохранить профиль." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -408,24 +403,6 @@ msgstr[2] "" "Сервер не Ñмог обработать Ñтолько POST-данных (%s байт) из-за текущей " "конфигурации." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Ðе удаётÑÑ Ñохранить ваши наÑтройки оформлениÑ!" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваше оформление." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -518,6 +495,8 @@ msgstr "" "вашим другом." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Ðе поÑылайте ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ñами Ñебе; проÑто потихоньку Ñкажите Ñто Ñебе." @@ -750,7 +729,6 @@ msgstr "группы на %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Ð’Ñ‹ должны быть админиÑтратором, чтобы изменÑть информацию о группе." @@ -862,7 +840,6 @@ msgstr "Ошибка базы данных при вÑтавке oauth_token_ass #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -871,7 +848,6 @@ msgstr "Ошибка базы данных при вÑтавке oauth_token_ass #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Ðетиповое подтверждение формы." @@ -1231,7 +1207,6 @@ msgstr "Ð’Ñ‹ должны авторизоватьÑÑ, чтобы покину #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1318,6 +1293,7 @@ msgid "Join request canceled." msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° приÑоединение отменён." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s отÑутÑтвует в очереди ожидающих Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ñреди ваших подпиÑок." @@ -1469,7 +1445,6 @@ msgstr "Ðет такого вложениÑ." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1981,150 +1956,6 @@ msgstr "Ðе удалÑть Ñтого пользователÑ." msgid "Delete this user." msgstr "Удалить Ñтого пользователÑ." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Оформление" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñтого Ñайта StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Ðеверный URL логотипа." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ðеверный URL логотипа SSL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Тема не доÑтупна: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Изменить логотип" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Логотип Ñайта" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Логотип SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Изменить тему" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Тема Ñайта" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Тема Ð´Ð»Ñ Ñайта." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "ОÑÐ¾Ð±Ð°Ñ Ñ‚ÐµÐ¼Ð°" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Ð’Ñ‹ можете загрузить оÑобую тему StatusNet в виде ZIP-архива." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Изменение фонового изображениÑ" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Фон" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Ð’Ñ‹ можете загрузить фоновое изображение Ð´Ð»Ñ Ñайта. МакÑимальный размер файла " -"ÑоÑтавлÑет %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Включить" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Отключить" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Включить или отключить показ фонового изображениÑ." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "РаÑÑ‚Ñнуть фоновое изображение" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Изменение цвета" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Содержание" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Ð‘Ð¾ÐºÐ¾Ð²Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ТекÑÑ‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "СÑылки" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "РаÑширенный" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "ОÑобый CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "ВоÑÑтановить оформление по умолчанию." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "ВоÑÑтановить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Сохранить оформление." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Эта запиÑÑŒ не входит в чиÑло ваших любимых запиÑей!" @@ -2736,31 +2567,6 @@ msgstr "Ошибка базы данных при блокировании по msgid "No ID." msgstr "Ðет ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Ð’Ñ‹ должны авторизоватьÑÑ, чтобы изменить группу." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Оформление группы" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"ÐаÑтройте внешний вид группы, уÑтановив фоновое изображение и цветовую гамму " -"на ваш выбор." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваши наÑтройки оформлениÑ." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ñохранены." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3427,12 +3233,6 @@ msgstr "Ðет контента!" msgid "No recipient specified." msgstr "Ðет адреÑата." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Ðе поÑылайте ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ñами Ñебе; проÑто потихоньку Ñкажите Ñто Ñебе." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Сообщение отправлено" @@ -3716,7 +3516,7 @@ msgid "Confirm" msgstr "Подтверждение" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Тот же пароль, что и выше." @@ -3892,30 +3692,6 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð°Ð²Ð°Ñ‚Ð°Ñ€" msgid "Directory where avatars are located." msgstr "ДиректориÑ, в которой раÑположены аватары." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Фоновые изображениÑ" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Веб-путь к фоновым изображениÑм." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений на Ñтраницах SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Веб-путь к фоновым изображениÑм Ð´Ð»Ñ SSL-Ñтраниц." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "ДиректориÑ, в которой раÑположены фоновые изображениÑ." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "ВложениÑ" @@ -4708,7 +4484,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 или более Ñимволов, и не забывайте его!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "СброÑить" @@ -4717,18 +4492,6 @@ msgstr "СброÑить" msgid "Enter a nickname or email address." msgstr "Введите Ð¸Ð¼Ñ Ð¸Ð»Ð¸ Ñлектронный адреÑ." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ðет Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ñ Ñ‚Ð°ÐºÐ¸Ð¼ Ñлектронным адреÑом или именем." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ðет зарегиÑтрированных Ñлектронных адреÑов Ð´Ð»Ñ Ñтого пользователÑ." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´Ñ‘Ð½Ð½Ð¾Ð³Ð¾ адреÑа." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5686,6 +5449,14 @@ msgstr "Ð˜Ð¼Ñ Ñайта должно быть ненулевой длины." msgid "You must have a valid contact email address." msgstr "У Ð²Ð°Ñ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть дейÑтвительный контактный email-адреÑ." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Ðеверный URL логотипа." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ðеверный URL логотипа SSL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5758,7 +5529,9 @@ msgid "Default language" msgstr "Язык по умолчанию" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Язык Ñайта в Ñлучае, еÑли автоопределение из наÑтроек браузера не Ñработало" @@ -5784,8 +5557,22 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Сколько нужно ждать пользователÑм (в Ñекундах) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ того же ещё раз." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Логотип" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Логотип Ñайта" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Логотип SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Сохранить наÑтройки Ñайта" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6545,40 +6332,6 @@ msgstr "Ðе удаётÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚ÑŒ URL аватары «%s»." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Ðеверный тип Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð»Ñ URL аватары «%s»." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Оформление профилÑ" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"ÐаÑтройте внешний вид Ñвоего профилÑ, уÑтановив фоновое изображение и " -"цветовую гамму на Ñвой выбор." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "ПриÑтного аппетита!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "ÐаÑтройки оформлениÑ" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Показать Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Показать или Ñкрыть Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Файл фона" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7036,6 +6789,18 @@ msgstr "Ðи задан пользователь Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð° msgid "Single-user mode code called when not enabled." msgstr "Вызов отключённого кода однопользовательÑкого режима." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ðет Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ñ Ñ‚Ð°ÐºÐ¸Ð¼ Ñлектронным адреÑом или именем." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ðет зарегиÑтрированных Ñлектронных адреÑов Ð´Ð»Ñ Ñтого пользователÑ." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Ошибка ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´Ñ‘Ð½Ð½Ð¾Ð³Ð¾ адреÑа." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Ðе удаётÑÑ Ñоздать группу." @@ -7305,11 +7070,6 @@ msgstr "showForm() не реализована." msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ наÑтройки оформлениÑ." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7338,17 +7098,6 @@ msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Оформление" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" @@ -8195,44 +7944,6 @@ msgstr "Удалить" msgid "Delete this user" msgstr "Удалить Ñтого пользователÑ" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Изменение оформлениÑ" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Изменение цветовой гаммы" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Загрузить файл" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Ð’Ñ‹ можете загрузить ÑобÑтвенное фоновое изображение. МакÑимальный размер " -"файла ÑоÑтавлÑет 2МБ." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Включено" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Выключено" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Оформление по умолчанию воÑÑтановлено." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8452,13 +8163,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Добавить или изменить логотип группы %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Добавить или изменить оформление %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹" @@ -9806,10 +9510,6 @@ msgstr "Ð­Ð»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ð¿Ð¾Ñ‡Ñ‚Ð°" msgid "Change email handling" msgstr "Изменить Ñлектронный адреÑ" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Оформить ваш профиль" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10238,3 +9938,243 @@ msgstr "Ðеверный XML, отÑутÑтвует корень XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Ðе удаётÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚ÑŒ URL аватары «%s»." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Ошибка Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑƒÐ´Ð°Ð»Ñ‘Ð½Ð½Ð¾Ð³Ð¾ профилÑ." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Ðе удаётÑÑ Ð½Ð°Ð¹Ñ‚Ð¸ ÑервиÑÑ‹ Ð´Ð»Ñ %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Ðе удалоÑÑŒ Ñоздать тег профилÑ." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Ðе удаётÑÑ Ð½Ð°Ð¹Ñ‚Ð¸ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Ðеверный Ñлектронный адреÑ." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Ðе удаётÑÑ Ñохранить профиль." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Ðе удаётÑÑ Ñохранить ваши наÑтройки оформлениÑ!" + +#~ msgid "Could not update your design." +#~ msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваше оформление." + +#~ msgid "Design" +#~ msgstr "Оформление" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñтого Ñайта StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Тема не доÑтупна: %s." + +#~ msgid "Change logo" +#~ msgstr "Изменить логотип" + +#~ msgid "Change theme" +#~ msgstr "Изменить тему" + +#~ msgid "Site theme" +#~ msgstr "Тема Ñайта" + +#~ msgid "Theme for the site." +#~ msgstr "Тема Ð´Ð»Ñ Ñайта." + +#~ msgid "Custom theme" +#~ msgstr "ОÑÐ¾Ð±Ð°Ñ Ñ‚ÐµÐ¼Ð°" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Ð’Ñ‹ можете загрузить оÑобую тему StatusNet в виде ZIP-архива." + +#~ msgid "Change background image" +#~ msgstr "Изменение фонового изображениÑ" + +#~ msgid "Background" +#~ msgstr "Фон" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Ð’Ñ‹ можете загрузить фоновое изображение Ð´Ð»Ñ Ñайта. МакÑимальный размер " +#~ "файла ÑоÑтавлÑет %1$s." + +#~ msgid "On" +#~ msgstr "Включить" + +#~ msgid "Off" +#~ msgstr "Отключить" + +#~ msgid "Turn background image on or off." +#~ msgstr "Включить или отключить показ фонового изображениÑ." + +#~ msgid "Tile background image" +#~ msgstr "РаÑÑ‚Ñнуть фоновое изображение" + +#~ msgid "Change colors" +#~ msgstr "Изменение цвета" + +#~ msgid "Content" +#~ msgstr "Содержание" + +#~ msgid "Sidebar" +#~ msgstr "Ð‘Ð¾ÐºÐ¾Ð²Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" + +#~ msgid "Text" +#~ msgstr "ТекÑÑ‚" + +#~ msgid "Links" +#~ msgstr "СÑылки" + +#~ msgid "Advanced" +#~ msgstr "РаÑширенный" + +#~ msgid "Custom CSS" +#~ msgstr "ОÑобый CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" + +#~ msgid "Restore default designs." +#~ msgstr "ВоÑÑтановить оформление по умолчанию." + +#~ msgid "Reset back to default." +#~ msgstr "ВоÑÑтановить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию." + +#~ msgid "Save design." +#~ msgstr "Сохранить оформление." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Ð’Ñ‹ должны авторизоватьÑÑ, чтобы изменить группу." + +#~ msgid "Group design" +#~ msgstr "Оформление группы" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "ÐаÑтройте внешний вид группы, уÑтановив фоновое изображение и цветовую " +#~ "гамму на ваш выбор." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваши наÑтройки оформлениÑ." + +#~ msgid "Design preferences saved." +#~ msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ñохранены." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Ðе поÑылайте ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ñами Ñебе; проÑто потихоньку Ñкажите Ñто Ñебе." + +#~ msgid "Backgrounds" +#~ msgstr "Фоновые изображениÑ" + +#~ msgid "Server for backgrounds." +#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Веб-путь к фоновым изображениÑм." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений на Ñтраницах SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Веб-путь к фоновым изображениÑм Ð´Ð»Ñ SSL-Ñтраниц." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "ДиректориÑ, в которой раÑположены фоновые изображениÑ." + +#~ msgid "Profile design" +#~ msgstr "Оформление профилÑ" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "ÐаÑтройте внешний вид Ñвоего профилÑ, уÑтановив фоновое изображение и " +#~ "цветовую гамму на Ñвой выбор." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "ПриÑтного аппетита!" + +#~ msgid "Design settings" +#~ msgstr "ÐаÑтройки оформлениÑ" + +#~ msgid "View profile designs" +#~ msgstr "Показать Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Показать или Ñкрыть Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." + +#~ msgid "Background file" +#~ msgstr "Файл фона" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ наÑтройки оформлениÑ." + +#~ msgid "Design configuration" +#~ msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Оформление" + +#~ msgid "Change design" +#~ msgstr "Изменение оформлениÑ" + +#~ msgid "Change colours" +#~ msgstr "Изменение цветовой гаммы" + +#~ msgid "Use defaults" +#~ msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" + +#~ msgid "Upload file" +#~ msgstr "Загрузить файл" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Ð’Ñ‹ можете загрузить ÑобÑтвенное фоновое изображение. МакÑимальный размер " +#~ "файла ÑоÑтавлÑет 2МБ." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Включено" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Выключено" + +#~ msgid "Design defaults restored." +#~ msgstr "Оформление по умолчанию воÑÑтановлено." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Добавить или изменить оформление %s" + +#~ msgid "Design your profile" +#~ msgstr "Оформить ваш профиль" diff --git a/locale/sr-ec/LC_MESSAGES/statusnet.po b/locale/sr-ec/LC_MESSAGES/statusnet.po index 50e9ecf645..f330a95896 100644 --- a/locale/sr-ec/LC_MESSAGES/statusnet.po +++ b/locale/sr-ec/LC_MESSAGES/statusnet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:32+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Serbian Cyrillic ekavian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-core\n" @@ -100,7 +100,6 @@ msgid "Save access settings" msgstr "Сачувај поÑтавке приÑтупа" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -116,7 +115,6 @@ msgstr "Сачувај поÑтавке приÑтупа" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -188,7 +186,6 @@ msgstr "Ðе поÑтоји таква Ñтраница." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -349,7 +346,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Ðжурирање кориÑника није уÑпело." @@ -364,7 +360,6 @@ msgstr "Профил није Ñачуван." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -375,24 +370,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "ПоÑтавке изгледа ниÑу Ñачуване." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Ðжурирање изгледа није уÑпело." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -483,6 +460,8 @@ msgstr "" "Ðе можете поÑлати директне поруке кориÑницима који ниÑу ваши пријатељи." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "Ðе шаљите поруку Ñами Ñеби; Ñамо тихо поновите." @@ -714,7 +693,6 @@ msgstr "групе на %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Морате бити админиÑтратор да биÑте уређивали групу." @@ -823,7 +801,6 @@ msgstr "Грешка у бази података при уноÑу „oauth_tok #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -832,7 +809,6 @@ msgstr "Грешка у бази података при уноÑу „oauth_tok #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Ðеочекивани образац за Ñлање." @@ -1181,7 +1157,6 @@ msgstr "Морате бити пријављени да биÑте напуÑÑ‚ #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1266,6 +1241,7 @@ msgid "Join request canceled." msgstr "Захтев за учлањење је одбијен." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "" @@ -1415,7 +1391,6 @@ msgstr "Такав прилог не поÑтоји." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1909,149 +1884,6 @@ msgstr "Ðе бриши овог кориÑника" msgid "Delete this user." msgstr "Обриши овог кориÑника" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Изглед" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "ПоÑтавке изгледа овог Ñајта" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "ÐеиÑправна адреÑа логотипа." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "ÐеиÑправна адреÑа SSL логотипа." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Тема није доÑтупна: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Промени логотип" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Логотип Ñајта" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL логотип" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Промени тему" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Тема Ñајта" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Тема Ñајта" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Прилагођена тема" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Можете отпремити прилагођену тему преко ZIP архиве." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Промени позадину Ñлике" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Позадина" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Можете отпремити позадину Ñлике Ñајта. Ðајвећа величина датотеке је %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Укључено" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "ИÑкључено" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Укључите или иÑкључите позадину Ñлике." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "ÐаÑлов позадине Ñлике" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Промени боје" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Садржај" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Бочна палета" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ТекÑÑ‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Везе" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Ðапредно" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Прилагођени CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "КориÑти подразумевано" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Поврати подразумевани изглед" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Врати на подразумевано" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Сачувај изглед" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Ово обавештење није омиљено." @@ -2644,29 +2476,6 @@ msgstr "Дошло је до грешке при блокирању кориÑн msgid "No ID." msgstr "Ðема ИБ." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Морате бити пријављени да биÑте изменили групу." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Изглед групе" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Ðжурирање поÑтавки изгледа није уÑпело." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ПоÑтавке изгледа Ñу Ñачуване." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3293,12 +3102,6 @@ msgstr "Ðема Ñадржаја." msgid "No recipient specified." msgstr "ÐиÑте навели примаоца." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Ðе шаљите поруку Ñами Ñеби; Ñамо тихо поновите." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Порука је поÑлата" @@ -3571,7 +3374,7 @@ msgid "Confirm" msgstr "Потврда" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "ИÑто као и лозинка изнад." @@ -3747,30 +3550,6 @@ msgstr "ФаÑцикла кориÑничких Ñличица" msgid "Directory where avatars are located." msgstr "ФаÑцикла где Ñу Ñмештене кориÑничке Ñличице." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Позадине" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Сервер за позадине." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Путања до позадина." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Сервер за позадине на SSL Ñтраницама." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Путања до позадина на SSL Ñтраницама." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "ФаÑцикла где Ñу Ñмештене позадине." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Прилози" @@ -4510,7 +4289,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 или више знакова." #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Поништи" @@ -4519,18 +4297,6 @@ msgstr "Поништи" msgid "Enter a nickname or email address." msgstr "УнеÑите надимак или е-адреÑу." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ðема кориÑника Ñ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¼ надимком или е-адреÑом." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5406,6 +5172,14 @@ msgstr "" msgid "You must have a valid contact email address." msgstr "" +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "ÐеиÑправна адреÑа логотипа." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "ÐеиÑправна адреÑа SSL логотипа." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5476,7 +5250,8 @@ msgid "Default language" msgstr "" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. @@ -5500,9 +5275,23 @@ msgstr "" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "SSL логотип" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Логотип Ñајта" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL логотип" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" -msgstr "" +#, fuzzy +msgid "Save the site settings." +msgstr "Сачувај поÑтавке приÑтупа" #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -6224,38 +6013,6 @@ msgstr "" msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6680,6 +6437,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ðема кориÑника Ñ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¼ надимком или е-адреÑом." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "" @@ -6939,11 +6708,6 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -6972,17 +6736,6 @@ msgctxt "MENU" msgid "Site" msgstr "" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "" @@ -7806,42 +7559,6 @@ msgstr "" msgid "Delete this user" msgstr "" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8048,13 +7765,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "" @@ -9287,10 +8997,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -9700,3 +9406,162 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "ÐеиÑправна ознака: „%s“." + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Профил није Ñачуван." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Стварање довода за ÑпиÑак није уÑпело – %s" + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Е-адреÑа није иÑправна." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Профил није Ñачуван." + +#~ msgid "Unable to save your design settings." +#~ msgstr "ПоÑтавке изгледа ниÑу Ñачуване." + +#~ msgid "Could not update your design." +#~ msgstr "Ðжурирање изгледа није уÑпело." + +#~ msgid "Design" +#~ msgstr "Изглед" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "ПоÑтавке изгледа овог Ñајта" + +#~ msgid "Theme not available: %s." +#~ msgstr "Тема није доÑтупна: %s." + +#~ msgid "Change logo" +#~ msgstr "Промени логотип" + +#~ msgid "Change theme" +#~ msgstr "Промени тему" + +#~ msgid "Site theme" +#~ msgstr "Тема Ñајта" + +#~ msgid "Theme for the site." +#~ msgstr "Тема Ñајта" + +#~ msgid "Custom theme" +#~ msgstr "Прилагођена тема" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Можете отпремити прилагођену тему преко ZIP архиве." + +#~ msgid "Change background image" +#~ msgstr "Промени позадину Ñлике" + +#~ msgid "Background" +#~ msgstr "Позадина" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Можете отпремити позадину Ñлике Ñајта. Ðајвећа величина датотеке је %1$s." + +#~ msgid "On" +#~ msgstr "Укључено" + +#~ msgid "Off" +#~ msgstr "ИÑкључено" + +#~ msgid "Turn background image on or off." +#~ msgstr "Укључите или иÑкључите позадину Ñлике." + +#~ msgid "Tile background image" +#~ msgstr "ÐаÑлов позадине Ñлике" + +#~ msgid "Change colors" +#~ msgstr "Промени боје" + +#~ msgid "Content" +#~ msgstr "Садржај" + +#~ msgid "Sidebar" +#~ msgstr "Бочна палета" + +#~ msgid "Text" +#~ msgstr "ТекÑÑ‚" + +#~ msgid "Links" +#~ msgstr "Везе" + +#~ msgid "Advanced" +#~ msgstr "Ðапредно" + +#~ msgid "Custom CSS" +#~ msgstr "Прилагођени CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "КориÑти подразумевано" + +#~ msgid "Restore default designs." +#~ msgstr "Поврати подразумевани изглед" + +#~ msgid "Reset back to default." +#~ msgstr "Врати на подразумевано" + +#~ msgid "Save design." +#~ msgstr "Сачувај изглед" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Морате бити пријављени да биÑте изменили групу." + +#~ msgid "Group design" +#~ msgstr "Изглед групе" + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ðжурирање поÑтавки изгледа није уÑпело." + +#~ msgid "Design preferences saved." +#~ msgstr "ПоÑтавке изгледа Ñу Ñачуване." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "Ðе шаљите поруку Ñами Ñеби; Ñамо тихо поновите." + +#~ msgid "Backgrounds" +#~ msgstr "Позадине" + +#~ msgid "Server for backgrounds." +#~ msgstr "Сервер за позадине." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Путања до позадина." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Сервер за позадине на SSL Ñтраницама." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Путања до позадина на SSL Ñтраницама." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "ФаÑцикла где Ñу Ñмештене позадине." diff --git a/locale/statusnet.pot b/locale/statusnet.pot index c9632af0bf..b0d893f125 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -112,7 +112,6 @@ msgid "Save access settings" msgstr "" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -128,18 +127,16 @@ msgstr "" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. -#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732 -#: actions/emailsettings.php:251 actions/imsettings.php:201 -#: actions/licenseadminpanel.php:335 actions/pathsadminpanel.php:517 -#: actions/profilesettings.php:215 actions/sessionsadminpanel.php:202 -#: actions/siteadminpanel.php:319 actions/sitenoticeadminpanel.php:197 -#: actions/smssettings.php:204 actions/snapshotadminpanel.php:252 -#: actions/subscriptions.php:251 actions/tagprofile.php:169 -#: actions/urlsettings.php:152 actions/useradminpanel.php:300 -#: lib/applicationeditform.php:355 lib/designform.php:315 +#: actions/accessadminpanel.php:193 actions/emailsettings.php:251 +#: actions/imsettings.php:201 actions/licenseadminpanel.php:335 +#: actions/pathsadminpanel.php:463 actions/profilesettings.php:215 +#: actions/sessionsadminpanel.php:202 actions/siteadminpanel.php:373 +#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:204 +#: actions/snapshotadminpanel.php:252 actions/subscriptions.php:251 +#: actions/tagprofile.php:169 actions/urlsettings.php:152 +#: actions/useradminpanel.php:300 lib/applicationeditform.php:355 #: lib/groupeditform.php:225 lib/peopletags.php:146 msgctxt "BUTTON" msgid "Save" @@ -166,14 +163,13 @@ msgstr "" #: actions/oauthappssettings.php:162 actions/oauthconnectionssettings.php:136 #: actions/passwordsettings.php:147 actions/peopletagautocomplete.php:67 #: actions/pluginenable.php:88 actions/profilecompletion.php:81 -#: actions/profilesettings.php:235 actions/recoverpassword.php:387 +#: actions/profilesettings.php:235 actions/recoverpassword.php:303 #: actions/register.php:164 actions/remotesubscribe.php:78 #: actions/removepeopletag.php:79 actions/repeat.php:80 #: actions/smssettings.php:250 actions/subedit.php:41 actions/subscribe.php:87 #: actions/subscribepeopletag.php:76 actions/tagprofile.php:186 #: actions/unsubscribe.php:70 actions/unsubscribepeopletag.php:77 #: actions/urlsettings.php:171 actions/userauthorization.php:54 -#: lib/designsettings.php:123 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -256,7 +252,6 @@ msgstr "" #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -306,7 +301,6 @@ msgstr "" #: actions/all.php:78 actions/allrss.php:69 #: actions/apiaccountupdatedeliverydevice.php:110 #: actions/apiaccountupdateprofile.php:103 -#: actions/apiaccountupdateprofilebackgroundimage.php:118 #: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59 #: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94 #: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72 @@ -435,8 +429,6 @@ msgstr "" #: actions/apiaccountratelimitstatus.php:70 #: actions/apiaccountupdatedeliverydevice.php:92 #: actions/apiaccountupdateprofile.php:94 -#: actions/apiaccountupdateprofilebackgroundimage.php:92 -#: actions/apiaccountupdateprofilecolors.php:115 #: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157 #: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98 #: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99 @@ -471,8 +463,6 @@ msgstr "" #. TRANS: Client error. POST is a HTTP command. It should not be translated. #: actions/apiaccountupdatedeliverydevice.php:83 #: actions/apiaccountupdateprofile.php:85 -#: actions/apiaccountupdateprofilebackgroundimage.php:83 -#: actions/apiaccountupdateprofilecolors.php:106 #: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87 #: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107 #: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88 @@ -499,19 +489,16 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. #: actions/apiaccountupdatedeliverydevice.php:136 #: actions/confirmaddress.php:122 actions/emailsettings.php:353 #: actions/emailsettings.php:504 actions/profilesettings.php:348 #: actions/smssettings.php:301 actions/smssettings.php:454 -#: actions/urlsettings.php:213 actions/userdesignsettings.php:315 +#: actions/urlsettings.php:213 msgid "Could not update user." msgstr "" #. TRANS: Error message displayed when referring to a user without a profile. #: actions/apiaccountupdateprofile.php:111 -#: actions/apiaccountupdateprofilebackgroundimage.php:199 -#: actions/apiaccountupdateprofilecolors.php:183 #: actions/apiaccountupdateprofileimage.php:131 #: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108 #: actions/avatarbynickname.php:85 actions/avatarsettings.php:108 @@ -533,13 +520,10 @@ msgstr "" #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. -#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:271 -#: actions/designadminpanel.php:120 actions/editapplication.php:121 -#: actions/newapplication.php:102 actions/newnotice.php:94 -#: lib/designsettings.php:110 +#: actions/editapplication.php:121 actions/newapplication.php:102 +#: actions/newnotice.php:94 #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -550,35 +534,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#: actions/apiaccountupdateprofilebackgroundimage.php:138 -#: actions/apiaccountupdateprofilebackgroundimage.php:149 -#: actions/apiaccountupdateprofilecolors.php:160 -#: actions/apiaccountupdateprofilecolors.php:171 -#: actions/groupdesignsettings.php:295 actions/groupdesignsettings.php:306 -#: actions/userdesignsettings.php:222 actions/userdesignsettings.php:233 -#: actions/userdesignsettings.php:276 actions/userdesignsettings.php:287 -msgid "Unable to save your design settings." -msgstr "" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#: actions/apiaccountupdateprofilebackgroundimage.php:191 -#: actions/apiaccountupdateprofilecolors.php:139 -#: actions/userdesignsettings.php:199 lib/designsettings.php:217 -#: lib/designsettings.php:239 -msgid "Could not update your design." -msgstr "" - #. TRANS: Title for Atom feed. #: actions/apiatomservice.php:85 msgctxt "ATOM" @@ -687,7 +642,10 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "" #. TRANS: Client error displayed trying to direct message self (403). -#: actions/apidirectmessagenew.php:154 +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. +#: actions/apidirectmessagenew.php:154 actions/newmessage.php:178 +#: lib/command.php:632 msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -969,11 +927,9 @@ msgstr "" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. #: actions/apigroupprofileupdate.php:119 actions/editgroup.php:110 -#: actions/editgroup.php:176 actions/groupdesignsettings.php:109 -#: actions/grouplogo.php:111 +#: actions/editgroup.php:176 actions/grouplogo.php:111 msgid "You must be an admin to edit the group." msgstr "" @@ -987,7 +943,7 @@ msgstr "" #. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. #: actions/apigroupprofileupdate.php:196 actions/editgroup.php:292 -#: classes/User_group.php:558 +#: classes/User_group.php:552 msgid "Could not create aliases." msgstr "" @@ -1103,13 +1059,12 @@ msgid "Invalid nickname / password!" msgstr "" #. TRANS: Server error displayed when a database action fails. -#: actions/apioauthauthorize.php:217 +#: actions/apioauthauthorize.php:211 msgid "Database error inserting oauth_token_association." msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -1118,29 +1073,27 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. -#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:297 -#: actions/designadminpanel.php:100 actions/editapplication.php:145 -#: actions/emailsettings.php:312 actions/grouplogo.php:332 -#: actions/imsettings.php:259 actions/newapplication.php:125 -#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46 -#: actions/smssettings.php:271 lib/designsettings.php:134 +#: actions/apioauthauthorize.php:288 actions/avatarsettings.php:297 +#: actions/editapplication.php:145 actions/emailsettings.php:312 +#: actions/grouplogo.php:332 actions/imsettings.php:259 +#: actions/newapplication.php:125 actions/oauthconnectionssettings.php:145 +#: actions/recoverpassword.php:46 actions/smssettings.php:271 msgid "Unexpected form submission." msgstr "" #. TRANS: Title for a page where a user can confirm/deny account access by an external application. -#: actions/apioauthauthorize.php:387 +#: actions/apioauthauthorize.php:357 msgid "An application would like to connect to your account" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:404 +#: actions/apioauthauthorize.php:374 msgid "Allow or deny access" msgstr "" #. TRANS: User notification of external application requesting account access. #. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename. -#: actions/apioauthauthorize.php:425 +#: actions/apioauthauthorize.php:395 #, php-format msgid "" "An application would like the ability to %3$s your %4$s " @@ -1151,7 +1104,7 @@ msgstr "" #. TRANS: User notification of external application requesting account access. #. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application, #. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename. -#: actions/apioauthauthorize.php:433 +#: actions/apioauthauthorize.php:403 #, php-format msgid "" "The application %1$s by %2$s would like " @@ -1160,7 +1113,7 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/apioauthauthorize.php:455 +#: actions/apioauthauthorize.php:425 msgctxt "LEGEND" msgid "Account" msgstr "" @@ -1171,7 +1124,7 @@ msgstr "" #. TRANS: Label for nickname on user authorisation page. #. TRANS: Field label on group edit form. #. TRANS: Dropdown option for searching in profiles. -#: actions/apioauthauthorize.php:459 actions/profilesettings.php:104 +#: actions/apioauthauthorize.php:429 actions/profilesettings.php:104 #: actions/register.php:438 actions/userauthorization.php:146 #: lib/groupeditform.php:147 lib/togglepeopletag.php:107 msgid "Nickname" @@ -1180,7 +1133,7 @@ msgstr "" #. TRANS: Field label on OAuth API authorisation form. #. TRANS: Field label on login page. #. TRANS: Field label on account registration page. -#: actions/apioauthauthorize.php:463 actions/login.php:235 +#: actions/apioauthauthorize.php:433 actions/login.php:235 #: actions/register.php:444 msgid "Password" msgstr "" @@ -1191,7 +1144,7 @@ msgstr "" #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. -#: actions/apioauthauthorize.php:478 actions/emailsettings.php:125 +#: actions/apioauthauthorize.php:448 actions/emailsettings.php:125 #: actions/imsettings.php:136 actions/smssettings.php:132 #: lib/applicationeditform.php:351 msgctxt "BUTTON" @@ -1199,35 +1152,35 @@ msgid "Cancel" msgstr "" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#: actions/apioauthauthorize.php:485 +#: actions/apioauthauthorize.php:455 msgctxt "BUTTON" msgid "Allow" msgstr "" #. TRANS: Form instructions. -#: actions/apioauthauthorize.php:502 +#: actions/apioauthauthorize.php:472 msgid "Authorize access to your account information." msgstr "" #. TRANS: Header for user notification after revoking OAuth access to an application. -#: actions/apioauthauthorize.php:594 +#: actions/apioauthauthorize.php:564 msgid "Authorization canceled." msgstr "" #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#: actions/apioauthauthorize.php:598 +#: actions/apioauthauthorize.php:568 #, php-format msgid "The request token %s has been revoked." msgstr "" #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#: actions/apioauthauthorize.php:621 +#: actions/apioauthauthorize.php:591 msgid "You have successfully authorized the application" msgstr "" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. -#: actions/apioauthauthorize.php:625 +#: actions/apioauthauthorize.php:595 msgid "" "Please return to the application and enter the following security code to " "complete the process." @@ -1235,14 +1188,14 @@ msgstr "" #. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:632 +#: actions/apioauthauthorize.php:602 #, php-format msgid "You have successfully authorized %s" msgstr "" #. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth. #. TRANS: %s is the authorised application name. -#: actions/apioauthauthorize.php:639 +#: actions/apioauthauthorize.php:609 #, php-format msgid "" "Please return to %s and enter the following security code to complete the " @@ -1543,7 +1496,6 @@ msgstr "" #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1568,11 +1520,11 @@ msgstr "" #: actions/deletegroup.php:100 actions/editgroup.php:102 #: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73 #: actions/groupblock.php:90 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103 -#: actions/groupmembers.php:84 actions/groupmembers.php:92 -#: actions/groupqueue.php:85 actions/groupqueue.php:93 actions/grouprss.php:97 -#: actions/grouprss.php:105 actions/groupunblock.php:90 -#: actions/joingroup.php:82 actions/joingroup.php:95 actions/leavegroup.php:82 +#: actions/grouplogo.php:103 actions/groupmembers.php:84 +#: actions/groupmembers.php:92 actions/groupqueue.php:85 +#: actions/groupqueue.php:93 actions/grouprss.php:97 actions/grouprss.php:105 +#: actions/groupunblock.php:90 actions/joingroup.php:82 +#: actions/joingroup.php:95 actions/leavegroup.php:82 #: actions/leavegroup.php:95 actions/makeadmin.php:92 #: actions/showgroup.php:136 actions/showgroup.php:145 lib/command.php:168 #: lib/command.php:389 @@ -1621,13 +1573,13 @@ msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. -#: actions/approvegroup.php:132 actions/approvesub.php:83 +#: actions/approvegroup.php:132 actions/approvesub.php:84 msgid "Internal error: received neither cancel nor abort." msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription -#: actions/approvegroup.php:136 actions/approvesub.php:87 +#: actions/approvegroup.php:136 actions/approvesub.php:88 msgid "Internal error: received both cancel and abort." msgstr "" @@ -1657,33 +1609,34 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. -#: actions/approvesub.php:76 +#. TRANS: %s is a user nickname. +#: actions/approvesub.php:77 #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "" #. TRANS: Server error displayed when cancelling a queued subscription request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed. -#: actions/approvesub.php:116 +#: actions/approvesub.php:117 #, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." msgstr "" #. TRANS: Title for subscription approval ajax return #. TRANS: %1$s is the approved user's nickname -#: actions/approvesub.php:126 +#: actions/approvesub.php:127 #, php-format msgctxt "TITLE" msgid "%1$s's request" msgstr "" #. TRANS: Message on page for user after approving a subscription request. -#: actions/approvesub.php:132 +#: actions/approvesub.php:133 msgid "Subscription approved." msgstr "" #. TRANS: Message on page for user after rejecting a subscription request. -#: actions/approvesub.php:135 +#: actions/approvesub.php:136 msgid "Subscription canceled." msgstr "" @@ -1839,15 +1792,14 @@ msgstr "" #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. #. TRANS: Client error displayed if no nickname argument was given requesting a group page. #: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73 -#: actions/editgroup.php:85 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/groupmembers.php:76 -#: actions/groupqueue.php:77 actions/grouprss.php:89 actions/showgroup.php:118 +#: actions/editgroup.php:85 actions/grouplogo.php:86 +#: actions/groupmembers.php:76 actions/groupqueue.php:77 +#: actions/grouprss.php:89 actions/showgroup.php:118 msgid "No nickname." msgstr "" @@ -2292,7 +2244,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:103 actions/editapplication.php:132 #: actions/newapplication.php:113 actions/showapplication.php:117 -#: lib/action.php:1468 +#: lib/action.php:1450 msgid "There was a problem with your session token." msgstr "" @@ -2434,180 +2386,6 @@ msgstr "" msgid "Delete this user." msgstr "" -#. TRANS: Message used as title for design settings for the site. -#: actions/designadminpanel.php:60 -msgid "Design" -msgstr "" - -#. TRANS: Instructions for design adminsitration panel. -#: actions/designadminpanel.php:71 -msgid "Design settings for this StatusNet site" -msgstr "" - -#. TRANS: Client error displayed when a logo URL does is not valid. -#: actions/designadminpanel.php:327 -msgid "Invalid logo URL." -msgstr "" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -#: actions/designadminpanel.php:333 -msgid "Invalid SSL logo URL." -msgstr "" - -#. 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. -#: actions/designadminpanel.php:339 -#, php-format -msgid "Theme not available: %s." -msgstr "" - -#. TRANS: Fieldset legend for form to change logo. -#: actions/designadminpanel.php:437 -msgid "Change logo" -msgstr "" - -#. TRANS: Field label for StatusNet site logo. -#: actions/designadminpanel.php:444 -msgid "Site logo" -msgstr "" - -#. TRANS: Field label for SSL StatusNet site logo. -#: actions/designadminpanel.php:452 -msgid "SSL logo" -msgstr "" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -#: actions/designadminpanel.php:467 -msgid "Change theme" -msgstr "" - -#. TRANS: Field label for dropdown to choose site theme. -#: actions/designadminpanel.php:485 -msgid "Site theme" -msgstr "" - -#. TRANS: Title for field label for dropdown to choose site theme. -#: actions/designadminpanel.php:487 -msgid "Theme for the site." -msgstr "" - -#. TRANS: Field label for uploading a cutom theme. -#: actions/designadminpanel.php:494 -msgid "Custom theme" -msgstr "" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -#: actions/designadminpanel.php:499 -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -#: actions/designadminpanel.php:515 -msgid "Change background image" -msgstr "" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -#: actions/designadminpanel.php:525 actions/designadminpanel.php:609 -#: lib/designform.php:233 -msgid "Background" -msgstr "" - -#. TRANS: Form guide for background image upload form on theme designer page. -#: actions/designadminpanel.php:531 -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" - -#. TRANS: Used as radio button label to add a background image. -#: actions/designadminpanel.php:558 -msgid "On" -msgstr "" - -#. TRANS: Used as radio button label to not add a background image. -#: actions/designadminpanel.php:575 -msgid "Off" -msgstr "" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -#: actions/designadminpanel.php:577 lib/designform.php:209 -msgid "Turn background image on or off." -msgstr "" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#: actions/designadminpanel.php:583 lib/designform.php:215 -msgid "Tile background image" -msgstr "" - -#. TRANS: Fieldset legend for theme colors. -#: actions/designadminpanel.php:598 -msgid "Change colors" -msgstr "" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -#: actions/designadminpanel.php:623 lib/designform.php:247 -msgid "Content" -msgstr "" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -#: actions/designadminpanel.php:637 lib/designform.php:261 -msgid "Sidebar" -msgstr "" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -#: actions/designadminpanel.php:651 lib/designform.php:275 -msgid "Text" -msgstr "" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -#: actions/designadminpanel.php:665 lib/designform.php:289 -msgid "Links" -msgstr "" - -#. TRANS: Fieldset legend for advanced theme design settings. -#: actions/designadminpanel.php:691 -msgid "Advanced" -msgstr "" - -#. TRANS: Field label for custom CSS. -#: actions/designadminpanel.php:696 -msgid "Custom CSS" -msgstr "" - -#. TRANS: Button text for resetting theme settings. -#: actions/designadminpanel.php:718 -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#: actions/designadminpanel.php:720 lib/designform.php:135 -msgid "Restore default designs." -msgstr "" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#: actions/designadminpanel.php:728 lib/designform.php:143 -msgid "Reset back to default." -msgstr "" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -#: actions/designadminpanel.php:736 lib/designform.php:317 -msgid "Save design." -msgstr "" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. #: actions/disfavor.php:83 msgid "This notice is not a favorite!" @@ -2973,7 +2751,7 @@ msgstr "" #. TRANS: Form validation error displayed when trying to register without a valid e-mail address. #. TRANS: Client error displayed trying to save site settings without a valid contact address. #: actions/emailsettings.php:394 actions/register.php:207 -#: actions/siteadminpanel.php:144 +#: actions/siteadminpanel.php:154 msgid "Not a valid email address." msgstr "" @@ -3320,34 +3098,6 @@ msgstr "" msgid "No ID." msgstr "" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -#: actions/groupdesignsettings.php:67 -msgid "You must be logged in to edit a group." -msgstr "" - -#. TRANS: Title group design settings page. -#: actions/groupdesignsettings.php:146 -msgid "Group design" -msgstr "" - -#. TRANS: Instructions for group design settings page. -#: actions/groupdesignsettings.php:157 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -#: actions/groupdesignsettings.php:272 -msgid "Unable to update your design settings." -msgstr "" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -#: actions/groupdesignsettings.php:317 actions/userdesignsettings.php:245 -msgid "Design preferences saved." -msgstr "" - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. #: actions/grouplogo.php:144 actions/grouplogo.php:199 @@ -4067,7 +3817,7 @@ msgid "New group" msgstr "" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#: actions/newgroup.php:73 classes/User_group.php:491 +#: actions/newgroup.php:73 classes/User_group.php:485 msgid "You are not allowed to create groups on this site." msgstr "" @@ -4102,13 +3852,6 @@ msgstr "" msgid "No recipient specified." msgstr "" -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -#: actions/newmessage.php:178 lib/command.php:632 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - #. TRANS: Page title after sending a direct message. #: actions/newmessage.php:196 msgid "Message sent" @@ -4333,8 +4076,8 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when request specifies an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format. -#: actions/oembed.php:204 actions/oembed.php:224 lib/apiaction.php:1323 -#: lib/apiaction.php:1350 lib/apiaction.php:1485 +#: actions/oembed.php:204 actions/oembed.php:224 lib/apiaction.php:1292 +#: lib/apiaction.php:1319 lib/apiaction.php:1454 msgid "Not a supported data format." msgstr "" @@ -4432,7 +4175,7 @@ msgid "Confirm" msgstr "" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. #: actions/passwordsettings.php:121 actions/recoverpassword.php:264 #: actions/register.php:452 @@ -4470,7 +4213,7 @@ msgstr "" #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#: actions/passwordsettings.php:201 actions/recoverpassword.php:422 +#: actions/passwordsettings.php:201 actions/recoverpassword.php:338 msgid "Cannot save new password." msgstr "" @@ -4530,7 +4273,7 @@ msgstr "" #. TRANS: Field label in Paths admin panel. #: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:284 -#: actions/pathsadminpanel.php:375 actions/pathsadminpanel.php:430 +#: actions/pathsadminpanel.php:376 msgid "Server" msgstr "" @@ -4541,7 +4284,7 @@ msgstr "" #. TRANS: Field label in Paths admin panel. #: actions/pathsadminpanel.php:249 actions/pathsadminpanel.php:293 -#: actions/pathsadminpanel.php:384 actions/pathsadminpanel.php:439 +#: actions/pathsadminpanel.php:385 msgid "Path" msgstr "" @@ -4587,8 +4330,8 @@ msgid "Web path to themes." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:302 actions/pathsadminpanel.php:393 -#: actions/pathsadminpanel.php:448 actions/pathsadminpanel.php:500 +#: actions/pathsadminpanel.php:302 actions/pathsadminpanel.php:394 +#: actions/pathsadminpanel.php:446 msgid "SSL server" msgstr "" @@ -4598,8 +4341,7 @@ msgid "SSL server for themes (default: SSL server)." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:311 actions/pathsadminpanel.php:402 -#: actions/pathsadminpanel.php:457 +#: actions/pathsadminpanel.php:311 actions/pathsadminpanel.php:403 msgid "SSL path" msgstr "" @@ -4609,8 +4351,7 @@ msgid "SSL path to themes (default: /theme/)." msgstr "" #. TRANS: Field label in Paths admin panel. -#: actions/pathsadminpanel.php:320 actions/pathsadminpanel.php:411 -#: actions/pathsadminpanel.php:466 +#: actions/pathsadminpanel.php:320 actions/pathsadminpanel.php:412 msgid "Directory" msgstr "" @@ -4654,105 +4395,75 @@ msgstr "" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:369 -msgid "Backgrounds" -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:377 -msgid "Server for backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:386 -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:395 -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:404 -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:413 -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. -#: actions/pathsadminpanel.php:424 +#: actions/pathsadminpanel.php:370 msgid "Attachments" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:432 +#: actions/pathsadminpanel.php:378 msgid "Server for attachments." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:441 +#: actions/pathsadminpanel.php:387 msgid "Web path to attachments." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:450 +#: actions/pathsadminpanel.php:396 msgid "Server for attachments on SSL pages." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:459 +#: actions/pathsadminpanel.php:405 msgid "Web path to attachments on SSL pages." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:468 +#: actions/pathsadminpanel.php:414 msgid "Directory where attachments are located." msgstr "" #. TRANS: Fieldset legend in Paths admin panel. -#: actions/pathsadminpanel.php:477 +#: actions/pathsadminpanel.php:423 msgctxt "LEGEND" msgid "SSL" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). #. TRANS: Option in dropdown for snapshot method in admin panel for snapshots. -#: actions/pathsadminpanel.php:482 actions/snapshotadminpanel.php:203 +#: actions/pathsadminpanel.php:428 actions/snapshotadminpanel.php:203 msgid "Never" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:484 +#: actions/pathsadminpanel.php:430 msgid "Sometimes" msgstr "" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). -#: actions/pathsadminpanel.php:486 +#: actions/pathsadminpanel.php:432 msgid "Always" msgstr "" #. TRANS: Drop down label in Paths admin panel. -#: actions/pathsadminpanel.php:490 +#: actions/pathsadminpanel.php:436 msgid "Use SSL" msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:492 +#: actions/pathsadminpanel.php:438 msgid "When to use SSL." msgstr "" #. TRANS: Tooltip for field label in Paths admin panel. -#: actions/pathsadminpanel.php:502 +#: actions/pathsadminpanel.php:448 msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -#: actions/pathsadminpanel.php:519 +#: actions/pathsadminpanel.php:465 msgid "Save paths" msgstr "" @@ -5247,7 +4958,7 @@ msgstr[1] "" #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. -#: actions/profilesettings.php:289 actions/siteadminpanel.php:152 +#: actions/profilesettings.php:289 actions/siteadminpanel.php:175 msgid "Timezone not selected." msgstr "" @@ -5552,7 +5263,7 @@ msgstr "" #. TRANS: Title for password recovery page in email sent mode. #. TRANS: Subject for password recovery e-mail. -#: actions/recoverpassword.php:227 actions/recoverpassword.php:370 +#: actions/recoverpassword.php:227 classes/User.php:1094 msgid "Password recovery requested" msgstr "" @@ -5567,62 +5278,46 @@ msgid "6 or more characters, and do not forget it!" msgstr "" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. -#: actions/recoverpassword.php:268 lib/designform.php:140 +#: actions/recoverpassword.php:268 msgctxt "BUTTON" msgid "Reset" msgstr "" #. TRANS: Form instructions for password recovery form. -#: actions/recoverpassword.php:278 +#: actions/recoverpassword.php:279 msgid "Enter a nickname or email address." msgstr "" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -#: actions/recoverpassword.php:313 -msgid "No user with that email address or username." -msgstr "" - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -#: actions/recoverpassword.php:331 -msgid "No registered email address for that user." -msgstr "" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -#: actions/recoverpassword.php:346 -msgid "Error saving address confirmation." -msgstr "" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. -#: actions/recoverpassword.php:374 +#: actions/recoverpassword.php:287 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" #. TRANS: Client error displayed when trying to reset as password without providing a user. -#: actions/recoverpassword.php:395 +#: actions/recoverpassword.php:311 msgid "Unexpected password reset." msgstr "" #. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:404 +#: actions/recoverpassword.php:320 msgid "Password must be 6 characters or more." msgstr "" #. TRANS: Reset password form validation error message. -#: actions/recoverpassword.php:409 +#: actions/recoverpassword.php:325 msgid "Password and confirmation do not match." msgstr "" #. TRANS: Server error displayed when something does wrong with the user object during password reset. #. TRANS: Server error displayed when saving fails during user registration. -#: actions/recoverpassword.php:430 actions/register.php:263 +#: actions/recoverpassword.php:346 actions/register.php:263 msgid "Error setting user." msgstr "" #. TRANS: Success message for user after password reset. -#: actions/recoverpassword.php:438 +#: actions/recoverpassword.php:354 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -6625,134 +6320,160 @@ msgid "Basic settings for this StatusNet site" msgstr "" #. TRANS: Client error displayed trying to save an empty site name. -#: actions/siteadminpanel.php:131 +#: actions/siteadminpanel.php:141 msgid "Site name must have non-zero length." msgstr "" #. TRANS: Client error displayed trying to save site settings without a contact address. -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:150 msgid "You must have a valid contact email address." msgstr "" +#. TRANS: Client error displayed when a logo URL is not valid. +#: actions/siteadminpanel.php:161 +msgid "Invalid logo URL." +msgstr "" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +#: actions/siteadminpanel.php:167 +msgid "Invalid SSL logo URL." +msgstr "" + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. -#: actions/siteadminpanel.php:162 +#: actions/siteadminpanel.php:185 #, php-format msgid "Unknown language \"%s\"." msgstr "" #. TRANS: Client error displayed trying to save site settings with a text limit below 0. -#: actions/siteadminpanel.php:169 +#: actions/siteadminpanel.php:192 msgid "Minimum text limit is 0 (unlimited)." msgstr "" #. TRANS: Client error displayed trying to save site settings with a text limit below 1. -#: actions/siteadminpanel.php:176 +#: actions/siteadminpanel.php:199 msgid "Dupe limit must be one or more seconds." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#: actions/siteadminpanel.php:223 +#: actions/siteadminpanel.php:246 msgctxt "LEGEND" msgid "General" msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:227 +#: actions/siteadminpanel.php:250 msgctxt "LABEL" msgid "Site name" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:229 +#: actions/siteadminpanel.php:252 msgid "The name of your site, like \"Yourcompany Microblog\"." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:234 +#: actions/siteadminpanel.php:257 msgid "Brought by" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:236 +#: actions/siteadminpanel.php:259 msgid "Text used for credits link in footer of each page." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:241 +#: actions/siteadminpanel.php:264 msgid "Brought by URL" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:266 msgid "URL used for credits link in footer of each page." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:270 msgid "Email" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:249 +#: actions/siteadminpanel.php:272 msgid "Contact email address for your site." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#: actions/siteadminpanel.php:256 +#: actions/siteadminpanel.php:281 msgctxt "LEGEND" msgid "Local" msgstr "" #. TRANS: Dropdown label on site settings panel. -#: actions/siteadminpanel.php:268 +#: actions/siteadminpanel.php:293 msgid "Default timezone" msgstr "" #. TRANS: Dropdown title on site settings panel. -#: actions/siteadminpanel.php:270 +#: actions/siteadminpanel.php:295 msgid "Default timezone for the site; usually UTC." msgstr "" #. TRANS: Dropdown label on site settings panel. -#: actions/siteadminpanel.php:277 +#: actions/siteadminpanel.php:302 msgid "Default language" msgstr "" #. TRANS: Dropdown title on site settings panel. -#: actions/siteadminpanel.php:280 -msgid "Site language when autodetection from browser settings is not available" +#: actions/siteadminpanel.php:305 +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" #. TRANS: Fieldset legend on site settings panel. -#: actions/siteadminpanel.php:289 +#: actions/siteadminpanel.php:314 msgctxt "LEGEND" msgid "Limits" msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:294 +#: actions/siteadminpanel.php:319 msgid "Text limit" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:296 +#: actions/siteadminpanel.php:321 msgid "Maximum number of characters for notices." msgstr "" #. TRANS: Field label on site settings panel. -#: actions/siteadminpanel.php:302 +#: actions/siteadminpanel.php:327 msgid "Dupe limit" msgstr "" #. TRANS: Field title on site settings panel. -#: actions/siteadminpanel.php:304 +#: actions/siteadminpanel.php:329 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#. TRANS: Fieldset legend for form to change logo. +#: actions/siteadminpanel.php:339 +msgid "Logo" +msgstr "" + +#. TRANS: Field label for StatusNet site logo. +#: actions/siteadminpanel.php:346 +msgid "Site logo" +msgstr "" + +#. TRANS: Field label for SSL StatusNet site logo. +#: actions/siteadminpanel.php:354 +msgid "SSL logo" +msgstr "" + #. TRANS: Button title for saving site settings. -#: actions/siteadminpanel.php:323 -msgid "Save site settings" +#: actions/siteadminpanel.php:377 +msgid "Save the site settings." msgstr "" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -7627,45 +7348,6 @@ msgstr "" msgid "Wrong image type for avatar URL \"%s\"." msgstr "" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -#: actions/userdesignsettings.php:75 lib/designsettings.php:61 -msgid "Profile design" -msgstr "" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -#: actions/userdesignsettings.php:86 lib/designsettings.php:72 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -#: actions/userdesignsettings.php:297 -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -#: actions/userdesignsettings.php:335 -msgid "Design settings" -msgstr "" - -#. TRANS: Checkbox label on Profile design page. -#: actions/userdesignsettings.php:351 -msgid "View profile designs" -msgstr "" - -#. TRANS: Title for checkbox on Profile design page. -#: actions/userdesignsettings.php:353 -msgid "Show or hide profile designs." -msgstr "" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#: actions/userdesignsettings.php:361 -msgid "Background file" -msgstr "" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #: actions/usergroups.php:67 @@ -8015,7 +7697,7 @@ msgstr "" #. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens -#: classes/Profile.php:186 classes/User_group.php:248 +#: classes/Profile.php:186 classes/User_group.php:247 #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" @@ -8152,43 +7834,58 @@ msgstr "" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. -#: classes/User.php:417 +#: classes/User.php:414 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" #. TRANS: Exception thrown when trying view "repeated to me". -#: classes/User.php:821 +#: classes/User.php:813 msgid "Not implemented since inbox change." msgstr "" #. TRANS: Server exception. -#: classes/User.php:907 +#: classes/User.php:899 msgid "No single user defined for single-user mode." msgstr "" #. TRANS: Server exception. -#: classes/User.php:911 +#: classes/User.php:903 msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +#: classes/User.php:1037 +msgid "No user with that email address or username." +msgstr "" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +#: classes/User.php:1055 +msgid "No registered email address for that user." +msgstr "" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +#: classes/User.php:1070 +msgid "Error saving address confirmation." +msgstr "" + #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:540 +#: classes/User_group.php:534 msgid "Could not create group." msgstr "" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:550 +#: classes/User_group.php:544 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:573 +#: classes/User_group.php:567 msgid "Could not set group membership." msgstr "" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:590 +#: classes/User_group.php:584 msgid "Could not save local group info." msgstr "" @@ -8280,25 +7977,25 @@ msgid "Untitled page" msgstr "" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. -#: lib/action.php:363 +#: lib/action.php:352 msgctxt "TOOLTIP" msgid "Show more" msgstr "" #. TRANS: Inline reply form submit button: submits a reply comment. -#: lib/action.php:366 +#: lib/action.php:355 msgctxt "BUTTON" msgid "Reply" msgstr "" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. -#: lib/action.php:369 lib/threadednoticelist.php:396 +#: lib/action.php:358 lib/threadednoticelist.php:396 msgid "Write a reply..." msgstr "" #. TRANS: Tab on the notice form. -#: lib/action.php:619 +#: lib/action.php:608 msgctxt "TAB" msgid "Status" msgstr "" @@ -8307,7 +8004,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:995 +#: lib/action.php:984 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -8315,7 +8012,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:998 +#: lib/action.php:987 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -8324,7 +8021,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:1005 +#: lib/action.php:994 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -8334,39 +8031,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:1023 +#: lib/action.php:1012 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:1030 +#: lib/action.php:1019 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:1034 +#: lib/action.php:1023 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1066 +#: lib/action.php:1055 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1412 +#: lib/action.php:1404 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1422 +#: lib/action.php:1414 msgid "Before" msgstr "" @@ -8483,12 +8180,6 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#: lib/adminpanelaction.php:274 -msgid "Unable to delete design setting." -msgstr "" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. #: lib/adminpanelnav.php:66 lib/settingsnav.php:66 @@ -8525,101 +8216,88 @@ msgstr "" #. TRANS: Menu item title in administrator navigation panel. #: lib/adminpanelnav.php:99 -msgid "Design configuration" -msgstr "" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -#: lib/adminpanelnav.php:101 lib/groupnav.php:143 lib/settingsnav.php:117 -msgctxt "MENU" -msgid "Design" -msgstr "" - -#. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:107 msgid "User configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:109 +#: lib/adminpanelnav.php:101 msgctxt "MENU" msgid "User" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:115 +#: lib/adminpanelnav.php:107 msgid "Access configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:117 +#: lib/adminpanelnav.php:109 msgctxt "MENU" msgid "Access" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:123 +#: lib/adminpanelnav.php:115 msgid "Paths configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:125 +#: lib/adminpanelnav.php:117 msgctxt "MENU" msgid "Paths" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:131 +#: lib/adminpanelnav.php:123 msgid "Sessions configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:133 +#: lib/adminpanelnav.php:125 msgctxt "MENU" msgid "Sessions" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:139 +#: lib/adminpanelnav.php:131 msgid "Edit site notice" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:141 +#: lib/adminpanelnav.php:133 msgctxt "MENU" msgid "Site notice" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:147 +#: lib/adminpanelnav.php:139 msgid "Snapshots configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:149 +#: lib/adminpanelnav.php:141 msgctxt "MENU" msgid "Snapshots" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:155 +#: lib/adminpanelnav.php:147 msgid "Set site license" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:157 +#: lib/adminpanelnav.php:149 msgctxt "MENU" msgid "License" msgstr "" #. TRANS: Menu item title in administrator navigation panel. -#: lib/adminpanelnav.php:163 +#: lib/adminpanelnav.php:155 msgid "Plugins configuration" msgstr "" #. TRANS: Menu item in administrator navigation panel. -#: lib/adminpanelnav.php:165 +#: lib/adminpanelnav.php:157 msgctxt "MENU" msgid "Plugins" msgstr "" @@ -8635,23 +8313,23 @@ msgid "No application for that consumer key." msgstr "" #. TRANS: Authorization exception thrown when a user without API access tries to access the API. -#: lib/apiauth.php:203 lib/apiauth.php:286 +#: lib/apiauth.php:203 lib/apiauth.php:291 msgid "Not allowed to use API." msgstr "" #. TRANS: OAuth exception given when an incorrect access token was given for a user. -#: lib/apiauth.php:226 +#: lib/apiauth.php:231 msgid "Bad access token." msgstr "" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). -#: lib/apiauth.php:231 +#: lib/apiauth.php:236 msgid "No user for that token." msgstr "" #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. -#: lib/apiauth.php:273 lib/apiauth.php:304 +#: lib/apiauth.php:278 lib/apiauth.php:309 msgid "Could not authenticate you." msgstr "" @@ -9527,50 +9205,6 @@ msgstr "" msgid "Delete this user" msgstr "" -#. TRANS: Form legend of form for changing the page design. -#: lib/designform.php:110 -msgid "Change design" -msgstr "" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -#: lib/designform.php:126 -msgid "Change colours" -msgstr "" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -#: lib/designform.php:133 -msgid "Use defaults" -msgstr "" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -#: lib/designform.php:153 -msgid "Upload file" -msgstr "" - -#. TRANS: Instructions for form on profile design page. -#: lib/designform.php:158 -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -#: lib/designform.php:189 -msgctxt "RADIO" -msgid "On" -msgstr "" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -#: lib/designform.php:206 -msgctxt "RADIO" -msgid "Off" -msgstr "" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -#: lib/designsettings.php:245 -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #: lib/discovery.php:153 #, php-format @@ -9815,14 +9449,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#: lib/groupnav.php:146 -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. #: lib/groupprofileblock.php:94 msgid "Group actions" @@ -11091,7 +10717,7 @@ msgid "Revoke the \"%s\" role from this user" msgstr "" #. TRANS: Client error on action trying to visit a non-existing page. -#: lib/router.php:1159 +#: lib/router.php:1152 msgid "Page not found." msgstr "" @@ -11283,52 +10909,47 @@ msgstr "" msgid "Change email handling" msgstr "" -#. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:119 -msgid "Design your profile" -msgstr "" - #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:124 +#: lib/settingsnav.php:117 msgctxt "MENU" msgid "URL" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:126 +#: lib/settingsnav.php:119 msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:134 +#: lib/settingsnav.php:127 msgctxt "MENU" msgid "IM" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:136 +#: lib/settingsnav.php:129 msgid "Updates by instant messenger (IM)" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:143 +#: lib/settingsnav.php:136 msgctxt "MENU" msgid "SMS" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:145 +#: lib/settingsnav.php:138 msgid "Updates by SMS" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:151 +#: lib/settingsnav.php:144 msgctxt "MENU" msgid "Connections" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:153 +#: lib/settingsnav.php:146 msgid "Authorized connected applications" msgstr "" @@ -11781,3 +11402,43 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#: scripts/update_ostatus_profiles.php:56 +#, php-format +msgid "Invalid avatar URL %s." +msgstr "" + +#. TRANS: Server exception. %s is a URI. +#: scripts/update_ostatus_profiles.php:67 +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "" + +#. TRANS: Server exception. %s is a URL. +#: scripts/update_ostatus_profiles.php:77 +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "" + +#. TRANS: Exception. %s is a profile URL. +#: scripts/update_ostatus_profiles.php:136 +#, php-format +msgid "Could not reach profile page %s." +msgstr "" + +#. TRANS: Exception. %s is a URL. +#: scripts/update_ostatus_profiles.php:187 +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "" + +#. TRANS: Exception. +#: scripts/update_ostatus_profiles.php:212 +msgid "Not a valid webfinger address." +msgstr "" + +#: scripts/update_ostatus_profiles.php:264 +#, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 15d2958895..dae6829ff8 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:50+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -114,7 +114,6 @@ msgid "Save access settings" msgstr "Spara inställningar för Ã¥tkomst" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -130,7 +129,6 @@ msgstr "Spara inställningar för Ã¥tkomst" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -204,7 +202,6 @@ msgstr "Ingen sÃ¥dan sida" #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -368,7 +365,6 @@ msgstr "Du mÃ¥ste ange ett värdet pÃ¥ parametern 'device': sms, im, none" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Kunde inte uppdatera användare." @@ -383,7 +379,6 @@ msgstr "Kunde inte spara profil." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -398,24 +393,6 @@ msgstr[1] "" "Servern kunde inte hantera sÃ¥ mycket POST-data (%s byte) pÃ¥ grund av sin " "nuvarande konfiguration." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Kunde inte spara dina utseendeinställningar." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Kunde inte uppdatera din profils utseende." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -505,6 +482,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -735,7 +714,6 @@ msgstr "grupper pÃ¥ %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Du mÃ¥ste vara en administratör för att redigera gruppen." @@ -845,7 +823,6 @@ msgstr "Databasfel vid infogning av oauth_token_association." #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -854,7 +831,6 @@ msgstr "Databasfel vid infogning av oauth_token_association." #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Oväntat inskick av formulär." @@ -1211,7 +1187,6 @@ msgstr "Du mÃ¥ste vara inloggad för att lämna en grupp." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1298,6 +1273,7 @@ msgid "Join request canceled." msgstr "Anslutningsbegäran avbruten." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s är inte i moderationskön för dina prenumerationer." @@ -1378,7 +1354,7 @@ msgstr "Okänd grupp." #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. msgid "Already a member." -msgstr "Redan medlem." +msgstr "Redan en medlem." #. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group. msgid "Blocked by admin." @@ -1449,7 +1425,6 @@ msgstr "Ingen sÃ¥dan bilaga." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1955,150 +1930,6 @@ msgstr "Ta inte bort den här användaren." msgid "Delete this user." msgstr "Ta bort den här användaren." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Utseende" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Utseendeinställningar för den här StatusNet-webbplatsen" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Ogiltig webbadress för logtyp." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ogiltig webbadress för SSL-logtyp." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Tema inte tillgängligt: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Byt logotyp" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Webbplatslogotyp" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL-logotyp" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Byt tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Webbplatstema" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema för webbplatsen." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Anpassat tema" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Ändra bakgrundsbild" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Bakgrund" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Du kan ladda upp en bakgrundsbild för denna webbplats. Den maximala " -"filstorleken är %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "PÃ¥" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Av" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Sätt pÃ¥ eller stäng av bakgrundsbild." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Upprepa bakgrundsbild" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Byt färger" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "InnehÃ¥ll" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Sidofält" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Text" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Länkar" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Avancerat" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Anpassad CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Använd standardvärden" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Ã…terställ standardutseende." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Ã…terställ till standard." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Spara utseende." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Denna notis är inte en favorit!" @@ -2701,30 +2532,6 @@ msgstr "Databasfel vid blockering av användare frÃ¥n grupp." msgid "No ID." msgstr "Ingen ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Du mÃ¥ste vara inloggad för att redigera en grupp." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Gruppens utseende" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Anpassa hur din grupp ser ut genom att välja bakgrundbild och färgpalett." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Det gick inte att uppdatera utseendeinställningarna." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Utseendeinställningar sparade." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3382,14 +3189,6 @@ msgstr "Inget innehÃ¥ll!" msgid "No recipient specified." msgstr "Ingen mottagare angiven." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Skicka inte meddelande till dig själv; viska lite tyst till dig själv " -"istället." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Meddelande skickat" @@ -3670,7 +3469,7 @@ msgid "Confirm" msgstr "Bekräfta" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Samma lösenord som ovan." @@ -3846,30 +3645,6 @@ msgstr "Katalog med avatarer" msgid "Directory where avatars are located." msgstr "Katalog där avatarer finns." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Bakgrunder" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Server för bakgrunder." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Websökväg till bakgrunder." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Server för bakgrunder pÃ¥ SSL-sidor." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "Webbsökväg till bakgrunder pÃ¥ SSL-sidor." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Katalog där bakgrunder finns." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Bilagor" @@ -4660,7 +4435,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 eller fler tecken, och glöm inte bort det!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Ã…terställ" @@ -4669,18 +4443,6 @@ msgstr "Ã…terställ" msgid "Enter a nickname or email address." msgstr "Skriv in ett smeknamn eller en e-postadress." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "Ingen användare med den e-postadressen eller användarnamn." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ingen registrerad e-postadress för den användaren." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Fel vid sparande av adressbekräftelse." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5633,6 +5395,14 @@ msgstr "Webbplatsnamnet mÃ¥ste vara minst ett tecken lÃ¥ngt." msgid "You must have a valid contact email address." msgstr "Du mÃ¥ste ha en giltig e-postadress." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Ogiltig webbadress för logtyp." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ogiltig webbadress för SSL-logtyp." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5703,7 +5473,9 @@ msgid "Default language" msgstr "StandardsprÃ¥k" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "WebbplatssprÃ¥k när automatisk identifiering av inställningar i webbläsaren " "inte är tillgänglig" @@ -5730,8 +5502,22 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hur länge användare mÃ¥ste vänta (i sekunder) för att posta samma sak igen." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logotyp" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Webbplatslogotyp" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL-logotyp" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Spara webbplatsinställningar" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6492,39 +6278,6 @@ msgstr "Kan inte läsa avatar-URL \"%s\"." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Fel bildtyp för avatar-URL \"%s\"." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Profilutseende" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Anpassa hur din profil ser ut genom att välja bakgrundbild och färgpalett." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Smaklig mÃ¥ltid!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Utseendeinställningar" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Visa profilutseenden" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Visa eller göm profilutseenden." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Fil för bakgrund" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6976,6 +6729,18 @@ msgstr "Ingen enskild användare definierad för enanvändarläge." msgid "Single-user mode code called when not enabled." msgstr "Enanvändarlägeskod anropad när den inte var aktiverad." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "Ingen användare med den e-postadressen eller användarnamn." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ingen registrerad e-postadress för den användaren." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Fel vid sparande av adressbekräftelse." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Kunde inte skapa grupp." @@ -7241,11 +7006,6 @@ msgstr "showForm() är inte implementerat." msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Kunde inte ta bort utseendeinställning." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7274,17 +7034,6 @@ msgctxt "MENU" msgid "Site" msgstr "Webbplats" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Konfiguration av utseende" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Utseende" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Konfiguration av användare" @@ -8118,44 +7867,6 @@ msgstr "Ta bort" msgid "Delete this user" msgstr "Ta bort denna användare" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Ändra utseende" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Byt färger" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Använd standardvärden" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Ladda upp fil" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Du kan ladda upp din personliga bakgrundbild. Den maximala filstorleken är " -"2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "PÃ¥" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Av" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Standardvärden för utseende Ã¥terställda." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8368,13 +8079,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Lägg till eller redigera %s logotyp" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Lägg till eller redigera %s utseende" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Ã…tgärder för grupp" @@ -8488,9 +8192,8 @@ msgid "Invite more colleagues" msgstr "Bjud in fler kollegor" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Bjud in fler kollegor" +msgstr "Bjud in kollegor" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8515,9 +8218,8 @@ msgid "Send" msgstr "Skicka" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Inbjudningar" +msgstr "Skicka inbjudningar." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8587,9 +8289,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s följer nu %2$s." +msgstr "%1$s följer nu dig pÃ¥ %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -9716,10 +9418,6 @@ msgstr "E-post" msgid "Change email handling" msgstr "Ändra e-posthantering" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Designa din profil" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10131,3 +9829,242 @@ msgstr "Ogiltig XML, saknar XRD-rot." #, php-format msgid "Getting backup from file '%s'." msgstr "Hämtar säkerhetskopia frÃ¥n filen '%s'." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Kan inte läsa avatar-URL \"%s\"." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Fel vid uppdatering av fjärrprofil." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Det gick inte att hitta tjänster för %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Kunde inte skapa profiltagg." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Kunde inte hitta en användare med smeknamnet %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Inte en giltig e-postadress." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Kunde inte spara profil." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Kunde inte spara dina utseendeinställningar." + +#~ msgid "Could not update your design." +#~ msgstr "Kunde inte uppdatera din profils utseende." + +#~ msgid "Design" +#~ msgstr "Utseende" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Utseendeinställningar för den här StatusNet-webbplatsen" + +#~ msgid "Theme not available: %s." +#~ msgstr "Tema inte tillgängligt: %s." + +#~ msgid "Change logo" +#~ msgstr "Byt logotyp" + +#~ msgid "Change theme" +#~ msgstr "Byt tema" + +#~ msgid "Site theme" +#~ msgstr "Webbplatstema" + +#~ msgid "Theme for the site." +#~ msgstr "Tema för webbplatsen." + +#~ msgid "Custom theme" +#~ msgstr "Anpassat tema" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv." + +#~ msgid "Change background image" +#~ msgstr "Ändra bakgrundsbild" + +#~ msgid "Background" +#~ msgstr "Bakgrund" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Du kan ladda upp en bakgrundsbild för denna webbplats. Den maximala " +#~ "filstorleken är %1$s." + +#~ msgid "On" +#~ msgstr "PÃ¥" + +#~ msgid "Off" +#~ msgstr "Av" + +#~ msgid "Turn background image on or off." +#~ msgstr "Sätt pÃ¥ eller stäng av bakgrundsbild." + +#~ msgid "Tile background image" +#~ msgstr "Upprepa bakgrundsbild" + +#~ msgid "Change colors" +#~ msgstr "Byt färger" + +#~ msgid "Content" +#~ msgstr "InnehÃ¥ll" + +#~ msgid "Sidebar" +#~ msgstr "Sidofält" + +#~ msgid "Text" +#~ msgstr "Text" + +#~ msgid "Links" +#~ msgstr "Länkar" + +#~ msgid "Advanced" +#~ msgstr "Avancerat" + +#~ msgid "Custom CSS" +#~ msgstr "Anpassad CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Använd standardvärden" + +#~ msgid "Restore default designs." +#~ msgstr "Ã…terställ standardutseende." + +#~ msgid "Reset back to default." +#~ msgstr "Ã…terställ till standard." + +#~ msgid "Save design." +#~ msgstr "Spara utseende." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Du mÃ¥ste vara inloggad för att redigera en grupp." + +#~ msgid "Group design" +#~ msgstr "Gruppens utseende" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Anpassa hur din grupp ser ut genom att välja bakgrundbild och färgpalett." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Det gick inte att uppdatera utseendeinställningarna." + +#~ msgid "Design preferences saved." +#~ msgstr "Utseendeinställningar sparade." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Skicka inte meddelande till dig själv; viska lite tyst till dig själv " +#~ "istället." + +#~ msgid "Backgrounds" +#~ msgstr "Bakgrunder" + +#~ msgid "Server for backgrounds." +#~ msgstr "Server för bakgrunder." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Websökväg till bakgrunder." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Server för bakgrunder pÃ¥ SSL-sidor." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "Webbsökväg till bakgrunder pÃ¥ SSL-sidor." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Katalog där bakgrunder finns." + +#~ msgid "Profile design" +#~ msgstr "Profilutseende" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Anpassa hur din profil ser ut genom att välja bakgrundbild och färgpalett." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Smaklig mÃ¥ltid!" + +#~ msgid "Design settings" +#~ msgstr "Utseendeinställningar" + +#~ msgid "View profile designs" +#~ msgstr "Visa profilutseenden" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Visa eller göm profilutseenden." + +#~ msgid "Background file" +#~ msgstr "Fil för bakgrund" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Kunde inte ta bort utseendeinställning." + +#~ msgid "Design configuration" +#~ msgstr "Konfiguration av utseende" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Utseende" + +#~ msgid "Change design" +#~ msgstr "Ändra utseende" + +#~ msgid "Change colours" +#~ msgstr "Byt färger" + +#~ msgid "Use defaults" +#~ msgstr "Använd standardvärden" + +#~ msgid "Upload file" +#~ msgstr "Ladda upp fil" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Du kan ladda upp din personliga bakgrundbild. Den maximala filstorleken " +#~ "är 2MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "PÃ¥" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Av" + +#~ msgid "Design defaults restored." +#~ msgstr "Standardvärden för utseende Ã¥terställda." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Lägg till eller redigera %s utseende" + +#~ msgid "Design your profile" +#~ msgstr "Designa din profil" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index eefb5cf821..b69abb6374 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:51+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -100,7 +100,6 @@ msgid "Save access settings" msgstr "à°…à°‚à°¦à±à°¬à°¾à°Ÿà± అమరికలనౠభదà±à°°à°ªà°°à°šà±" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -116,7 +115,6 @@ msgstr "à°…à°‚à°¦à±à°¬à°¾à°Ÿà± అమరికలనౠభదà±à°°à°ªà°°à°š #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -189,7 +187,6 @@ msgstr "à°…à°Ÿà±à°µà°‚à°Ÿà°¿ పేజీ లేదà±." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -350,7 +347,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." @@ -365,7 +361,6 @@ msgstr "à°ªà±à°°à±Šà°«à±ˆà°²à±à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à± #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -376,25 +371,6 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -#, fuzzy -msgid "Could not update your design." -msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -485,6 +461,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "మీ à°¸à±à°¨à±‡à°¹à°¿à°¤à±à°²à± కాని వాడà±à°•à°°à±à°²à°•à°¿ నేరౠసందేశాలౠపంపించలేరà±." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "మీకౠమీరే సందేశానà±à°¨à°¿ పంపà±à°•ోకండి; దాని బదà±à°²à± మీ చెవిలో మీరే మెలà±à°²à°—à°¾ చెపà±à°ªà±à°•ోండి." @@ -713,7 +691,6 @@ msgstr "%s పై à°—à±à°‚à°ªà±à°²à±" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "à°—à±à°‚à°ªà±à°¨à°¿ మారà±à°šà°¡à°¾à°¨à°¿à°•à°¿ మీరౠనిరà±à°µà°¾à°¹à°•à±à°²à°¯à°¿ ఉండాలి." @@ -829,7 +806,6 @@ msgstr "అవతారానà±à°¨à°¿ పెటà±à°Ÿà°¡à°‚లో పొరప #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -838,7 +814,6 @@ msgstr "అవతారానà±à°¨à°¿ పెటà±à°Ÿà°¡à°‚లో పొరప #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "" @@ -1188,7 +1163,6 @@ msgstr "à°—à±à°‚à°ªà±à°¨à°¿ వదిలివెళà±à°³à°¡à°¾à°¨à°¿à°•à°¿ #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1273,6 +1247,7 @@ msgid "Join request canceled." msgstr "" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "à°ˆ à°—à±à°‚à°ªà±à°²à±‹ వాడà±à°•à°°à±à°²à± జాబితా." @@ -1428,7 +1403,6 @@ msgstr "à°…à°Ÿà±à°µà°‚à°Ÿà°¿ జోడింపౠలేదà±." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1925,152 +1899,6 @@ msgstr "à°ˆ వాడà±à°•రిని తొలగించకండి." msgid "Delete this user." msgstr "à°ˆ వాడà±à°•రిని తొలగించండి." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "రూపà±à°°à±‡à°–à°²à±" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "à°ˆ à°¸à±à°Ÿà±‡à°Ÿà°¸à±‌నెటౠసైటà±à°•à°¿ రూపà±à°°à±‡à°–à°² అమరికలà±" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "à°šà°¿à°¹à±à°¨à°ªà± URL చెలà±à°²à°¦à±." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "SSL à°šà°¿à°¹à±à°¨à°ªà± URL చెలà±à°²à°¦à±." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "అలంకారం à°…à°‚à°¦à±à°¬à°¾à°Ÿà±à°²à±‹ లేదà±: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "à°šà°¿à°¹à±à°¨à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "సైటౠచిహà±à°¨à°‚" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "SSL à°šà°¿à°¹à±à°¨à°‚" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "అలంకారానà±à°¨à°¿ మారà±à°šà±" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "సైటౠఅలంకారం" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "సైటà±à°•à°¿ అలంకారం." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "అభిమత అలంకారం" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "నేపథà±à°¯à°‚" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "సైటà±à°•à°¿ మీరౠనేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ à°Žà°•à±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "ఆనà±" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "ఆఫà±" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -#, fuzzy -msgid "Turn background image on or off." -msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -#, fuzzy -msgid "Tile background image" -msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "విషయం" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "పకà±à°•పటà±à°Ÿà±€" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "పాఠà±à°¯à°‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "లంకెలà±" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "ఉనà±à°¨à°¤" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "à°ªà±à°°à°¤à±à°¯à±‡à°• CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -#, fuzzy -msgid "Restore default designs." -msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -#, fuzzy -msgid "Reset back to default." -msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà°‚à°¡à°¿." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "à°ˆ నోటీసౠఇషà±à°Ÿà°¾à°‚à°¶à°‚ కాదà±!" @@ -2681,29 +2509,6 @@ msgstr "à°ˆ వాడà±à°•రిని à°ˆ à°—à±à°‚పౠనà±à°‚à°¡à°¿ à°¨ msgid "No ID." msgstr "à°à°¡à±€ లేదà±." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "à°—à±à°‚à°ªà±à°¨à°¿ మారà±à°šà°¡à°¾à°¨à°¿à°•à°¿ మీరౠపà±à°°à°µà±‡à°¶à°¿à°‚à°šà°¿ ఉండాలి." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "à°—à±à°‚పౠఅలంకారం" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలనౠభదà±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "ఈమెయిలౠఅభిరà±à°šà±à°²à± à°­à°¦à±à°°à°®à°¯à±à°¯à°¾à°¯à°¿." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3356,12 +3161,6 @@ msgstr "విషయం లేదà±!" msgid "No recipient specified." msgstr "ఎవరికి పంపించాలో పేరà±à°•ొనలేదà±." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "మీకౠమీరే సందేశానà±à°¨à°¿ పంపà±à°•ోకండి; దాని బదà±à°²à± మీలో మీరే మెలà±à°²à°—à°¾ చెపà±à°ªà±à°•ోండి." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "సందేశానà±à°¨à°¿ పంపించాం" @@ -3642,7 +3441,7 @@ msgid "Confirm" msgstr "నిరà±à°¥à°¾à°°à°¿à°‚à°šà°‚à°¡à°¿" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "పై సంకేతపదం వలెనే." @@ -3826,31 +3625,6 @@ msgstr "అవతారాల సంచయం" msgid "Directory where avatars are located." msgstr "" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "నేపథà±à°¯à°¾à°²à±" - -#. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy -msgid "Server for backgrounds." -msgstr "సైటà±à°•à°¿ అలంకారం." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "జోడింపà±à°²à±" @@ -4649,7 +4423,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 లేదా అంతకంటే à°Žà°•à±à°•à±à°µ à°…à°•à±à°·à°°à°¾à°²à±, మరà±à°šà°¿à°ªà±‹à°•à°‚à°¡à°¿!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "రీసెటà±" @@ -4658,18 +4431,6 @@ msgstr "రీసెటà±" msgid "Enter a nickname or email address." msgstr "పేరౠలేదా ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ ఇవà±à°µà°‚à°¡à°¿." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "à°† ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ లేదా వాడà±à°•రిపేరà±à°¤à±‹ వాడà±à°•à°°à±à°²à±†à°µà°°à±‚ లేరà±." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "à°ˆ వాడà±à°•రికై నమోదైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾à°²à± à°à°®à±€ లేవà±." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "à°šà°¿à°°à±à°¨à°¾à°®à°¾ నిరà±à°§à°¾à°°à°£à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5609,6 +5370,14 @@ msgstr "సైటౠపేరౠతపà±à°ªà°¨à°¿à°¸à°°à°¿à°—à°¾ à°¸à±à°¨à± msgid "You must have a valid contact email address." msgstr "మీకౠసరైన సంపà±à°°à°¦à°¿à°‚పౠఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ ఉండాలి." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "à°šà°¿à°¹à±à°¨à°ªà± URL చెలà±à°²à°¦à±." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "SSL à°šà°¿à°¹à±à°¨à°ªà± URL చెలà±à°²à°¦à±." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5679,7 +5448,9 @@ msgid "Default language" msgstr "à°…à°ªà±à°°à°®à±‡à°¯ భాష" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "విహారిణి అమరికల à°¨à±à°‚à°¡à°¿ భాషని à°¸à±à°µà°¯à°‚చాలకంగా పొందలేకపోయినపà±à°ªà±à°¡à± ఉపయోగించే సైటౠభాష" #. TRANS: Fieldset legend on site settings panel. @@ -5704,8 +5475,22 @@ msgstr "పాఠà±à°¯à°ªà± పరిమితి" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "అదే విషయానà±à°¨à°¿ మళà±à°³à±€ టపా చేయడానికి వాడà±à°•à°°à±à°²à± à°Žà°‚à°¤ సమయం (à°•à±à°·à°£à°¾à°²à±à°²à±‹) వేచివà±à°‚డాలి." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "à°šà°¿à°¹à±à°¨à°‚" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "సైటౠచిహà±à°¨à°‚" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "SSL à°šà°¿à°¹à±à°¨à°‚" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "సైటౠఅమరికలనౠభదà±à°°à°ªà°°à°šà±" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6457,41 +6242,6 @@ msgstr "'%s' అనే అవతారపౠURL తపà±à°ªà±" msgid "Wrong image type for avatar URL \"%s\"." msgstr "'%s' కొరకౠతపà±à°ªà±à°¡à± బొమà±à°® à°°à°•à°‚" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -#, fuzzy -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "రూపà±à°°à±‡à°–à°² అమరికలà±" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#. TRANS: Title for checkbox on Profile design page. -#, fuzzy -msgid "Show or hide profile designs." -msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -#, fuzzy -msgid "Background file" -msgstr "నేపథà±à°¯à°‚" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6930,6 +6680,18 @@ msgstr "" msgid "Single-user mode code called when not enabled." msgstr "" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "à°† ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ లేదా వాడà±à°•రిపేరà±à°¤à±‹ వాడà±à°•à°°à±à°²à±†à°µà°°à±‚ లేరà±." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "à°ˆ వాడà±à°•రికై నమోదైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾à°²à± à°à°®à±€ లేవà±." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "à°šà°¿à°°à±à°¨à°¾à°®à°¾ నిరà±à°§à°¾à°°à°£à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "à°—à±à°‚à°ªà±à°¨à°¿ సృషà±à°Ÿà°¿à°‚చలేకపోయాం." @@ -7197,12 +6959,6 @@ msgstr "" msgid "saveSettings() not implemented." msgstr "" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -#, fuzzy -msgid "Unable to delete design setting." -msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7231,17 +6987,6 @@ msgctxt "MENU" msgid "Site" msgstr "సైటà±" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "రూపకలà±à°ªà°¨ à°¸à±à°µà°°à±‚పణం" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "రూపà±à°°à±‡à°–à°²à±" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "వాడà±à°•à°°à°¿ à°¸à±à°µà°°à±‚పణం" @@ -8096,43 +7841,6 @@ msgstr "తొలగించà±" msgid "Delete this user" msgstr "à°ˆ వాడà±à°•రిని తొలగించà±" -#. TRANS: Form legend of form for changing the page design. -#, fuzzy -msgid "Change design" -msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà±" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "ఫైలà±à°¨à°¿ à°Žà°•à±à°•à°¿à°‚à°šà±" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "మీ à°µà±à°¯à°•à±à°¤à°¿à°—à°¤ నేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మీరౠఎకà±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం 2మెబై." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "ఆనà±" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "ఆఫà±" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "" - #. TRANS: Exception. %s is an ID. #, fuzzy, php-format msgid "Unable to find services for %s." @@ -8342,13 +8050,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "à°—à±à°‚పౠచరà±à°¯à°²à±" @@ -9692,10 +9393,6 @@ msgstr "ఈమెయిలà±" msgid "Change email handling" msgstr "" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "వాడà±à°•à°°à°¿ à°ªà±à°°à±Šà°«à±ˆà°²à±" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10109,3 +9806,220 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "'%s' అనే అవతారపౠURL తపà±à°ªà±" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "దూరపౠపà±à°°à±Šà°ªà±ˆà°²à±à°¨à°¿ తాజాకరించటంలో పొరపాటà±" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "మీ ఉపకరణానà±à°¨à°¿ మారà±à°šà°¡à°¾à°¨à°¿à°•à°¿ à°ˆ ఫారానà±à°¨à°¿ ఉపయోగించండి." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "à°ªà±à°°à±Šà°«à±ˆà°²à±à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "సరైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ కాదà±:" + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "à°ªà±à°°à±Šà°«à±ˆà°²à±à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." + +#~ msgid "Unable to save your design settings." +#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." + +#, fuzzy +#~ msgid "Could not update your design." +#~ msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." + +#~ msgid "Design" +#~ msgstr "రూపà±à°°à±‡à°–à°²à±" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "à°ˆ à°¸à±à°Ÿà±‡à°Ÿà°¸à±‌నెటౠసైటà±à°•à°¿ రూపà±à°°à±‡à°–à°² అమరికలà±" + +#~ msgid "Theme not available: %s." +#~ msgstr "అలంకారం à°…à°‚à°¦à±à°¬à°¾à°Ÿà±à°²à±‹ లేదà±: %s." + +#~ msgid "Change logo" +#~ msgstr "à°šà°¿à°¹à±à°¨à°¾à°¨à±à°¨à°¿ మారà±à°šà±" + +#~ msgid "Change theme" +#~ msgstr "అలంకారానà±à°¨à°¿ మారà±à°šà±" + +#~ msgid "Site theme" +#~ msgstr "సైటౠఅలంకారం" + +#~ msgid "Theme for the site." +#~ msgstr "సైటà±à°•à°¿ అలంకారం." + +#~ msgid "Custom theme" +#~ msgstr "అభిమత అలంకారం" + +#~ msgid "Change background image" +#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" + +#~ msgid "Background" +#~ msgstr "నేపథà±à°¯à°‚" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "సైటà±à°•à°¿ మీరౠనేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ à°Žà°•à±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం %1$s." + +#~ msgid "On" +#~ msgstr "ఆనà±" + +#~ msgid "Off" +#~ msgstr "ఆఫà±" + +#, fuzzy +#~ msgid "Turn background image on or off." +#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" + +#, fuzzy +#~ msgid "Tile background image" +#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" + +#~ msgid "Change colors" +#~ msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" + +#~ msgid "Content" +#~ msgstr "విషయం" + +#~ msgid "Sidebar" +#~ msgstr "పకà±à°•పటà±à°Ÿà±€" + +#~ msgid "Text" +#~ msgstr "పాఠà±à°¯à°‚" + +#~ msgid "Links" +#~ msgstr "లంకెలà±" + +#~ msgid "Advanced" +#~ msgstr "ఉనà±à°¨à°¤" + +#~ msgid "Custom CSS" +#~ msgstr "à°ªà±à°°à°¤à±à°¯à±‡à°• CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" + +#, fuzzy +#~ msgid "Restore default designs." +#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" + +#, fuzzy +#~ msgid "Reset back to default." +#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" + +#~ msgid "Save design." +#~ msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà°‚à°¡à°¿." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "à°—à±à°‚à°ªà±à°¨à°¿ మారà±à°šà°¡à°¾à°¨à°¿à°•à°¿ మీరౠపà±à°°à°µà±‡à°¶à°¿à°‚à°šà°¿ ఉండాలి." + +#~ msgid "Group design" +#~ msgstr "à°—à±à°‚పౠఅలంకారం" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." + +#~ msgid "Unable to update your design settings." +#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలనౠభదà±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." + +#~ msgid "Design preferences saved." +#~ msgstr "ఈమెయిలౠఅభిరà±à°šà±à°²à± à°­à°¦à±à°°à°®à°¯à±à°¯à°¾à°¯à°¿." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "మీకౠమీరే సందేశానà±à°¨à°¿ పంపà±à°•ోకండి; దాని బదà±à°²à± మీలో మీరే మెలà±à°²à°—à°¾ చెపà±à°ªà±à°•ోండి." + +#~ msgid "Backgrounds" +#~ msgstr "నేపథà±à°¯à°¾à°²à±" + +#, fuzzy +#~ msgid "Server for backgrounds." +#~ msgstr "సైటà±à°•à°¿ అలంకారం." + +#~ msgid "Profile design" +#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" + +#, fuzzy +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." + +#~ msgid "Design settings" +#~ msgstr "రూపà±à°°à±‡à°–à°² అమరికలà±" + +#~ msgid "View profile designs" +#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" + +#, fuzzy +#~ msgid "Show or hide profile designs." +#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" + +#, fuzzy +#~ msgid "Background file" +#~ msgstr "నేపథà±à°¯à°‚" + +#, fuzzy +#~ msgid "Unable to delete design setting." +#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." + +#~ msgid "Design configuration" +#~ msgstr "రూపకలà±à°ªà°¨ à°¸à±à°µà°°à±‚పణం" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "రూపà±à°°à±‡à°–à°²à±" + +#, fuzzy +#~ msgid "Change design" +#~ msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà±" + +#~ msgid "Change colours" +#~ msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" + +#~ msgid "Use defaults" +#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" + +#~ msgid "Upload file" +#~ msgstr "ఫైలà±à°¨à°¿ à°Žà°•à±à°•à°¿à°‚à°šà±" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "మీ à°µà±à°¯à°•à±à°¤à°¿à°—à°¤ నేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మీరౠఎకà±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం 2మెబై." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "ఆనà±" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "ఆఫà±" + +#~ msgid "Design your profile" +#~ msgstr "వాడà±à°•à°°à°¿ à°ªà±à°°à±Šà°«à±ˆà°²à±" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index 3b34f7ed55..df4c3e369d 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:36+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -112,7 +112,6 @@ msgid "Save access settings" msgstr "Sagipin ang mga itinakdang mapupuntahan" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -128,7 +127,6 @@ msgstr "Sagipin ang mga itinakdang mapupuntahan" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -206,7 +204,6 @@ msgstr "Walang ganyang pahina." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -375,7 +372,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Hindi maisapanahon ang tagagamit." @@ -390,7 +386,6 @@ msgstr "Hindi masagip ang balangkas." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -405,24 +400,6 @@ msgstr[1] "" "Hindi nagawang mapanghawakan ng tagapaghain ang ganyang karaming dato ng " "PAGPAPASKIL (%s na mga byte) dahil sa pangkasalukuyang pagkakaasyos nito." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Hindi nagawang sagipin ang mga pagtatakda mo ng disenyo." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Hindi maisapanahon ang disenyo mo." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -515,6 +492,8 @@ msgstr "" "kaibigan." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -747,7 +726,6 @@ msgstr "mga pangkat na nasa %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "Dapat na isa kang tagapangasiwa upang baguhin ang pangkat." @@ -862,7 +840,6 @@ msgstr "" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -871,7 +848,6 @@ msgstr "" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "Hindi inaasahang pagpapasa ng pormularyo." @@ -1240,7 +1216,6 @@ msgstr "Dapat kang nakalagda upang makaalis mula sa isang pangkat." #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1329,6 +1304,7 @@ msgid "Join request canceled." msgstr "Hindi itinuloy ang hiling na pagsali." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "" @@ -1481,7 +1457,6 @@ msgstr "Walang ganyang kalakip." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1997,152 +1972,6 @@ msgstr "Huwag burahin ang tagagamit na ito." msgid "Delete this user." msgstr "Burahin ang tagagamit na ito." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Disenyo" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "Mga katakdaan ng disensyo para sa sityong ito ng StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Hindi katanggap-tanggap na URL ng logo." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Hindi katanggap-tanggap na URL ng logo ng SSL." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Hindi makukuha ang tema: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Baguhin ang logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Logo ng sityo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Logo ng SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Baguhin ang tema" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Tema ng sityo" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Tema para sa sityo." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Pinasadyang tema" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "" -"Makapagkakarga kang papaitaas ng isang pinasadyang tema ng StatusNet bilang " -"isang supnay na .ZIP." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Baguhin ang panlikod na larawan" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Panlikurang tanawin" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Maaari kang makapagkargang papaitaas ng isang larawang panlikuran para sa " -"sityo. Ang pinakamataas na sukat ng talaksan ay %1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Buhay" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Nakapatay" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Buhayin o patayin ang larawan na panglikuran." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "Panlikurang larawan ng tisa" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Palitan ang mga kulay" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "Nilalaman" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Panggilid na halang" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "Teksto" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "Mga kawing" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Mas masulong" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Pasadyang CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "Gamitin ang likas na mga katakdaan" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Ibalik ang likas na nakatakdang mga disenyo." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "Muling itakda pabalik sa likas na pagtatakda." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Sagipin ang disenyo." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Hindi isang kinagigiliwan ang pabatid na ito!" @@ -2768,31 +2597,6 @@ msgstr "" msgid "No ID." msgstr "Walang ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "Dapat kang nakalagda upang makapamatnugot ng isang pangkat." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Disenyo ng pangkat" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Ipasadya ang paraan ng kaanyuan ng pangkat na may isang larawang panlikuran " -"at isang paleta ng kulay na napili mo." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Hindi nagawang isapanahon ang mga pagtatakda mo ng disenyo." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Nasagip ang mga kagustuhan sa disenyo." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3472,14 +3276,6 @@ msgstr "Walang nilalaman!" msgid "No recipient specified." msgstr "Walang tinukoy na tagatanggap." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Huwag magpadala ng isang mensahe na papunta sa sarili mo; sa halip ay " -"sabihin lamang ito ng tahimik sa sarili mo." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "Naipadala na ang mensahe" @@ -3769,7 +3565,7 @@ msgid "Confirm" msgstr "Pagtibayin" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Katulad ng hudyat na nasa itaas." @@ -3949,31 +3745,6 @@ msgstr "Direktoryo ng huwaran" msgid "Directory where avatars are located." msgstr "Direktoryo kung saan nakalagay ang mga huwaran." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Mga panlikuran" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Tagapaghain para sa mga panlikuran." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "Landas ng web papunta sa mga panlikuran." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Tagapaghain para sa mga panlikuran na nasa mga pahina ng SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "" -"Landas ng web papunta sa mga panlkuran na nasa ibabaw ng mga pahina ng SSL." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "Direktoryo kung saan matatagpuan ang mga panlikuran." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "Mga kalakip" @@ -4788,7 +4559,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 o mahigit pang mga panitik, at huwag itong kalimutan!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Itakdang muli" @@ -4797,19 +4567,6 @@ msgstr "Itakdang muli" msgid "Enter a nickname or email address." msgstr "Magpasok ng isang palayaw o tirahan ng e-liham." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "" -"Walang tagagamit na may ganyang tirahan ng e-liham o pangalan ng tagagamit." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Walang nakatalang tirahan ng e-liham para sa ganyang tagagamit." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Kamalian sa pagsagip ng pagtitiyak ng tirahan." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5805,6 +5562,14 @@ msgstr "Ang pangalan ng sityo ay dapat na may habang hindi sero." msgid "You must have a valid contact email address." msgstr "Dapat na mayroon ka ng isang katanggap-tanggap na tirahan ng e-liham." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Hindi katanggap-tanggap na URL ng logo." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Hindi katanggap-tanggap na URL ng logo ng SSL." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5880,7 +5645,9 @@ msgid "Default language" msgstr "Likas na nakatakdang wika" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Wika ng sityo kapag hindi makuha ang kusang pagpansin mula sa mga katakdaan " "ng pantingin-tingin" @@ -5908,8 +5675,22 @@ msgstr "" "Kung gaano katagal dapat na maghintay ang mga tagagamit (nasa mga segundo) " "upang maipaskil ulit ang katulad na bagay." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Logo ng sityo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Logo ng SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Sagipin ang mga katakdaan ng sityo" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6696,40 +6477,6 @@ msgstr "Hindi mabasa ang URL na \"%s\" ng huwaran." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Maling uri ng larawan para sa URL na \"%s\" ng huwaran." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Disenyo ng balangkas" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Ipasadya ang paraan ng kaanyuan ng balangkas na may isang larawang " -"panlikuran at isang paleta ng kulay na napili mo." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "Masiyahan sa hotdog mo!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "Mga katakdaan ng disenyo" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "Tingnan ang mga disenyo ng balangkas" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Ipakita o itago ang mga disenyo ng balangkas." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Talaksan ng panlikurang tanawin" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7202,6 +6949,19 @@ msgstr "" "Tinatawag ang kodigo ng pamamaraan ng isahang tagagamit kapag hindi " "pinagagana." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "" +"Walang tagagamit na may ganyang tirahan ng e-liham o pangalan ng tagagamit." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Walang nakatalang tirahan ng e-liham para sa ganyang tagagamit." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Kamalian sa pagsagip ng pagtitiyak ng tirahan." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Hindi malikha ang pangkat." @@ -7480,11 +7240,6 @@ msgstr "Hindi ipinatutupad ang ipakita ang Pormularyo()." msgid "saveSettings() not implemented." msgstr "Hindi ipinatutupad ang sagipin ang mga Katakdaan()." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Hindi nagawang burahin ang mga pagtatakda mo ng disenyo." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7513,17 +7268,6 @@ msgctxt "MENU" msgid "Site" msgstr "Sityo" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "Pagkakaayos ng disenyo" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Disenyo" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "Pagkakaayos ng tagagamit" @@ -8378,44 +8122,6 @@ msgstr "Burahin" msgid "Delete this user" msgstr "Burahin ang tagagamit na ito" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Baguhin ang disenyo" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Baguhin ang mga kulay" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "Gamitin ang likas na mga katakdaan" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Ikarga ang talaksan" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Maaari mong ikargang papaitaas ang pansarili mong larawang panlikuran. Ang " -"pinakamataas na sukat ng talaksan ay 2MB." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Buhay" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Patay" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Naipanumbalik ang likas na mga katakdaan ng disenyo." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8631,13 +8337,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Idagdag o baguhin ang logo ng %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Idagdag o baguhin ang disenyo ng %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Mga galaw ng pangkat" @@ -8752,9 +8451,8 @@ msgid "Invite more colleagues" msgstr "Mag-anyaya ng marami pang mga kasamahan" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "Mag-anyaya ng marami pang mga kasamahan" +msgstr "Anyayahan ang mga kasamahan" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8779,9 +8477,8 @@ msgid "Send" msgstr "Ipadala" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Mga paanyaya" +msgstr "Magpadala ng mga paanyaya." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8852,9 +8549,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "Sinusundan na ngayon ni %1$s si %2$s." +msgstr "Sinusundan ka na ngayon ni %1$s sa %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -9996,10 +9693,6 @@ msgstr "E-liham" msgid "Change email handling" msgstr "Baguhin ang paghawak sa e-liham" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Magdisenyo ng balangkas mo" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10426,3 +10119,248 @@ msgstr "Hindi katanggap-tanggap na XML, nawawalang ugat ng XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang '%s'" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Hindi mabasa ang URL na \"%s\" ng huwaran." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Kamalian sa pagsasapanahon ng pangmalayuang balangkas." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Hindi matagpuan ang mga palingkuran para sa %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Hindi malikha ang tatak ng balangkas." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Walang matagpuang isang tagagamit na may palayaw na %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Hindi isang katanggap-tanggap na tirahan ng e-liham." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Hindi masagip ang balangkas." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Hindi nagawang sagipin ang mga pagtatakda mo ng disenyo." + +#~ msgid "Could not update your design." +#~ msgstr "Hindi maisapanahon ang disenyo mo." + +#~ msgid "Design" +#~ msgstr "Disenyo" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "Mga katakdaan ng disensyo para sa sityong ito ng StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Hindi makukuha ang tema: %s." + +#~ msgid "Change logo" +#~ msgstr "Baguhin ang logo" + +#~ msgid "Change theme" +#~ msgstr "Baguhin ang tema" + +#~ msgid "Site theme" +#~ msgstr "Tema ng sityo" + +#~ msgid "Theme for the site." +#~ msgstr "Tema para sa sityo." + +#~ msgid "Custom theme" +#~ msgstr "Pinasadyang tema" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "" +#~ "Makapagkakarga kang papaitaas ng isang pinasadyang tema ng StatusNet " +#~ "bilang isang supnay na .ZIP." + +#~ msgid "Change background image" +#~ msgstr "Baguhin ang panlikod na larawan" + +#~ msgid "Background" +#~ msgstr "Panlikurang tanawin" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Maaari kang makapagkargang papaitaas ng isang larawang panlikuran para sa " +#~ "sityo. Ang pinakamataas na sukat ng talaksan ay %1$s." + +#~ msgid "On" +#~ msgstr "Buhay" + +#~ msgid "Off" +#~ msgstr "Nakapatay" + +#~ msgid "Turn background image on or off." +#~ msgstr "Buhayin o patayin ang larawan na panglikuran." + +#~ msgid "Tile background image" +#~ msgstr "Panlikurang larawan ng tisa" + +#~ msgid "Change colors" +#~ msgstr "Palitan ang mga kulay" + +#~ msgid "Content" +#~ msgstr "Nilalaman" + +#~ msgid "Sidebar" +#~ msgstr "Panggilid na halang" + +#~ msgid "Text" +#~ msgstr "Teksto" + +#~ msgid "Links" +#~ msgstr "Mga kawing" + +#~ msgid "Advanced" +#~ msgstr "Mas masulong" + +#~ msgid "Custom CSS" +#~ msgstr "Pasadyang CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "Gamitin ang likas na mga katakdaan" + +#~ msgid "Restore default designs." +#~ msgstr "Ibalik ang likas na nakatakdang mga disenyo." + +#~ msgid "Reset back to default." +#~ msgstr "Muling itakda pabalik sa likas na pagtatakda." + +#~ msgid "Save design." +#~ msgstr "Sagipin ang disenyo." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "Dapat kang nakalagda upang makapamatnugot ng isang pangkat." + +#~ msgid "Group design" +#~ msgstr "Disenyo ng pangkat" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Ipasadya ang paraan ng kaanyuan ng pangkat na may isang larawang " +#~ "panlikuran at isang paleta ng kulay na napili mo." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Hindi nagawang isapanahon ang mga pagtatakda mo ng disenyo." + +#~ msgid "Design preferences saved." +#~ msgstr "Nasagip ang mga kagustuhan sa disenyo." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Huwag magpadala ng isang mensahe na papunta sa sarili mo; sa halip ay " +#~ "sabihin lamang ito ng tahimik sa sarili mo." + +#~ msgid "Backgrounds" +#~ msgstr "Mga panlikuran" + +#~ msgid "Server for backgrounds." +#~ msgstr "Tagapaghain para sa mga panlikuran." + +#~ msgid "Web path to backgrounds." +#~ msgstr "Landas ng web papunta sa mga panlikuran." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Tagapaghain para sa mga panlikuran na nasa mga pahina ng SSL." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "" +#~ "Landas ng web papunta sa mga panlkuran na nasa ibabaw ng mga pahina ng " +#~ "SSL." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "Direktoryo kung saan matatagpuan ang mga panlikuran." + +#~ msgid "Profile design" +#~ msgstr "Disenyo ng balangkas" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Ipasadya ang paraan ng kaanyuan ng balangkas na may isang larawang " +#~ "panlikuran at isang paleta ng kulay na napili mo." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "Masiyahan sa hotdog mo!" + +#~ msgid "Design settings" +#~ msgstr "Mga katakdaan ng disenyo" + +#~ msgid "View profile designs" +#~ msgstr "Tingnan ang mga disenyo ng balangkas" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Ipakita o itago ang mga disenyo ng balangkas." + +#~ msgid "Background file" +#~ msgstr "Talaksan ng panlikurang tanawin" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Hindi nagawang burahin ang mga pagtatakda mo ng disenyo." + +#~ msgid "Design configuration" +#~ msgstr "Pagkakaayos ng disenyo" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Disenyo" + +#~ msgid "Change design" +#~ msgstr "Baguhin ang disenyo" + +#~ msgid "Change colours" +#~ msgstr "Baguhin ang mga kulay" + +#~ msgid "Use defaults" +#~ msgstr "Gamitin ang likas na mga katakdaan" + +#~ msgid "Upload file" +#~ msgstr "Ikarga ang talaksan" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Maaari mong ikargang papaitaas ang pansarili mong larawang panlikuran. " +#~ "Ang pinakamataas na sukat ng talaksan ay 2MB." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Buhay" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Patay" + +#~ msgid "Design defaults restored." +#~ msgstr "Naipanumbalik ang likas na mga katakdaan ng disenyo." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Idagdag o baguhin ang disenyo ng %s" + +#~ msgid "Design your profile" +#~ msgstr "Magdisenyo ng balangkas mo" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 6711a25210..28c56c2cc9 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\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" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -113,7 +113,6 @@ msgid "Save access settings" msgstr "Зберегти параметри доÑтупу" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -129,7 +128,6 @@ msgstr "Зберегти параметри доÑтупу" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -204,7 +202,6 @@ msgstr "Ðемає такої Ñторінки." #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -369,7 +366,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ кориÑтувача." @@ -384,7 +380,6 @@ msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ профіль." #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -402,24 +397,6 @@ msgstr[2] "" "Сервер не здатен обробити таку кількіÑть даних (%s байтів) за поточної " "конфігурації." -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "Ðе маю можливоÑті зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ ваш дизайн." - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -512,6 +489,8 @@ msgstr "" "другом." #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -746,7 +725,6 @@ msgstr "Ñпільноти на %s" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "" @@ -861,7 +839,6 @@ msgstr "Помилка бази даних при додаванні парам #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -870,7 +847,6 @@ msgstr "Помилка бази даних при додаванні парам #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "ÐеÑподіване предÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ„Ð¾Ñ€Ð¼Ð¸." @@ -1236,7 +1212,6 @@ msgstr "Ви повинні Ñпочатку увійти на Ñайт, аби #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1325,6 +1300,7 @@ msgid "Join request canceled." msgstr "Запит на Ð¿Ñ€Ð¸Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð´Ð¾ Ñпільноти відхилено." #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "" @@ -1477,7 +1453,6 @@ msgstr "Такого Ð²ÐºÐ»Ð°Ð´ÐµÐ½Ð½Ñ Ð½ÐµÐ¼Ð°Ñ”." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1983,150 +1958,6 @@ msgstr "Ðе видалÑти цього кориÑтувача." msgid "Delete this user." msgstr "Видалити цього кориÑтувача." -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "Дизайн" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту StatusNet" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "Помилкова URL-адреÑа логотипу." - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "Ðевірний SSL або URL-адреÑа логотипу." - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "Тема недоÑтупна: %s." - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "Змінити логотип" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "Логотип Ñайту" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "Логотип Ñайту з SSL" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "Змінити тему" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "Тема Ñайту" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "Тема Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту." - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "Ð¡Ð²Ð¾Ñ Ñ‚ÐµÐ¼Ð°" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "Ви можете завантажити Ñвою тему Ð´Ð»Ñ Ñайту StatusNet Ñк .ZIP архів." - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "Змінити фонове зображеннÑ" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "Фон" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "" -"Ви можете завантажити фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñайту. МакÑимальний розмір файлу " -"%1$s." - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "Увімк." - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "Вимк." - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "Увімкнути або вимкнути фонове зображеннÑ." - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "ЗамоÑтити фон" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "Змінити кольори" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "ЗміÑÑ‚" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "Сайдбар" - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "ТекÑÑ‚" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "ПоÑиланнÑ" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "Додатково" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "Свій CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "За замовч." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "Відновити Ñтандартні уÑтановки." - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "ПовернутиÑÑŒ до Ñтандартних налаштувань." - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "Зберегти дизайн." - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "Цей Ð´Ð¾Ð¿Ð¸Ñ Ð½Ðµ Ñ” обраним!" @@ -2726,32 +2557,6 @@ msgstr "Виникла помилка при блокуванні кориÑту msgid "No ID." msgstr "Ðемає ID." -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "" -"Ви маєте Ñпочатку увійти, аби мати змогу відредагувати влаÑтивоÑті Ñпільноти." - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "Дизайн Ñпільноти" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Ðалаштуйте виглÑд Ñторінки Ñпільноти, викориÑтовуючи фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– " -"кольори на Ñвій Ñмак." - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "Преференції дизайну збережно." - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3422,13 +3227,6 @@ msgstr "Ðемає зміÑту!" msgid "No recipient specified." msgstr "Жодного отримувача не визначено." -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ðе надÑилайте повідомлень Ñамому Ñобі; краще поговоріть із Ñобою вголоÑ." - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð½Ð°Ð´Ñ–Ñлано" @@ -3713,7 +3511,7 @@ msgid "Confirm" msgstr "Підтвердити" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "Такий Ñамо, Ñк Ñ– пароль вище." @@ -3890,30 +3688,6 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ Ð°Ð²Ð°Ñ‚Ð°Ñ€Ð¸" msgid "Directory where avatars are located." msgstr "ДиректоріÑ, в Ñкій знаходÑтьÑÑ Ð°Ð²Ð°Ñ‚Ð°Ñ€Ð¸." -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "Фони" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "ШлÑÑ… до фонових зображень." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень на захищених SSL-Ñторінках." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "ШлÑÑ… до фонових зображень на захищених SSL-Ñторінках." - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "ДиректоріÑ, в Ñкій знаходÑтьÑÑ Ñ„Ð¾Ð½Ð¾Ð²Ñ– зображеннÑ." - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "ВкладеннÑ" @@ -4708,7 +4482,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "6 або більше знаків, Ñ– не забудьте Ñ—Ñ…!" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "Скинути" @@ -4717,18 +4490,6 @@ msgstr "Скинути" msgid "Enter a nickname or email address." msgstr "Введіть Ñ–Ð¼â€™Ñ Ð°Ð±Ð¾ електронну адреÑу." -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "КориÑтувача з такою електронною адреÑою або ім’Ñм немає." - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ кориÑтувача немає зареєÑтрованої електронної адреÑи." - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "Помилка при збереженні Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð°Ð´Ñ€ÐµÑи." - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5684,6 +5445,14 @@ msgstr "Ð†Ð¼â€™Ñ Ñайту не може бути порожнім." msgid "You must have a valid contact email address." msgstr "Електронна адреÑа має бути чинною." +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "Помилкова URL-адреÑа логотипу." + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "Ðевірний SSL або URL-адреÑа логотипу." + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5756,7 +5525,9 @@ msgid "Default language" msgstr "Мова за замовчуваннÑм" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "" "Мова Ñайту на випадок, коли Ð°Ð²Ñ‚Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð¾Ð²Ð¸ за наÑтройками браузера не " "доÑтупно" @@ -5784,8 +5555,22 @@ msgstr "" "Як довго кориÑтувачі мають зачекати (в Ñекундах) аби надіÑлати той Ñамий " "Ð´Ð¾Ð¿Ð¸Ñ Ñ‰Ðµ раз." +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Логотип" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "Логотип Ñайту" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "Логотип Ñайту з SSL" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñайту" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6544,40 +6329,6 @@ msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ URL аватари «%s»." msgid "Wrong image type for avatar URL \"%s\"." msgstr "Ðеправильний тип Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð»Ñ URL аватари «%s»." -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "Дизайн профілю" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Ðалаштуйте виглÑд Ñторінки Ñвого профілю, викориÑтовуючи фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– " -"кольори на Ñвій Ñмак." - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "ПолаÑуйте бутербродом!" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "ПереглÑдати дизайн кориÑтувачів" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "Показувати або приховувати дизайни Ñторінок окремих кориÑтувачів." - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "Файл фону" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -7033,6 +6784,18 @@ msgstr "КориÑтувача Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾ÐºÐ¾Ñ€Ð¸Ñтувацького Ñ€ msgid "Single-user mode code called when not enabled." msgstr "Код Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾ÐºÐ¾Ñ€Ð¸Ñтувацького режиму називаєтьÑÑ, коли не ввімкнуто." +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "КориÑтувача з такою електронною адреÑою або ім’Ñм немає." + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ кориÑтувача немає зареєÑтрованої електронної адреÑи." + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "Помилка при збереженні Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð°Ð´Ñ€ÐµÑи." + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "Ðе вдалоÑÑ Ñтворити нову Ñпільноту." @@ -7300,11 +7063,6 @@ msgstr "showForm() не виконано." msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "Ðемає можливоÑті видалити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7333,17 +7091,6 @@ msgctxt "MENU" msgid "Site" msgstr "Сайт" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "Дизайн" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ ÐºÐ¾Ñ€Ð¸Ñтувача" @@ -8193,44 +7940,6 @@ msgstr "Видалити" msgid "Delete this user" msgstr "Видалити цього кориÑтувача" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "Змінити дизайн" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "Змінити кольори" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "За замовч." - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "Завантажити файл" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "" -"Ви можете завантажити влаÑне фонове зображеннÑ. МакÑимальний розмір файлу " -"Ñтановить 2Мб." - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "Увімк." - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "Вимк." - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "Дизайн за замовчуваннÑм відновлено." - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8449,13 +8158,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "Додати або редагувати логотип %s" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "Додати або редагувати дизайн %s" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "Дії Ñпільноти" @@ -8572,9 +8274,8 @@ msgid "Invite more colleagues" msgstr "ЗапроÑити більше колег" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "ЗапроÑити більше колег" +msgstr "ЗапроÑити колег" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8600,9 +8301,8 @@ msgid "Send" msgstr "ÐадіÑлати" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "ЗапрошеннÑ" +msgstr "ÐадіÑлати запрошеннÑ." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8672,9 +8372,9 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s тепер Ñлідкує за %2$s." +msgstr "%1$s тепер Ñлідкує за вашими допиÑами на %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. @@ -9805,10 +9505,6 @@ msgstr "Пошта" msgid "Change email handling" msgstr "Змінити електронну адреÑу" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "Дизайн вашого профілю" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -10237,3 +9933,245 @@ msgstr "Ðеправильний XML, корінь XRD відÑутній." #, php-format msgid "Getting backup from file '%s'." msgstr "ÐžÑ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ñ— копії файлу «%s»." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "Ðе вдалоÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ URL аватари «%s»." + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "Помилка при оновленні віддаленого профілю." + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "Ðе вдаєтьÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ поÑлуги Ð´Ð»Ñ %s." + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "Ðе Ñтворити профіль теґу." + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ кориÑтувача з ім’Ñм %s." + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "Це недійÑна електронна адреÑа." + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ профіль." + +#~ msgid "Unable to save your design settings." +#~ msgstr "Ðе маю можливоÑті зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." + +#~ msgid "Could not update your design." +#~ msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ ваш дизайн." + +#~ msgid "Design" +#~ msgstr "Дизайн" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту StatusNet" + +#~ msgid "Theme not available: %s." +#~ msgstr "Тема недоÑтупна: %s." + +#~ msgid "Change logo" +#~ msgstr "Змінити логотип" + +#~ msgid "Change theme" +#~ msgstr "Змінити тему" + +#~ msgid "Site theme" +#~ msgstr "Тема Ñайту" + +#~ msgid "Theme for the site." +#~ msgstr "Тема Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту." + +#~ msgid "Custom theme" +#~ msgstr "Ð¡Ð²Ð¾Ñ Ñ‚ÐµÐ¼Ð°" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "Ви можете завантажити Ñвою тему Ð´Ð»Ñ Ñайту StatusNet Ñк .ZIP архів." + +#~ msgid "Change background image" +#~ msgstr "Змінити фонове зображеннÑ" + +#~ msgid "Background" +#~ msgstr "Фон" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "" +#~ "Ви можете завантажити фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñайту. МакÑимальний розмір " +#~ "файлу %1$s." + +#~ msgid "On" +#~ msgstr "Увімк." + +#~ msgid "Off" +#~ msgstr "Вимк." + +#~ msgid "Turn background image on or off." +#~ msgstr "Увімкнути або вимкнути фонове зображеннÑ." + +#~ msgid "Tile background image" +#~ msgstr "ЗамоÑтити фон" + +#~ msgid "Change colors" +#~ msgstr "Змінити кольори" + +#~ msgid "Content" +#~ msgstr "ЗміÑÑ‚" + +#~ msgid "Sidebar" +#~ msgstr "Сайдбар" + +#~ msgid "Text" +#~ msgstr "ТекÑÑ‚" + +#~ msgid "Links" +#~ msgstr "ПоÑиланнÑ" + +#~ msgid "Advanced" +#~ msgstr "Додатково" + +#~ msgid "Custom CSS" +#~ msgstr "Свій CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "За замовч." + +#~ msgid "Restore default designs." +#~ msgstr "Відновити Ñтандартні уÑтановки." + +#~ msgid "Reset back to default." +#~ msgstr "ПовернутиÑÑŒ до Ñтандартних налаштувань." + +#~ msgid "Save design." +#~ msgstr "Зберегти дизайн." + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "" +#~ "Ви маєте Ñпочатку увійти, аби мати змогу відредагувати влаÑтивоÑті " +#~ "Ñпільноти." + +#~ msgid "Group design" +#~ msgstr "Дизайн Ñпільноти" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Ðалаштуйте виглÑд Ñторінки Ñпільноти, викориÑтовуючи фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– " +#~ "кольори на Ñвій Ñмак." + +#~ msgid "Unable to update your design settings." +#~ msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." + +#~ msgid "Design preferences saved." +#~ msgstr "Преференції дизайну збережно." + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "" +#~ "Ðе надÑилайте повідомлень Ñамому Ñобі; краще поговоріть із Ñобою вголоÑ." + +#~ msgid "Backgrounds" +#~ msgstr "Фони" + +#~ msgid "Server for backgrounds." +#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень." + +#~ msgid "Web path to backgrounds." +#~ msgstr "ШлÑÑ… до фонових зображень." + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень на захищених SSL-Ñторінках." + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "ШлÑÑ… до фонових зображень на захищених SSL-Ñторінках." + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "ДиректоріÑ, в Ñкій знаходÑтьÑÑ Ñ„Ð¾Ð½Ð¾Ð²Ñ– зображеннÑ." + +#~ msgid "Profile design" +#~ msgstr "Дизайн профілю" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "" +#~ "Ðалаштуйте виглÑд Ñторінки Ñвого профілю, викориÑтовуючи фонове " +#~ "Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– кольори на Ñвій Ñмак." + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "ПолаÑуйте бутербродом!" + +#~ msgid "Design settings" +#~ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" + +#~ msgid "View profile designs" +#~ msgstr "ПереглÑдати дизайн кориÑтувачів" + +#~ msgid "Show or hide profile designs." +#~ msgstr "Показувати або приховувати дизайни Ñторінок окремих кориÑтувачів." + +#~ msgid "Background file" +#~ msgstr "Файл фону" + +#~ msgid "Unable to delete design setting." +#~ msgstr "Ðемає можливоÑті видалити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." + +#~ msgid "Design configuration" +#~ msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "Дизайн" + +#~ msgid "Change design" +#~ msgstr "Змінити дизайн" + +#~ msgid "Change colours" +#~ msgstr "Змінити кольори" + +#~ msgid "Use defaults" +#~ msgstr "За замовч." + +#~ msgid "Upload file" +#~ msgstr "Завантажити файл" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "" +#~ "Ви можете завантажити влаÑне фонове зображеннÑ. МакÑимальний розмір файлу " +#~ "Ñтановить 2Мб." + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "Увімк." + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "Вимк." + +#~ msgid "Design defaults restored." +#~ msgstr "Дизайн за замовчуваннÑм відновлено." + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "Додати або редагувати дизайн %s" + +#~ msgid "Design your profile" +#~ msgstr "Дизайн вашого профілю" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 6ba48cffe9..4a04463502 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -17,18 +17,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-05 09:57:31+0000\n" +"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" #. TRANS: Database error message. #, php-format @@ -110,7 +110,6 @@ msgid "Save access settings" msgstr "ä¿å­˜è®¿é—®è®¾ç½®" #. TRANS: Tooltip for button to save access settings in site admin panel. -#. TRANS: Button text for saving theme settings. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -126,7 +125,6 @@ msgstr "ä¿å­˜è®¿é—®è®¾ç½®" #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. -#. TRANS: Button text on profile design page to save settings. #. TRANS: Text for save button on group edit form. #. TRANS: Button text to save tags for a profile. msgctxt "BUTTON" @@ -198,7 +196,6 @@ msgstr "没有这个页é¢ã€‚" #. TRANS: Client error when user not found for an rss related action. #. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting. #. TRANS: Client error displayed if a user could not be found. -#. TRANS: Client error when user not found updating a profile background image. #. TRANS: Client error displayed updating profile image without having a user object. #. TRANS: Client error displayed when making an Atom API request for an unknown user. #. TRANS: Client error displayed when trying to block a non-existing user or a user from another site. @@ -361,7 +358,6 @@ msgstr "" #. TRANS: Server error thrown on database error updating SMS preferences. #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. -#. TRANS: Server exception thrown on Profile design page when updating design settings fails. msgid "Could not update user." msgstr "无法更新用户。" @@ -376,7 +372,6 @@ msgstr "无法ä¿å­˜ä¸ªäººä¿¡æ¯ã€‚" #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#. TRANS: Form validation error in design settings form. POST should remain untranslated. #, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " @@ -386,24 +381,6 @@ msgid_plural "" "current configuration." msgstr[0] "æœåС噍当å‰çš„设置无法处ç†è¿™ä¹ˆå¤šçš„ POST æ•°æ®ï¼ˆ%s bytes)。" -#. TRANS: Client error displayed when saving design settings fails because of an empty id. -#. TRANS: Client error displayed when saving design settings fails because of an empty result. -#. TRANS: Client error displayed when a database error occurs inserting profile colours. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue. -#. TRANS: Form validation error on Profile design page when saving design settings has failed. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -msgid "Unable to save your design settings." -msgstr "无法ä¿å­˜ä½ çš„外观设置。" - -#. TRANS: Error displayed when updating design settings fails. -#. TRANS: Client error displayed when a database error occurs updating profile colours. -#. TRANS: Form validation error on Profile design page when updating design settings has failed. -#. TRANS: Error message displayed if design settings could not be saved. -#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults". -msgid "Could not update your design." -msgstr "无法更新你的外观。" - #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" @@ -492,6 +469,8 @@ msgid "Cannot send direct messages to users who aren't your friend." msgstr "ä¸èƒ½å°†ç›´æŽ¥é‚®ä»¶å‘é€åˆ°ç”¨æˆ·çš„䏿˜¯ä½ çš„æœ‹å‹ã€‚" #. TRANS: Client error displayed trying to direct message self (403). +#. TRANS: Client error displayed trying to send a direct message to self. +#. TRANS: Error text shown when trying to send a direct message to self. msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "ä¸è¦å‘自己å‘逿¶ˆæ¯ï¼›è·Ÿè‡ªå·±æ‚„悄说就得了。" @@ -718,7 +697,6 @@ msgstr "在%s上的å°ç»„" #. TRANS: Client error displayed when trying to edit a group without being an admin. #. TRANS: Client error displayed trying to edit a group while not being a group admin. -#. TRANS: Client error displayed trying to change group design settings without being a (group) admin. #. TRANS: Client error displayed when trying to change group logo settings while not being a group admin. msgid "You must be an admin to edit the group." msgstr "管ç†å‘˜æ‰å¯ä»¥ç¼–辑å°ç»„。" @@ -827,7 +805,6 @@ msgstr "æ’å…¥ oauth_token_association æ—¶æ•°æ®åº“出错。" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. -#. TRANS: Client error displayed when the submitted form contains unexpected data. #. TRANS: Client error displayed submitting invalid form data for edit application. #. TRANS: Message given submitting a form with an unknown action in e-mail settings. #. TRANS: Form validation error message when an unsupported argument is used. @@ -836,7 +813,6 @@ msgstr "æ’å…¥ oauth_token_association æ—¶æ•°æ®åº“出错。" #. TRANS: Client error when submitting a form with unexpected information. #. TRANS: Client error displayed when unexpected data is posted in the password recovery form. #. TRANS: Message given submitting a form with an unknown action in SMS settings. -#. TRANS: Unknown form validation error in design settings form. msgid "Unexpected form submission." msgstr "æœªé¢„æ–™çš„è¡¨å•æäº¤ã€‚" @@ -1185,7 +1161,6 @@ msgstr "你必须登录æ‰èƒ½ç¦»å¼€å°ç»„。" #. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group. #. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group. #. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID. -#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group. #. TRANS: Client error displayed when trying to update logo settings for a non-existing group. #. TRANS: Client error displayed when trying to view group members for a non-existing group. #. TRANS: Client error displayed when trying to view group members for an object that is not a group. @@ -1269,6 +1244,7 @@ msgid "Join request canceled." msgstr "åŠ å…¥è¯·æ±‚å·²å–æ¶ˆã€‚" #. TRANS: Client error displayed trying to approve subscription for a non-existing request. +#. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for your subscriptions." msgstr "%s ä¸åœ¨ä½ çš„待审核订阅队列中。" @@ -1418,7 +1394,6 @@ msgstr "没有这个附件。" #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. #. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit. -#. TRANS: Client error displayed trying to change group design settings without providing a group nickname. #. TRANS: Client error displayed when trying to change group logo settings without providing a nickname. #. TRANS: Client error displayed when trying to view group members without providing a group nickname. #. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname. @@ -1910,148 +1885,6 @@ msgstr "请ä¸è¦åˆ é™¤è¯¥ç”¨æˆ·ã€‚" msgid "Delete this user." msgstr "删除此用户。" -#. TRANS: Message used as title for design settings for the site. -msgid "Design" -msgstr "外观" - -#. TRANS: Instructions for design adminsitration panel. -msgid "Design settings for this StatusNet site" -msgstr "这个 StatusNet 网站的外观设置" - -#. TRANS: Client error displayed when a logo URL does is not valid. -msgid "Invalid logo URL." -msgstr "无效的 logo URL。" - -#. TRANS: Client error displayed when an SSL logo URL is invalid. -msgid "Invalid SSL logo URL." -msgstr "无效的 SSL logo URL。" - -#. 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. -#, php-format -msgid "Theme not available: %s." -msgstr "主题ä¸å¯ç”¨ï¼š%s。" - -#. TRANS: Fieldset legend for form to change logo. -msgid "Change logo" -msgstr "æ›´æ¢ logo" - -#. TRANS: Field label for StatusNet site logo. -msgid "Site logo" -msgstr "网站 logo" - -#. TRANS: Field label for SSL StatusNet site logo. -msgid "SSL logo" -msgstr "网站 SSL logo" - -#. TRANS: Fieldset legend for form change StatusNet site's theme. -msgid "Change theme" -msgstr "æ›´æ¢ä¸»é¢˜" - -#. TRANS: Field label for dropdown to choose site theme. -msgid "Site theme" -msgstr "网站主题" - -#. TRANS: Title for field label for dropdown to choose site theme. -msgid "Theme for the site." -msgstr "这个网站的主题。" - -#. TRANS: Field label for uploading a cutom theme. -msgid "Custom theme" -msgstr "自定义主题" - -#. TRANS: Form instructions for uploading a cutom StatusNet theme. -msgid "You can upload a custom StatusNet theme as a .ZIP archive." -msgstr "ä½ å¯ä»¥ä¸Šä¼ ä¸€ä¸ª .ZIP 压缩文件作为一个自定义的 StatusNet 主题" - -#. TRANS: Fieldset legend for theme background image. -msgid "Change background image" -msgstr "æ›´æ¢èƒŒæ™¯å›¾åƒ" - -#. TRANS: Field label for background image on theme designer page. -#. TRANS: Field label for background color selector. -#. TRANS: Label on profile design page for setting a profile page background colour. -msgid "Background" -msgstr "背景" - -#. TRANS: Form guide for background image upload form on theme designer page. -#, php-format -msgid "" -"You can upload a background image for the site. The maximum file size is %1" -"$s." -msgstr "ä½ å¯ä»¥ä¸ºç½‘站上传一个背景图åƒã€‚文件大å°é™åˆ¶åœ¨%1$s以下。" - -#. TRANS: Used as radio button label to add a background image. -msgid "On" -msgstr "打开" - -#. TRANS: Used as radio button label to not add a background image. -msgid "Off" -msgstr "关闭" - -#. TRANS: Form guide for turning background image on or off on theme designer page. -#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable -#. TRANS: use of the uploaded profile image. -msgid "Turn background image on or off." -msgstr "打开或关闭背景图片" - -#. TRANS: Checkbox label to title background image on theme designer page. -#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled. -msgid "Tile background image" -msgstr "平铺背景图片" - -#. TRANS: Fieldset legend for theme colors. -msgid "Change colors" -msgstr "更改颜色" - -#. TRANS: Field label for content color selector. -#. TRANS: Label on profile design page for setting a profile page content colour. -msgid "Content" -msgstr "内容" - -#. TRANS: Field label for sidebar color selector. -#. TRANS: Label on profile design page for setting a profile page sidebar colour. -msgid "Sidebar" -msgstr "è¾¹æ " - -#. TRANS: Field label for text color selector. -#. TRANS: Label on profile design page for setting a profile page text colour. -msgid "Text" -msgstr "文字" - -#. TRANS: Field label for link color selector. -#. TRANS: Label on profile design page for setting a profile page links colour. -msgid "Links" -msgstr "链接" - -#. TRANS: Fieldset legend for advanced theme design settings. -msgid "Advanced" -msgstr "高级" - -#. TRANS: Field label for custom CSS. -msgid "Custom CSS" -msgstr "自定义CSS" - -#. TRANS: Button text for resetting theme settings. -msgctxt "BUTTON" -msgid "Use defaults" -msgstr "使用默认值" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default. -msgid "Restore default designs." -msgstr "还原默认设计。" - -#. TRANS: Title for button for resetting theme settings. -#. TRANS: Title for button on profile design page to reset all colour settings to default without saving. -msgid "Reset back to default." -msgstr "é‡ç½®å›žé»˜è®¤å€¼ã€‚" - -#. TRANS: Title for button for saving theme settings. -#. TRANS: Title for button on profile design page to save settings. -msgid "Save design." -msgstr "ä¿å­˜è®¾è®¡ã€‚" - #. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite. msgid "This notice is not a favorite!" msgstr "æ­¤æ¶ˆæ¯æœªè¢«æ”¶è—ï¼" @@ -2640,29 +2473,6 @@ msgstr "在å°ç»„中å±è”½ç”¨æˆ·æ—¶æ•°æ®åº“å‘生错误。" msgid "No ID." msgstr "没有 ID。" -#. TRANS: Client error displayed trying to change group design settings while not logged in. -msgid "You must be logged in to edit a group." -msgstr "你必须登录æ‰èƒ½åˆ›å»ºå°ç»„。" - -#. TRANS: Title group design settings page. -msgid "Group design" -msgstr "å°ç»„页é¢å¤–观。" - -#. TRANS: Instructions for group design settings page. -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "é€šè¿‡èƒŒæ™¯å›¾ç‰‡å’Œé¢œè‰²æ¿æ¥è‡ªå®šä¹‰ä½ çš„å°ç»„的外观。" - -#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue. -msgid "Unable to update your design settings." -msgstr "无法更新你的外观设置。" - -#. TRANS: Form text to confirm saved group design settings. -#. TRANS: Confirmation message on Profile design page when saving design settings has succeeded. -msgid "Design preferences saved." -msgstr "外观å好已ä¿å­˜ã€‚" - #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. msgid "Group logo" @@ -3296,12 +3106,6 @@ msgstr "没有内容ï¼" msgid "No recipient specified." msgstr "没有收件人。" -#. TRANS: Client error displayed trying to send a direct message to self. -#. TRANS: Error text shown when trying to send a direct message to self. -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "ä¸è¦å‘自己å‘逿¶ˆæ¯ï¼›è·Ÿè‡ªå·±æ‚„悄说就得了。" - #. TRANS: Page title after sending a direct message. msgid "Message sent" msgstr "消æ¯å·²å‘é€" @@ -3579,7 +3383,7 @@ msgid "Confirm" msgstr "å†è¾“一é" #. TRANS: Field title on page where to change password. -#. TRANS: Ttile for field label for password reset form where the password has to be typed again. +#. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. msgid "Same as password above." msgstr "与上é¢ç›¸åŒçš„密ç " @@ -3755,30 +3559,6 @@ msgstr "头åƒç›®å½•" msgid "Directory where avatars are located." msgstr "å¤´åƒæ–‡ä»¶çš„目录。" -#. TRANS: Fieldset legend in Paths admin panel. -msgid "Backgrounds" -msgstr "背景" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds." -msgstr "背景æœåŠ¡å™¨ã€‚" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds." -msgstr "背景的网站路径。" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Server for backgrounds on SSL pages." -msgstr "SSL 页é¢çš„背景æœåŠ¡å™¨ã€‚" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Web path to backgrounds on SSL pages." -msgstr "SSL 页é¢çš„背景网站路径。" - -#. TRANS: Tooltip for field label in Paths admin panel. -msgid "Directory where backgrounds are located." -msgstr "背景文件的目录。" - #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "附件" @@ -4538,7 +4318,6 @@ msgid "6 or more characters, and do not forget it!" msgstr "至少6个字符,还有,别忘记它ï¼" #. TRANS: Button text for password reset form. -#. TRANS: Button text on profile design page to reset all colour settings to default without saving. msgctxt "BUTTON" msgid "Reset" msgstr "é‡ç½®" @@ -4547,18 +4326,6 @@ msgstr "é‡ç½®" msgid "Enter a nickname or email address." msgstr "输入昵称或电å­é‚®ä»¶ã€‚" -#. TRANS: Information on password recovery form if no known username or e-mail address was specified. -msgid "No user with that email address or username." -msgstr "æ²¡æœ‰æ‹¥æœ‰è¿™ä¸ªç”¨æˆ·åæˆ–电å­é‚®ä»¶çš„用户。" - -#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. -msgid "No registered email address for that user." -msgstr "该用户没有登记电å­é‚®ä»¶ã€‚" - -#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. -msgid "Error saving address confirmation." -msgstr "ä¿å­˜åœ°å€ç¡®è®¤æ—¶å‡ºé”™ã€‚" - #. TRANS: User notification after an e-mail with instructions was sent from the password recovery form. msgid "" "Instructions for recovering your password have been sent to the email " @@ -5476,6 +5243,14 @@ msgstr "网站å称长度必须大于零。" msgid "You must have a valid contact email address." msgstr "你必须有一个有效的 email 地å€ã€‚" +#. TRANS: Client error displayed when a logo URL is not valid. +msgid "Invalid logo URL." +msgstr "无效的 logo URL。" + +#. TRANS: Client error displayed when a SSL logo URL is invalid. +msgid "Invalid SSL logo URL." +msgstr "无效的 SSL logo URL。" + #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. #, php-format @@ -5546,7 +5321,9 @@ msgid "Default language" msgstr "默认语言" #. TRANS: Dropdown title on site settings panel. -msgid "Site language when autodetection from browser settings is not available" +#, fuzzy +msgid "" +"The site language when autodetection from browser settings is not available." msgstr "当从æµè§ˆå™¨è‡ªåŠ¨èŽ·å–语言ä¸å¯ç”¨æ—¶ç½‘站的语言" #. TRANS: Fieldset legend on site settings panel. @@ -5570,8 +5347,22 @@ msgstr "防刷新é™åˆ¶" msgid "How long users must wait (in seconds) to post the same thing again." msgstr "ç”¨æˆ·å†æ¬¡å‘布相åŒå†…容时需è¦ç­‰å¾…的时间(秒)。" +#. TRANS: Fieldset legend for form to change logo. +#, fuzzy +msgid "Logo" +msgstr "Logo" + +#. TRANS: Field label for StatusNet site logo. +msgid "Site logo" +msgstr "网站 logo" + +#. TRANS: Field label for SSL StatusNet site logo. +msgid "SSL logo" +msgstr "网站 SSL logo" + #. TRANS: Button title for saving site settings. -msgid "Save site settings" +#, fuzzy +msgid "Save the site settings." msgstr "ä¿å­˜è®¿é—®è®¾ç½®" #. TRANS: Page title for site-wide notice tab in admin panel. @@ -6309,38 +6100,6 @@ msgstr "无法读å–å¤´åƒ URL '%s'。" msgid "Wrong image type for avatar URL \"%s\"." msgstr "å¤´åƒ URL ‘%s’ å›¾åƒæ ¼å¼é”™è¯¯ã€‚" -#. TRANS: Title for profile design page. -#. TRANS: Page title for profile design page. -msgid "Profile design" -msgstr "个人页é¢å¤–è§‚" - -#. TRANS: Instructions for Profile design page. -#. TRANS: Instructions for profile design page. -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "通过背景图片和调色æ¿è‡ªå®šä¹‰ä½ çš„页é¢å¤–观。" - -#. TRANS: Succes message on Profile design page when finding an easter egg. -msgid "Enjoy your hotdog!" -msgstr "享å—ä½ çš„æˆæžœå§ï¼" - -#. TRANS: Form legend on Profile design page. -msgid "Design settings" -msgstr "外观设置" - -#. TRANS: Checkbox label on Profile design page. -msgid "View profile designs" -msgstr "查看个人页é¢å¤–è§‚" - -#. TRANS: Title for checkbox on Profile design page. -msgid "Show or hide profile designs." -msgstr "显示或éšè—个人页é¢å¤–观。" - -#. TRANS: Form legend on Profile design page for form to choose a background image. -msgid "Background file" -msgstr "背景文件" - #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. #, php-format @@ -6770,6 +6529,18 @@ msgstr "没有å•独的用户被定义为å•用户模å¼ã€‚" msgid "Single-user mode code called when not enabled." msgstr "没å¯ç”¨å•用户模å¼çš„代ç ã€‚" +#. TRANS: Information on password recovery form if no known username or e-mail address was specified. +msgid "No user with that email address or username." +msgstr "æ²¡æœ‰æ‹¥æœ‰è¿™ä¸ªç”¨æˆ·åæˆ–电å­é‚®ä»¶çš„用户。" + +#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. +msgid "No registered email address for that user." +msgstr "该用户没有登记电å­é‚®ä»¶ã€‚" + +#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. +msgid "Error saving address confirmation." +msgstr "ä¿å­˜åœ°å€ç¡®è®¤æ—¶å‡ºé”™ã€‚" + #. TRANS: Server exception thrown when creating a group failed. msgid "Could not create group." msgstr "无法创建å°ç»„。" @@ -7033,11 +6804,6 @@ msgstr "showForm() 尚未实现。" msgid "saveSettings() not implemented." msgstr "saveSettings() 尚未实现。" -#. TRANS: Client error message thrown if design settings could not be deleted in -#. TRANS: the admin panel Design. -msgid "Unable to delete design setting." -msgstr "无法删除外观设置。" - #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -7066,17 +6832,6 @@ msgctxt "MENU" msgid "Site" msgstr "网站" -#. TRANS: Menu item title in administrator navigation panel. -msgid "Design configuration" -msgstr "外观é…ç½®" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in the group navigation page. Only shown for group administrators. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Design" -msgstr "外观" - #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" msgstr "用户é…ç½®" @@ -7898,42 +7653,6 @@ msgstr "删除" msgid "Delete this user" msgstr "删除这个用户" -#. TRANS: Form legend of form for changing the page design. -msgid "Change design" -msgstr "修改外观" - -#. TRANS: Fieldset legend on profile design page to change profile page colours. -msgid "Change colours" -msgstr "改å˜é¢œè‰²" - -#. TRANS: Button text on profile design page to immediately reset all colour settings to default. -msgid "Use defaults" -msgstr "使用默认值" - -#. TRANS: Label in form on profile design page. -#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. -msgid "Upload file" -msgstr "上传文件" - -#. TRANS: Instructions for form on profile design page. -msgid "" -"You can upload your personal background image. The maximum file size is 2MB." -msgstr "ä½ å¯ä»¥ä¸Šä¼ ä½ çš„个人页é¢èƒŒæ™¯ã€‚文件最大 2MB。" - -#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. -msgctxt "RADIO" -msgid "On" -msgstr "打开" - -#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. -msgctxt "RADIO" -msgid "Off" -msgstr "关闭" - -#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". -msgid "Design defaults restored." -msgstr "默认外观已æ¢å¤ã€‚" - #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." @@ -8140,13 +7859,6 @@ msgctxt "TOOLTIP" msgid "Add or edit %s logo" msgstr "添加或编辑 %s logo" -#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. -#. TRANS: %s is the nickname of the group. -#, php-format -msgctxt "TOOLTIP" -msgid "Add or edit %s design" -msgstr "添加或编辑 %s 外观" - #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" msgstr "å°ç»„动作" @@ -8522,7 +8234,7 @@ msgstr "" "è¯·å‹¿å›žå¤æ­¤é‚®ä»¶ï¼Œä»–/她ä¸ä¼šæ”¶åˆ°æ­¤é‚®ä»¶çš„内容。\n" "\n" "亲切的问候,\n" -"%5$s\n" +"%5$s" #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9513,10 +9225,6 @@ msgstr "电å­é‚®ä»¶" msgid "Change email handling" msgstr "修改电å­é‚®ä»¶" -#. TRANS: Menu item title in settings navigation panel. -msgid "Design your profile" -msgstr "设计你的个人页é¢å¤–è§‚" - #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" @@ -9927,3 +9635,234 @@ msgstr "ä¸åˆæ³•çš„XML, 缺少XRDæ ¹" #, php-format msgid "Getting backup from file '%s'." msgstr "从文件'%s'获å–备份。" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Invalid avatar URL %s." +msgstr "无法读å–å¤´åƒ URL '%s'。" + +#. TRANS: Server exception. %s is a URI. +#, fuzzy, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "æ›´æ–°è¿œç¨‹çš„ä¸ªäººä¿¡æ¯æ—¶å‡ºé”™ã€‚" + +#. TRANS: Server exception. %s is a URL. +#, fuzzy, php-format +msgid "Unable to fetch avatar from %s." +msgstr "无法找到 %s çš„æœåŠ¡ã€‚" + +#. TRANS: Exception. %s is a profile URL. +#, fuzzy, php-format +msgid "Could not reach profile page %s." +msgstr "æ— æ³•åˆ›å»ºä¸ªäººä¿¡æ¯æ ‡ç­¾ã€‚" + +#. TRANS: Exception. %s is a URL. +#, fuzzy, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "无法找到昵称为 %s 的用户。" + +#. TRANS: Exception. +#, fuzzy +msgid "Not a valid webfinger address." +msgstr "䏿˜¯æœ‰æ•ˆçš„电å­é‚®ä»¶ã€‚" + +#, fuzzy, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "无法ä¿å­˜ä¸ªäººä¿¡æ¯ã€‚" + +#~ msgid "Unable to save your design settings." +#~ msgstr "无法ä¿å­˜ä½ çš„外观设置。" + +#~ msgid "Could not update your design." +#~ msgstr "无法更新你的外观。" + +#~ msgid "Design" +#~ msgstr "外观" + +#~ msgid "Design settings for this StatusNet site" +#~ msgstr "这个 StatusNet 网站的外观设置" + +#~ msgid "Theme not available: %s." +#~ msgstr "主题ä¸å¯ç”¨ï¼š%s。" + +#~ msgid "Change logo" +#~ msgstr "æ›´æ¢ logo" + +#~ msgid "Change theme" +#~ msgstr "æ›´æ¢ä¸»é¢˜" + +#~ msgid "Site theme" +#~ msgstr "网站主题" + +#~ msgid "Theme for the site." +#~ msgstr "这个网站的主题。" + +#~ msgid "Custom theme" +#~ msgstr "自定义主题" + +#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." +#~ msgstr "ä½ å¯ä»¥ä¸Šä¼ ä¸€ä¸ª .ZIP 压缩文件作为一个自定义的 StatusNet 主题" + +#~ msgid "Change background image" +#~ msgstr "æ›´æ¢èƒŒæ™¯å›¾åƒ" + +#~ msgid "Background" +#~ msgstr "背景" + +#~ msgid "" +#~ "You can upload a background image for the site. The maximum file size is %" +#~ "1$s." +#~ msgstr "ä½ å¯ä»¥ä¸ºç½‘站上传一个背景图åƒã€‚文件大å°é™åˆ¶åœ¨%1$s以下。" + +#~ msgid "On" +#~ msgstr "打开" + +#~ msgid "Off" +#~ msgstr "关闭" + +#~ msgid "Turn background image on or off." +#~ msgstr "打开或关闭背景图片" + +#~ msgid "Tile background image" +#~ msgstr "平铺背景图片" + +#~ msgid "Change colors" +#~ msgstr "更改颜色" + +#~ msgid "Content" +#~ msgstr "内容" + +#~ msgid "Sidebar" +#~ msgstr "è¾¹æ " + +#~ msgid "Text" +#~ msgstr "文字" + +#~ msgid "Links" +#~ msgstr "链接" + +#~ msgid "Advanced" +#~ msgstr "高级" + +#~ msgid "Custom CSS" +#~ msgstr "自定义CSS" + +#~ msgctxt "BUTTON" +#~ msgid "Use defaults" +#~ msgstr "使用默认值" + +#~ msgid "Restore default designs." +#~ msgstr "还原默认设计。" + +#~ msgid "Reset back to default." +#~ msgstr "é‡ç½®å›žé»˜è®¤å€¼ã€‚" + +#~ msgid "Save design." +#~ msgstr "ä¿å­˜è®¾è®¡ã€‚" + +#~ msgid "You must be logged in to edit a group." +#~ msgstr "你必须登录æ‰èƒ½åˆ›å»ºå°ç»„。" + +#~ msgid "Group design" +#~ msgstr "å°ç»„页é¢å¤–观。" + +#~ msgid "" +#~ "Customize the way your group looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "é€šè¿‡èƒŒæ™¯å›¾ç‰‡å’Œé¢œè‰²æ¿æ¥è‡ªå®šä¹‰ä½ çš„å°ç»„的外观。" + +#~ msgid "Unable to update your design settings." +#~ msgstr "无法更新你的外观设置。" + +#~ msgid "Design preferences saved." +#~ msgstr "外观å好已ä¿å­˜ã€‚" + +#~ msgid "" +#~ "Don't send a message to yourself; just say it to yourself quietly instead." +#~ msgstr "ä¸è¦å‘自己å‘逿¶ˆæ¯ï¼›è·Ÿè‡ªå·±æ‚„悄说就得了。" + +#~ msgid "Backgrounds" +#~ msgstr "背景" + +#~ msgid "Server for backgrounds." +#~ msgstr "背景æœåŠ¡å™¨ã€‚" + +#~ msgid "Web path to backgrounds." +#~ msgstr "背景的网站路径。" + +#~ msgid "Server for backgrounds on SSL pages." +#~ msgstr "SSL 页é¢çš„背景æœåŠ¡å™¨ã€‚" + +#~ msgid "Web path to backgrounds on SSL pages." +#~ msgstr "SSL 页é¢çš„背景网站路径。" + +#~ msgid "Directory where backgrounds are located." +#~ msgstr "背景文件的目录。" + +#~ msgid "Profile design" +#~ msgstr "个人页é¢å¤–è§‚" + +#~ msgid "" +#~ "Customize the way your profile looks with a background image and a colour " +#~ "palette of your choice." +#~ msgstr "通过背景图片和调色æ¿è‡ªå®šä¹‰ä½ çš„页é¢å¤–观。" + +#~ msgid "Enjoy your hotdog!" +#~ msgstr "享å—ä½ çš„æˆæžœå§ï¼" + +#~ msgid "Design settings" +#~ msgstr "外观设置" + +#~ msgid "View profile designs" +#~ msgstr "查看个人页é¢å¤–è§‚" + +#~ msgid "Show or hide profile designs." +#~ msgstr "显示或éšè—个人页é¢å¤–观。" + +#~ msgid "Background file" +#~ msgstr "背景文件" + +#~ msgid "Unable to delete design setting." +#~ msgstr "无法删除外观设置。" + +#~ msgid "Design configuration" +#~ msgstr "外观é…ç½®" + +#~ msgctxt "MENU" +#~ msgid "Design" +#~ msgstr "外观" + +#~ msgid "Change design" +#~ msgstr "修改外观" + +#~ msgid "Change colours" +#~ msgstr "改å˜é¢œè‰²" + +#~ msgid "Use defaults" +#~ msgstr "使用默认值" + +#~ msgid "Upload file" +#~ msgstr "上传文件" + +#~ msgid "" +#~ "You can upload your personal background image. The maximum file size is " +#~ "2MB." +#~ msgstr "ä½ å¯ä»¥ä¸Šä¼ ä½ çš„个人页é¢èƒŒæ™¯ã€‚文件最大 2MB。" + +#~ msgctxt "RADIO" +#~ msgid "On" +#~ msgstr "打开" + +#~ msgctxt "RADIO" +#~ msgid "Off" +#~ msgstr "关闭" + +#~ msgid "Design defaults restored." +#~ msgstr "默认外观已æ¢å¤ã€‚" + +#~ msgctxt "TOOLTIP" +#~ msgid "Add or edit %s design" +#~ msgstr "添加或编辑 %s 外观" + +#~ msgid "Design your profile" +#~ msgstr "设计你的个人页é¢å¤–è§‚" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 91e0112490..cf370d3d7d 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/ast/LC_MESSAGES/APC.po b/plugins/APC/locale/ast/LC_MESSAGES/APC.po index 11e86b6ef5..bb1f3b8a98 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index 1bf5b6cab6..1e64f18558 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index 37357ccdf0..f72e167932 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index 9e7de771d5..7030ea71bc 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 268af26237..4e65a2382b 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 00601bb658..51e6fb5268 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 1c0fe38a2f..0a7dd8b264 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index 7e784d8033..65675c024d 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 7ec857f6d2..35c4f40827 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index a9eb682cf8..6be50e38fd 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index c3223764c0..97cb9402c2 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po new file mode 100644 index 0000000000..f82096b70e --- /dev/null +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - APC to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - APC\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-apc\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Plugin description. +msgid "" +"Use the APC variable cache " +"to cache query results." +msgstr "" +"Gunakan cache pembolehubah APC untuk meng-cache-kan hasil pertanyaan." diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index b8ae170b5c..bcea4f8102 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 428edf2610..009febb413 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 92499eacd4..20e0cc9887 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index 0fb024b610..50deef2f75 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index f3a97f34c0..ba324d7af2 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index 8161e431f6..e6d71458b6 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index fd362ec96e..23c551435e 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index aa518b22a4..ab9d707e4a 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index d73c4005bb..0d45dfd1b7 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 7884450771..26447843e9 100644 --- a/plugins/AccountManager/locale/AccountManager.pot +++ b/plugins/AccountManager/locale/AccountManager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index ac54718a9d..84ef7d0314 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:57+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 3c4d7ef7be..099a411233 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index 162466d965..3c2cccd87b 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 9f8fe424eb..6a89cfe99e 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 811fe46f55..41301dc91c 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index 79f2ab47d1..6d17de38f9 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index d3b7fd3c90..77cecc09d9 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index ff26d2ff9d..ed49dc673e 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index 2369f5b792..51597ebcd0 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index a50ab31279..8a1a5bd4be 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index 36bdbaaf98..21db53096d 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index 4e7b392b7f..e0d2d3f4a2 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index a3d517352f..3d0954f0b2 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index 15535b1e65..d6b52c7365 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:54:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 54b9d5dea9..b2052c49f2 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index 1051f99333..cc6e73f69d 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index c8f92b00ab..b917e2150c 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index 25776c6f41..b5de17397e 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index f5ecee7b50..6e0a1e1252 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 960519b540..cd263cda17 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 4671b2d920..eadd32426b 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index 64b487dc70..dd72c685af 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -26,7 +26,6 @@ msgid "AdSense configuration" msgstr "Configuración de AdSense" #. TRANS: Menu item for site administration -#, fuzzy msgctxt "MENU" msgid "AdSense" msgstr "AdSense" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 1ab66a0f1c..060b9332ca 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 1689ce100b..27c28724da 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:00+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 2844520375..ae16dc598d 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index 65a9417e96..2abd3daf66 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index 87cfe3e4c0..453347240b 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index 8fc137a35c..9e99a884aa 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index 362f571975..f4f95026fd 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 046306c2c4..b017b9bc5d 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index f0f050fb5a..a1910b42eb 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 7cf25d3f77..f2f59f7d4e 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index e3ac62f055..7e01c64ff9 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 3107f12b6c..e445f1e280 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index a378606070..f414a554f6 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index bd0f757b67..2f3073bd44 100644 --- a/plugins/Aim/locale/Aim.pot +++ b/plugins/Aim/locale/Aim.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index bbc64d7063..a0267b52c2 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index f71b62575b..83575bd757 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index 8348bf3ef3..4cc9fc4728 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po new file mode 100644 index 0000000000..bb8a272dbe --- /dev/null +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - Aim to Finnish (Suomi) +# Exported from translatewiki.net +# +# Author: Tne +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Aim\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" +"Language-Team: Finnish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fi\n" +"X-Message-Group: #out-statusnet-plugin-aim\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: No idea what the use case for this message is. +msgid "Send me a message to post a notice" +msgstr "Lähetä minulle viesti lähettääksesi päivityksen" + +#. TRANS: Display name. +msgid "AIM" +msgstr "AIM" + +#. TRANS: Exception thrown in AIM plugin when user has not been specified. +msgid "Must specify a user." +msgstr "Käyttäjä pitää määrittää." + +#. TRANS: Exception thrown in AIM plugin when password has not been specified. +msgid "Must specify a password." +msgstr "Salasana pitää määrittää." + +#. TRANS: Plugin description. +msgid "" +"The AIM plugin allows users to send and receive notices over the AIM network." +msgstr "" +"AIM-liitännäisen avulla käyttäjät voivat lähettää ja vastaanottaa " +"päivityksiä AIM-verkoston kautta." diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index 0c02a32743..fae4714920 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index a13687240b..b9b41f8bf3 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index 9723c361b8..e822e1a341 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po new file mode 100644 index 0000000000..75201afa73 --- /dev/null +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - Aim to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Aim\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-aim\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: No idea what the use case for this message is. +msgid "Send me a message to post a notice" +msgstr "Hantarkan pesanan kepada saya untuk mengirim notis" + +#. TRANS: Display name. +msgid "AIM" +msgstr "AIM" + +#. TRANS: Exception thrown in AIM plugin when user has not been specified. +msgid "Must specify a user." +msgstr "Pengguna mesti ditentukan." + +#. TRANS: Exception thrown in AIM plugin when password has not been specified. +msgid "Must specify a password." +msgstr "Kata laluan mesti ditentukan." + +#. TRANS: Plugin description. +msgid "" +"The AIM plugin allows users to send and receive notices over the AIM network." +msgstr "" +"Pemalam AIM membolehkan pengguna menghantar dan menerima notis menerusi " +"rangkaian AIM." diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 8a1ae87d9e..3d8ac49b3d 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index b9c4a04848..2eb8cf9963 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index d9b6e2ddca..3275e72e93 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index dfe2c782cb..5a1faac350 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 29d693462f..e2ffe1880b 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:25:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index b97fd6884e..73442fedad 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 69003bf7c5..5099c4e756 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index 1c103bd2da..bdac94ce19 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index 5279b36706..852d63e440 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 20999d5270..a434e628b8 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 25dcacb818..ce84feee89 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 5dd0bf7bb1..fa76052979 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 523d1e8882..5d03b1385c 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 67d8dfca28..9614abca18 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 0f89db7a76..e9b0b873b4 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 5689568e8b..911c59a288 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 86acd9cca1..55cce50754 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 0889b94915..ed742760e4 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 49e250e62c..e8e62a7a42 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index 5a846f8ade..60eac8179f 100644 --- a/plugins/ApiLogger/locale/ApiLogger.pot +++ b/plugins/ApiLogger/locale/ApiLogger.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po index 7c0a0fae6b..3b0f6ddc84 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index 749af2c87e..2dbbbe11cc 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index d1ccbcb145..aa70550dda 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index 3e85f612f8..a82d900f25 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index b82fb14677..3ba6dc0246 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index 1d0418f1cf..1a70ae3a81 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po new file mode 100644 index 0000000000..5efb5eb7f2 --- /dev/null +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - ApiLogger to Malay (Bahasa Melayu) +# Exported from translatewiki.net +# +# Author: Anakmalaysia +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ApiLogger\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:07+0000\n" +"Language-Team: Malay \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ms\n" +"X-Message-Group: #out-statusnet-plugin-apilogger\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. TRANS: Plugin description. +msgid "Allows random sampling of API requests." +msgstr "Membolehkan pensampelan permohonan API secara rawak." diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index 3b4b2d25dc..255f9e47e2 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index 53cfdf8ea9..400a8cb0af 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po index 4ae772dd09..71b63fbbba 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index 4862aaa2d6..90a1280955 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 70851ae16f..7f43f496cd 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index 896111c3b4..44c0aafa12 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index fd31f1835b..20b495d3dd 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index 036558eea4..1d25311fc6 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index 39f89459ab..d5a742b41f 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index e7f12975b4..bdcfe27c33 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index 435911963f..ed0f8edeac 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 2726386382..f5755c634e 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 3e73c5962f..65f5f6523a 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 99f85872b2..a30dddf857 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 9634a8813a..8a1c9b52ea 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index ef107d3b9c..99a710e6d4 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index b6138a0201..c27460b6d9 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:10+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index c600d575b6..cc5da99353 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index 8e65f38e18..fa4fc691fb 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index 69c752edde..8a2cd39f51 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index a573ac3fb4..a5a1ada9e9 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:08+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 61b715a7a5..c18d7ed8be 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 4959b227a9..eccd409986 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 8e4504d6be..24f358a0b2 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index 25d9e6cddc..98c528ecc6 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index c2bb792c23..7e0a1679dc 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index fc564fa56c..d7a65f1f97 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 09b874d643..e39c3cf740 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 1b2d7806bd..dc71326bef 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index ae83ef442e..355cfd2c1a 100644 --- a/plugins/Awesomeness/locale/Awesomeness.pot +++ b/plugins/Awesomeness/locale/Awesomeness.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index 1a18acb526..ccc96e9a9c 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 206fba2687..d67baac713 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index eb516cb35c..6ea748ed02 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index 93236aa338..0971821ee5 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index 137903b329..9e0f2cca2d 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 972d791f06..7ec812c603 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index 7b9917ab37..07d86738a3 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index 73bb7d9d59..b622eeb56e 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index a06419c25c..a29d8158ea 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po index 4025d42e6e..7f3a33b3ca 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 6a10f2a320..a51b5a4cc6 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 18:38:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 7edce02df2..e49efa0814 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index a6f50ff3b0..32f325917c 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:12+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index a118af30d6..ee108c9131 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index db806c3093..709fdc5a75 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 5844a4c496..df1f956809 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index 13821aec11..979a9856c9 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index fbf04b9c7c..46d7fb4671 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index b2d8a9107e..1d6f15740f 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index e91702e740..20790c6aa1 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index 0e0ffc75c7..e20e22972c 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 8da89ecbfe..9cbbc729d0 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index 1303298b2f..5e1afb133a 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index f445ade627..2a48edb5b9 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:54:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index f4f4d92c47..91054a6ffb 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 1f8a746814..3dc7bce8f0 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index aded7e263d..46dee0e2d2 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index 6fde022034..4cce2c5cb9 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index bc7372a0d9..6a933e4dca 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 8de7e6474a..684dae623b 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 041f11eb05..1efdf1a0cb 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index 966c76093b..e87eeff741 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index e966133beb..266be312b4 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index a95243fde2..86e9072922 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 77a4c10ef4..4ea975b018 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index b5cda35689..7665138ba2 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index 4ec44e4888..f0d5a4544b 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 7f44a0b1c6..132ca1ce9e 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 5c5732e1c4..c5491e1b90 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 47c1fd943e..c91ab28249 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 19bac972cd..81be1665a2 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index a3a9e1790b..68dcb28ea9 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index 8a42b61a17..6ea93026a3 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index f137429b3e..27e2f2cc6a 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 602818eb54..738774effe 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 37a01666ce..198474e36d 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index a5f4e643f7..07c26aaf9d 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index a72d7df6d5..46fd83e316 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 8f77a3d61a..089c951f07 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index e0be113a16..d97bcf10e5 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index fe87051a07..77180ff5ad 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index ed0256df20..d8c7054652 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index 15ad432c6d..13d4bb2261 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 0f149204a6..15249cfda5 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index ed285f540d..aaae759192 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index bc271fb793..9c6a2e3aa9 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 1da6adf592..7bf1f2e181 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index f006e10a59..3ff269c89c 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index 6e6e8ed42d..3a017431dd 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index adc162fd64..a7856c094b 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index ff4bc0db3e..aa2831490a 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 7f245af3ff..996c650179 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index ac66c37f33..8a626ee29f 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index 4bce534f81..17e41f094e 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 607891b9b1..0d7437e090 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index 571ce2e870..fcd46e817b 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 452737047c..d3a22720ee 100644 --- a/plugins/Bookmark/locale/Bookmark.pot +++ b/plugins/Bookmark/locale/Bookmark.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 8ee167d5fa..79880d8e38 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index 9d7c3ee614..89d8582435 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index cfb1b4c3b7..ee69c59d2a 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 4df6721223..6495d9390e 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,13 +14,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 5f21c7d979..1bc3ce19f6 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index f7cde69f67..ff00a32b88 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index efab7fa869..2390c7dcc5 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index a0b1818ee8..cb6fe2dd87 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index f7116e28f4..393347a274 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 391346e455..a9bad63b3e 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:54:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index cb18ab21b2..f82445695e 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 4c94d44c2d..0b3e677001 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index b136397050..fe1cac43b5 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index 17b705731f..1d5b6d1cc2 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index e3972118ee..73dec66902 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index 5361c983b0..30c0762d52 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 3fe2e05afe..d323c08512 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index c9ff8ca714..9806f37146 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index d85d14e1cf..42f5e69a2d 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 3832cc93a2..a4ffe89bba 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 83005d965c..ebe8ac5428 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index ca119d9791..09aea3927e 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index 5d3694ca1d..67290715be 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index 65dfc65349..79429bf933 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index dc91cc4616..125e7deba0 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 4fc7c2c399..d498a3a72c 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:23+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index 2a2087bff3..0825080bf8 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index 9fffe90dd0..67be07cff1 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index d652b6185c..b7f0c408f6 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 06702ab540..4430b7b7f9 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index 468762b337..f80972c5fc 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 7455cdcbf8..19f04dc287 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index f541245e0a..4999d1b380 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index 12fa65689b..fbff0acdd0 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index c90ae2fe0a..4887e8a2c5 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index fef1837bbf..74ff184c1a 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 2d8361c1bd..1798ea9214 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index a0e4c3f635..54bfb04924 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 0e18b4698f..60fc7e790e 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 9cd5755abf..17c0dc6d67 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index 04db2b6620..8ac5833d35 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:26:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index acf769562a..5ea17f6cf0 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index fa3acf72a6..7dae2a1ff7 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index a9b3b414d0..5f37bff1c3 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 8cd141e499..398f3bf398 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 539849bf2e..784bb5c02e 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index a657b297c1..1c54812971 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 99f12675ea..94b499a0db 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index d030277d39..cc59a88efe 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index d758a1e141..c90c035d4e 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index d7fb096112..f65ae48424 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index ffb9b4c492..e0034e3f4a 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index b2e671d4fa..258bc8e0fb 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 1944006906..6d7002e4b8 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 38bad98eba..669f1637c4 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index a633f2f2f4..1c231d135d 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index fc6595846a..348db51bfa 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 0c163c4398..a039050ed9 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index db2cf29f78..bc3b26e3a3 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index b1363e7b01..3161d404a7 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index 6287ef6938..94eb513e92 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 7d0a3c6d6d..d40e95a431 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index b6799cc16e..5390286c0a 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index a2ce8b7e20..305ce533c7 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index 9ec844c539..2b818377e4 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index 8ed6a0155e..29c0b3391e 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 860d7f9a3a..4313c18857 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 5b640f3a80..161809d528 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 24f15f42a6..d0ab533eda 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index fb26929005..e824338a79 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index b6659a766a..a67d93e899 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index b1bc7b6bf5..3752945a55 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index 475dd1c9d4..af5634b494 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 5a3a6b44a9..37995bdda0 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7fb147b5ef..4bc8312f56 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index f5dc1ad0cf..b70a16a530 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index fb09db02b0..190125d461 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 9e2e50d8a4..097b46be88 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 304b1d9098..6a0eb4e89e 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index c9636ed023..760ce0d172 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index dca87e95e5..3200a374f2 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,16 +9,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \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: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index af8fd5a729..e782da2d78 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index cec5ae928f..1d731dd6e7 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 80ea5e286d..e04023781f 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 093179325e..6e34904d2c 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 50068c5306..9fc415907e 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index c9d40fbca4..78f7f31176 100644 --- a/plugins/Directory/locale/Directory.pot +++ b/plugins/Directory/locale/Directory.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po index 20267d2574..95e076f17b 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index 24948c200b..96f9894ede 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index cbf13b64d1..45e1c0c797 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 577b81761d..b93d5ae704 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:30+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index ab1c1ba748..324a6a71f9 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index a5c127cea2..1e68254b5b 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,9 +37,9 @@ msgstr "Catalogo de usatores - %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "Catalogo de usatores - %s, pagina %d" +msgstr "Catalogo de usatores - %1$s, pagina %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -161,11 +161,11 @@ msgstr "Create le" #. TRANS: Column header for number of subscriptions. msgid "Subscriptions" -msgstr "" +msgstr "Subscriptiones" #. TRANS: Column header for number of notices. msgid "Notices" -msgstr "" +msgstr "Notas" #. TRANS: Column header in table for members of a group. msgid "Members" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 02b7269923..fdfa600483 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,9 +37,9 @@ msgstr "КориÑнички именик - %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "КориÑнички именик - %s, Ñтр. %d" +msgstr "Именик на кориÑници - %1$s, Ñтраница %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -86,7 +86,7 @@ msgstr "" "* Проверете дали Ñите зборови Ñе напишани како што треба.\n" "* Обидете Ñе Ñо други клучни зборови.\n" "* Обидете Ñе Ñо поопшти клучни зборови.\n" -"* Обидете Ñе помалку клучни зборови.\n" +"* Обидете Ñе помалку клучни зборови." #. TRANS: Title for group directory page. %d is a page number. #, php-format @@ -140,18 +140,6 @@ msgstr "Пребарај групи" msgid "No groups starting with %s." msgstr "Ðема групи што почнуваат на %s." -#. TRANS: Help text for searching group directory. -msgid "" -"* Make sure all words are spelled correctly.\n" -"* Try different keywords.\n" -"* Try more general keywords.\n" -"* Try fewer keywords." -msgstr "" -"* Проверете дали Ñите зборови Ñе напишани како што треба.\n" -"* Обидете Ñе Ñо други клучни зборови.\n" -"* Обидете Ñе Ñо поопшти клучни зборови.\n" -"* Обидете Ñе помалку клучни зборови." - #. TRANS: Menu item text for user directory. msgctxt "MENU" msgid "Directory" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 1c2b2ea344..a889d3914a 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -38,9 +38,9 @@ msgstr "Gebruikerslijst - %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "Gebruikerslijst - %s, pagina %d" +msgstr "Gebruikerslijst - %1$s, pagina %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index 2d5091e028..7295e266e0 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 05990ea3b5..b6041a9660 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -37,9 +37,9 @@ msgstr "Direktoryo ng tagagamit - %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "Direktoryo ng tagagamit - %s, pahina %d" +msgstr "Direktoryo ng tagagamit - %1$s, pahina %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -87,7 +87,7 @@ msgstr "" "* Tiyakin na tama ang pagbabanghay ng lahat ng mga salita.\n" "* Sumubok ng ibang mga susing-salita.\n" "* Sumubok ng mas pangkalahatang mga susing-salita.\n" -"* Sumubok ng mas kakaunting mga susing-salita.\n" +"* Sumubok ng mas kakaunting mga susing-salita." #. TRANS: Title for group directory page. %d is a page number. #, php-format @@ -141,18 +141,6 @@ msgstr "Hanapin sa mga pangkat" msgid "No groups starting with %s." msgstr "Walang mga pangkat na nagsisimula sa %s." -#. TRANS: Help text for searching group directory. -msgid "" -"* Make sure all words are spelled correctly.\n" -"* Try different keywords.\n" -"* Try more general keywords.\n" -"* Try fewer keywords." -msgstr "" -"* Tiyakin na tama ang pagbabanghay ng lahat ng mga salita.\n" -"* Sumubok ng ibang mga susing-salita.\n" -"* Sumubok ng mas pangkalahatang mga susing-salita.\n" -"* Sumubok ng mas kakaunting mga susing-salita." - #. TRANS: Menu item text for user directory. msgctxt "MENU" msgid "Directory" @@ -176,11 +164,11 @@ msgstr "Nalikha na" #. TRANS: Column header for number of subscriptions. msgid "Subscriptions" -msgstr "" +msgstr "Mga pagpapasipi" #. TRANS: Column header for number of notices. msgid "Notices" -msgstr "" +msgstr "Mga pabatid" #. TRANS: Column header in table for members of a group. msgid "Members" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index a3239a39c7..0249e212f6 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 15:54:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -38,9 +38,9 @@ msgstr "Каталог кориÑтувача — %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "Каталог кориÑтувача — %s, Ñторінка %d" +msgstr "Каталог кориÑтувача — %1$s, Ñторінка %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -164,11 +164,11 @@ msgstr "Створено" #. TRANS: Column header for number of subscriptions. msgid "Subscriptions" -msgstr "" +msgstr "ПідпиÑки" #. TRANS: Column header for number of notices. msgid "Notices" -msgstr "" +msgstr "ДопиÑи" #. TRANS: Column header in table for members of a group. msgid "Members" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 6e10980f5e..2a5f193b48 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index 2695311ac8..9daca7bacd 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 43015e9dd2..51403c6ed6 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index 4837bf269a..4263899bc5 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:31+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index 93cd4c0212..351ca8f9e0 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 110469387c..1e3ebadecc 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 5ef4d7ec84..d75af85940 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 7444eee802..879211b078 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 3198a035b2..94a4cb122e 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 68e2aeea5a..0355fdc2f7 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index ac80c34d6b..e9a136e5df 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index bd875c07e4..8ec2c1c378 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index fdf377c6d4..3376d1d525 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 8aa52d0328..b46c47ce27 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index c2c2077f4d..738fd4bdd6 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index bfdcfa84aa..8c0025e13a 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index eeb673a8c0..a8d083d42c 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index 574dd1ee51..d5d4b8d894 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:32+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index 979f841482..abed22da0d 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index a805662ec3..1266a475b4 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index 70473cc420..47bd221bb1 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index a237929541..9017c6e22c 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index 02b507ae04..3296444563 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 4e6041fbf6..b14932539b 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index dc9625ee7f..b6a9f89719 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 3a5c8196d4..0da4929070 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index ace695d953..988d1cc35c 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index a0d10b322b..2b0dfce436 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index 235c9f6ec9..9d68e6b201 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 2b9a97e75f..e6c8bcd1ce 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index d3977fa6c4..0e0ed5555d 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index b134d2cb5d..d6b97c770f 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 6f93e963c7..9df1293f58 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index daa9f78f86..553156a838 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 86e71a4f17..004e144ea7 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index 52fefa6cff..83ccb2f2e4 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index 53e112c53f..a024c30af2 100644 --- a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot +++ b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. TRANS: Plugin description. -#: DomainStatusNetworkPlugin.php:195 +#: DomainStatusNetworkPlugin.php:223 msgid "A plugin that maps a single status_network to an email domain." msgstr "" diff --git a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po new file mode 100644 index 0000000000..664aab513c --- /dev/null +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - DomainStatusNetwork to German (Deutsch) +# Exported from translatewiki.net +# +# Author: Giftpflanze +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DomainStatusNetwork\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" +"Language-Team: German \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "A plugin that maps a single status_network to an email domain." +msgstr "" +"Plugin, das ein einzelnes StatusNet-Netzwerk mit einer E-Mail-Domäne " +"verknüpft." diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index 1aa9ea1673..ecdaa19531 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index 5b9625637e..89edfc1408 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index df4003da17..18b6901895 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index e3cebc60d8..f30f24b072 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index 0ffd05b5a3..857f6d34a6 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index 245a4d1131..9fd6e6bf94 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:55:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index f7430c3a45..b86c85e990 100644 --- a/plugins/DomainWhitelist/locale/DomainWhitelist.pot +++ b/plugins/DomainWhitelist/locale/DomainWhitelist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 8ba3503c85..9c4b1cc131 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 09:13+0000\n" -"PO-Revision-Date: 2011-06-05 09:14:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89487); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:01+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" @@ -29,9 +29,9 @@ msgstr "Le adresse de e-mail debe esser in iste dominio: %s." #. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. #. TRANS: %s are whitelisted e-mail domains separated by comma's (localisable). -#, fuzzy, php-format +#, php-format msgid "Email address must be in one of these domains: %s." -msgstr "Le adresse de e-mail debe esser in iste dominio: %s." +msgstr "Le adresse de e-mail debe esser in un de iste dominios: %s." #. TRANS: Separator for whitelisted domains. msgctxt "SEPARATOR" @@ -39,17 +39,16 @@ msgid ", " msgstr ", " #. TRANS: Exception thrown when an e-mail address does not match the site's domain whitelist. -#, fuzzy msgid "That email address is not allowed on this site." -msgstr "Le adresse de e-mail debe esser in iste dominio: %s." +msgstr "Iste adresse de e-mail non es permittite in iste sito." #. TRANS: Title for invitiation deletion dialog. msgid "Confirmation Required" -msgstr "" +msgstr "Confirmation necessari" #. TRANS: Confirmation text for invitation deletion dialog. msgid "Really delete this invitation?" -msgstr "" +msgstr "Es tu secur de voler deler iste invitation?" #. TRANS: Plugin description. msgid "Restrict domains for email users." @@ -57,25 +56,25 @@ msgstr "Restringer dominios pro usatores de e-mail." #. TRANS: Form legend. msgid "Invite collegues" -msgstr "" +msgstr "Invitar collegas" #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" -msgstr "" +msgstr "Message personal" #. TRANS: Field title for a personal message to send to invitees. msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "Si tu vole, adde un message personal al invitation." #. TRANS: Link description to action to add another item to a list. msgid "Add another item" -msgstr "" +msgstr "Adder un altere elemento" #. TRANS: Send button for inviting friends. msgctxt "BUTTON" msgid "Send" -msgstr "" +msgstr "Inviar" #. TRANS: Submit button title. msgid "Send invitations." -msgstr "" +msgstr "Inviar invitationes." diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index 305bc23177..fada1a005b 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:01+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index c9f29446c0..f950d80419 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:01+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index c4d872a68d..a734014eeb 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 09:13+0000\n" -"PO-Revision-Date: 2011-06-05 09:14:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89487); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:01+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" @@ -29,9 +29,11 @@ msgstr "Ang tirahan ng e-liham ay dapat na nasa loob ng nasasakupang ito: %s." #. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. #. TRANS: %s are whitelisted e-mail domains separated by comma's (localisable). -#, fuzzy, php-format +#, php-format msgid "Email address must be in one of these domains: %s." -msgstr "Ang tirahan ng e-liham ay dapat na nasa loob ng nasasakupang ito: %s." +msgstr "" +"Ang tirahan ng e-liham ay dapat na nasa loob ng isa sa mga nasasakupang ito: " +"%s." #. TRANS: Separator for whitelisted domains. msgctxt "SEPARATOR" @@ -39,17 +41,16 @@ msgid ", " msgstr ", " #. TRANS: Exception thrown when an e-mail address does not match the site's domain whitelist. -#, fuzzy msgid "That email address is not allowed on this site." -msgstr "Ang tirahan ng e-liham ay dapat na nasa loob ng nasasakupang ito: %s." +msgstr "Ang tirahan ng e-liham ay hindi pinapayagan sa loob ng sityong ito." #. TRANS: Title for invitiation deletion dialog. msgid "Confirmation Required" -msgstr "" +msgstr "Kailangan ang Pagpapatunay" #. TRANS: Confirmation text for invitation deletion dialog. msgid "Really delete this invitation?" -msgstr "" +msgstr "Buburahin na talaga ang paanyayang ito?" #. TRANS: Plugin description. msgid "Restrict domains for email users." @@ -57,25 +58,25 @@ msgstr "Hangganan ang mga nasasakupan sa mga tagagamit ng e-liham." #. TRANS: Form legend. msgid "Invite collegues" -msgstr "" +msgstr "Anyayahan ang mga kasamahan" #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" -msgstr "" +msgstr "Personal na mensahe" #. TRANS: Field title for a personal message to send to invitees. msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "Opsyonal na magdagdag ng isang personal na mensahe sa paanyaya." #. TRANS: Link description to action to add another item to a list. msgid "Add another item" -msgstr "" +msgstr "Magdagdag ng isa pang larawan" #. TRANS: Send button for inviting friends. msgctxt "BUTTON" msgid "Send" -msgstr "" +msgstr "Ipadala" #. TRANS: Submit button title. msgid "Send invitations." -msgstr "" +msgstr "Magpadala ng mga paanyaya." diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index 0f37c07003..b7ad861094 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 09:13+0000\n" -"PO-Revision-Date: 2011-06-05 09:14:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89487); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:01+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" @@ -30,9 +30,9 @@ msgstr "ÐдреÑа електронної пошти повинна бути #. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. #. TRANS: %s are whitelisted e-mail domains separated by comma's (localisable). -#, fuzzy, php-format +#, php-format msgid "Email address must be in one of these domains: %s." -msgstr "ÐдреÑа електронної пошти повинна бути в цьому домені: %s." +msgstr "ÐдреÑа електронної пошти повинна бути в одному з цих доменів: %s." #. TRANS: Separator for whitelisted domains. msgctxt "SEPARATOR" @@ -40,17 +40,16 @@ msgid ", " msgstr ", " #. TRANS: Exception thrown when an e-mail address does not match the site's domain whitelist. -#, fuzzy msgid "That email address is not allowed on this site." -msgstr "ÐдреÑа електронної пошти повинна бути в цьому домені: %s." +msgstr "Така адреÑа електронної пошти Ñ” неприпуÑтимою на цьому Ñайті." #. TRANS: Title for invitiation deletion dialog. msgid "Confirmation Required" -msgstr "" +msgstr "Ðеобхідне підтвердженнÑ" #. TRANS: Confirmation text for invitation deletion dialog. msgid "Really delete this invitation?" -msgstr "" +msgstr "ДійÑно видалити це запрошеннÑ?" #. TRANS: Plugin description. msgid "Restrict domains for email users." @@ -58,25 +57,25 @@ msgstr "Обмежити домени Ð´Ð»Ñ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ñ— пошти #. TRANS: Form legend. msgid "Invite collegues" -msgstr "" +msgstr "ЗапроÑити колег" #. TRANS: Field label for a personal message to send to invitees. msgid "Personal message" -msgstr "" +msgstr "ОÑобиÑте повідомленнÑ" #. TRANS: Field title for a personal message to send to invitees. msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "При необхідноÑті додайте оÑобиÑте Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð¾ запрошеннÑ." #. TRANS: Link description to action to add another item to a list. msgid "Add another item" -msgstr "" +msgstr "Додати ще один пункт" #. TRANS: Send button for inviting friends. msgctxt "BUTTON" msgid "Send" -msgstr "" +msgstr "ÐадіÑлати" #. TRANS: Submit button title. msgid "Send invitations." -msgstr "" +msgstr "ÐадіÑлати запрошеннÑ." diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index c0c1ff3c3f..3f27f6d8e0 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index 08be78a045..565133a79f 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 2ff8fbb12b..c1d7c6bbbc 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 2c1a2aa9c6..1aac35deec 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 4563ce7365..2af44bc35f 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index faaaec55a4..e5ddc3d93a 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index f93eb22aa5..ac3f22ce07 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index 712fd07d35..67217d143e 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 470cdca39c..289e6182e6 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 10bd0db5bc..81d7f02bf0 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 86e8115bc7..67419cad03 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 5782c20dba..03ceec50b9 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index dc64abdfb8..1b2c70bca1 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 6803fa5f3b..7616ec3205 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 54b7f36254..96b2499a79 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 959808a49d..b4cb111d3e 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index c0a85b1a19..9bcce72f39 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 762c8d3ffb..c78910ba44 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index b2f1a2530e..d7ade74517 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 226084e889..f9471dccaa 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 3e8d339499..7115ea4e12 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 6413ab6d34..ca3bde63ae 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 392d93732f..1a684f0ea1 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Belarusian (TaraÅ¡kievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index da083033bb..b612789204 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index 3f813d3d19..0068ce2717 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index 8e8cd76ac0..280204042c 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 9c8166fab4..5e5db7ff1b 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index bbe9237a77..ac3aff1e9d 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 088faef9a2..b9fb92983d 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index ec6621ae7f..0f037207a2 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index d85384237b..0786bc5047 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 03a870fa13..ab1de968f3 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 29e4be7b7c..27836743cf 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 2bc08cff90..fa96d0b404 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index b27db7ffce..5402c696f6 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index 703768ef9b..9189a1e6f5 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index 69ee4b3fac..32d2748b41 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index e7854f4206..5db52c7d9b 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 9836ca4867..082e65bc6c 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index f1b978048c..471648b258 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index 491ada4b70..f382e4e986 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index abb91adc0f..644a7827fc 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:39+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-17 22:47:43+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index e7205d98b3..b3f9506aed 100644 --- a/plugins/EmailRegistration/locale/EmailRegistration.pot +++ b/plugins/EmailRegistration/locale/EmailRegistration.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -200,17 +200,3 @@ msgstr "" #: EmailRegistrationPlugin.php:201 msgid "Use email only for registration." msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#: Email_confirmation.php:163 -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#: Email_confirmation.php:176 -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po index cf4e675fbc..3d88370f85 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -183,15 +183,3 @@ msgstr "" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "استخدام البريد Ùقط للتسجيل." - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index 50e82197d7..1f77309931 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -184,15 +184,3 @@ msgstr "" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index c68dacb2cd..ab6b6657ff 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -192,14 +192,8 @@ msgstr "Willkommen bei %s" msgid "Use email only for registration." msgstr "E-Mail nur für die Registrierung benutzen." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Konnte neuen Begrüßungszähler für %d nicht speichern." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Konnte neuen Begrüßungszähler für %d nicht speichern." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Konnte Begrüßungszähler für %d nicht erhöhen." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Konnte Begrüßungszähler für %d nicht erhöhen." diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 48c10cef2b..bbfba0b84d 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -192,15 +192,3 @@ msgstr "" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "Utiliser seulement le courrier électronique pour l'inscription." - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 42bbfda283..0901dc01f2 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -23,11 +23,11 @@ msgstr "" #. TRANS: Client exception trown when registration by e-mail is not allowed. msgid "Registration not allowed." -msgstr "" +msgstr "Creation de conto non permittite." #. TRANS: Client exception trown when trying to register without an invitation. msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Pardono, solmente personas invitate pote crear un conto." #. TRANS: Client exception thrown when no confirmation code was provided. msgid "No confirmation code." @@ -35,7 +35,7 @@ msgstr "Nulle codice de confirmation." #. TRANS: Client exception trown when using an invitation multiple times. msgid "Invitation already used." -msgstr "" +msgstr "Invitation jam usate." #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." @@ -62,9 +62,8 @@ msgstr "" "instructiones in le message de e-mail." #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." -msgstr "Nulle codice de confirmation." +msgstr "Nulle cosa de confirmation." #. TRANS: Error text when trying to register without agreeing to the terms. msgid "You must accept the terms of service and privacy policy to register." @@ -86,7 +85,7 @@ msgstr "Le contrasignos non corresponde." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "Le creation del conto ha fallite." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. @@ -192,14 +191,8 @@ msgstr "Benvenite a %s" msgid "Use email only for registration." msgstr "Usar e-mail solmente pro creation de conto." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Non poteva salveguardar le numero de salutationes pro %d." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Non poteva salveguardar le numero de salutationes pro %d." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Non poteva incrementar le numero de salutationes pro %d." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Non poteva incrementar le numero de salutationes pro %d." diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index c865d73991..9774803d44 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:27+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -188,14 +188,8 @@ msgstr "Добредојдовте на %s" msgid "Use email only for registration." msgstr "КориÑти ја е-поштата Ñамо за региÑтрација." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Ðе можев да го зачувам бројот на нови поздрави за %d." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Ðе можев да го зачувам бројот на нови поздрави за %d." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Ðе можев да го дополнам бројот на поздрави за %d." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Ðе можев да го дополнам бројот на поздрави за %d." diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index 0e240755e2..1aa380e09d 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -189,14 +189,8 @@ msgstr "Welkom bij %s" msgid "Use email only for registration." msgstr "Alleen registeren per e-mail gebruiken." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Het was niet mogelijk het aantal begroetingen op te slaan voor %d." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Het was niet mogelijk het aantal begroetingen op te slaan voor %d." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Het was niet mogelijk het aantal begroetingen op te hogen voor %d." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Het was niet mogelijk het aantal begroetingen op te hogen voor %d." diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index 0df922fb88..d74da701ec 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -184,15 +184,3 @@ msgstr "" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index 406b92bd48..c3b4ee2d61 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -23,11 +23,11 @@ msgstr "" #. TRANS: Client exception trown when registration by e-mail is not allowed. msgid "Registration not allowed." -msgstr "" +msgstr "Hindi pinapayagan ang pagpapatala." #. TRANS: Client exception trown when trying to register without an invitation. msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Paumanhin, tanging inanyayahang mga tao lamang ang makakapagpatala." #. TRANS: Client exception thrown when no confirmation code was provided. msgid "No confirmation code." @@ -35,7 +35,7 @@ msgstr "Walang kodigo ng pagtitiyak." #. TRANS: Client exception trown when using an invitation multiple times. msgid "Invitation already used." -msgstr "" +msgstr "Nagamit na ang paanyaya." #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." @@ -62,9 +62,8 @@ msgstr "" "ang kahong-tanggapan ng e-lliham para sa mga panuto." #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." -msgstr "Walang kodigo ng pagtitiyak." +msgstr "Walang bagay ng pagtitiyak." #. TRANS: Error text when trying to register without agreeing to the terms. msgid "You must accept the terms of service and privacy policy to register." @@ -86,7 +85,7 @@ msgstr "Hindi magkatugma ang mga hudyat." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "Nabigo sa pagtatala ng tagagamit." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. @@ -192,14 +191,8 @@ msgstr "Maligayang pagdating sa %s" msgid "Use email only for registration." msgstr "Gamitin lamang ang e-liham para sa pagpapatala." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Hindi masagip ang bagong bilang ng pagbati para sa %d." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Hindi masagip ang bagong bilang ng pagbati para sa %d." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Hindi masudlungan ang bilang ng pagbati para sa %d." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Hindi masudlungan ang bilang ng pagbati para sa %d." diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index 9b4ab22e6c..2413ecd336 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -24,11 +24,11 @@ msgstr "" #. TRANS: Client exception trown when registration by e-mail is not allowed. msgid "Registration not allowed." -msgstr "" +msgstr "РеєÑтрацію не дозволено." #. TRANS: Client exception trown when trying to register without an invitation. msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Вибачте, але реєÑÑ‚Ñ€Ð°Ñ†Ñ–Ñ Ð»Ð¸ÑˆÐµ за запрошеннÑми." #. TRANS: Client exception thrown when no confirmation code was provided. msgid "No confirmation code." @@ -36,7 +36,7 @@ msgstr "Ðемає коду підтвердженнÑ." #. TRANS: Client exception trown when using an invitation multiple times. msgid "Invitation already used." -msgstr "" +msgstr "Це Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð½Ñ Ð²Ð¶Ðµ було викориÑтано." #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." @@ -63,7 +63,6 @@ msgstr "" "Ñкриньку Ð´Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ñ–Ð½Ñтрукцій." #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." msgstr "Ðемає коду підтвердженнÑ." @@ -87,7 +86,7 @@ msgstr "Паролі не збігаютьÑÑ." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "Ðе вдалоÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати кориÑтувача." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. @@ -191,14 +190,8 @@ msgstr "ЛаÑкаво проÑимо до %s" msgid "Use email only for registration." msgstr "ВикориÑÑ‚Ð°Ð½Ð½Ñ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ñ— пошти тільки Ð´Ð»Ñ Ñ€ÐµÑ”Ñтрації." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ новий лічильник привітань Ð´Ð»Ñ %d." +#~ msgid "Could not save new greeting count for %d." +#~ msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ новий лічильник привітань Ð´Ð»Ñ %d." -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÑ€Ð°Ñ…ÑƒÐ²Ð°Ñ‚Ð¸ лічильник привітань Ð´Ð»Ñ %d." +#~ msgid "Could not increment greeting count for %d." +#~ msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÑ€Ð°Ñ…ÑƒÐ²Ð°Ñ‚Ð¸ лічильник привітань Ð´Ð»Ñ %d." diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 492294105c..749600e08b 100644 --- a/plugins/EmailSummary/locale/EmailSummary.pot +++ b/plugins/EmailSummary/locale/EmailSummary.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,25 +18,25 @@ msgstr "" #. TRANS: Text in e-mail summary. #. TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name. -#: useremailsummaryhandler.php:129 +#: useremailsummaryhandler.php:131 #, php-format msgid "Recent updates from %1$s for %2$s:" msgstr "" #. TRANS: Link text for link to conversation view. -#: useremailsummaryhandler.php:185 +#: useremailsummaryhandler.php:187 msgid "in context" msgstr "" #. TRANS: Link text for link to e-mail settings. #. TRANS: %1$s is a link to the e-mail settings, %2$s is the StatusNet sitename. -#: useremailsummaryhandler.php:197 +#: useremailsummaryhandler.php:199 #, php-format msgid "change your email settings for %2$s" msgstr "" #. TRANS: Subject for e-mail. -#: useremailsummaryhandler.php:208 +#: useremailsummaryhandler.php:210 msgid "Updates from your network" msgstr "" diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index 53200ee04d..d3f90a70cd 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index bc75d2472f..f9926d6e3a 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index 9cd576ba65..ffb4f6559b 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 1bf1c6e581..9bc5dca086 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 753f826d53..24602c0e11 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index debdaf7d8a..467de92572 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index f368e4956b..696db31719 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index ee0a528ade..a25bab995e 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 7bb994fd26..92d45bd10d 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index 49506e885a..f3ec991e4d 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index d108ac3aba..c89c2bd6e2 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index d8c10bd74e..c2bc9c2c13 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/hu/LC_MESSAGES/Event.po b/plugins/Event/locale/hu/LC_MESSAGES/Event.po index 39a38e3820..06e6b37bd7 100644 --- a/plugins/Event/locale/hu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/hu/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index a841157a65..56856ea518 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index b7add3dd87..c9f3401eb6 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index e10aadc394..b847bf4f66 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:48+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index d5558dabaa..69fa047e9d 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index fa5fc699fb..6da7b374b0 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 34b59421d5..6ee8430fe9 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 24f928d8e4..dc8183f91d 100644 --- a/plugins/ExtendedProfile/locale/ExtendedProfile.pot +++ b/plugins/ExtendedProfile/locale/ExtendedProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 3b198fb9e2..f8c7c9429f 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index 46f1fa3157..468ea5ec4e 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index 1adf9c9e32..75d42b36e3 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 72b59b5bd6..a2de3b4bc1 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index 56ab3b5958..ad71482c38 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 4d4a383a8d..f907fdb53f 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 1a0d8ac641..ed7e661be9 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index baf98e3650..b7eb46f665 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:52+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index 1c70232b29..38494f5233 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:52+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 85737b58c4..9b013fd24e 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index 4bbb622bcf..27a34f1b10 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 885daa295a..82100ac14f 100644 --- a/plugins/FacebookBridge/locale/FacebookBridge.pot +++ b/plugins/FacebookBridge/locale/FacebookBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -312,7 +312,7 @@ msgstr "" #. TRANS: Menu item for "Facebook" in administration panel. #. TRANS: Menu item for "Facebook" in user settings. #: FacebookBridgePlugin.php:217 FacebookBridgePlugin.php:256 -#: FacebookBridgePlugin.php:297 +#: FacebookBridgePlugin.php:296 msgctxt "MENU" msgid "Facebook" msgstr "" @@ -328,12 +328,12 @@ msgid "Facebook integration configuration." msgstr "" #. TRANS: Menu title for "Facebook" in user settings. -#: FacebookBridgePlugin.php:299 +#: FacebookBridgePlugin.php:298 msgid "Facebook settings." msgstr "" #. TRANS: Plugin description. -#: FacebookBridgePlugin.php:560 +#: FacebookBridgePlugin.php:559 msgid "A plugin for integrating StatusNet with Facebook." msgstr "" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index 65ade26915..1d26b01575 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 30ee020d22..dbeb7ce90b 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 14a57fdc26..69eb97d231 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 7beb484c4b..0d1aaac6ab 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index fb2c6e2c20..0973314b69 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index 4bc2457b92..538816a055 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index 1679438e9b..f922985e2f 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index ad67a4f948..b05daff638 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:56+0000\n" "Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mg\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index f6b721c2e8..dfbd6cf48b 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index c729cf6778..109943f1ba 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index 83465aa7ee..2959dd7864 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 62e8153020..3e8ab0f447 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index c48a45a8d4..ec3f2f65b4 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 693adcad51..b7004b5655 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po index 12bdb52c3c..8a4e0a1328 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index e89ea7f8a0..ae52394e1c 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index d7e8454bb1..84f2f4dc23 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 300799bcbf..467fc7a8bf 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index 51468f72c9..c950b57782 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 29801accc4..9e954f5cf9 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index b5f32a6ce6..763a317bc9 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 972a44d892..992b636f70 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index bafe3f57ab..bcfa7deb4a 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index e8ca5f43bf..a4365ecc4a 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 69689b2120..5e419e50a9 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index c1e839c7c5..0f67a30fb9 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 4602033b1e..1a7443f768 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 12367fd39c..7f5d3f294d 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index bf2cbf34b7..fda7e89550 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index 71ca95ed37..76fb249f8a 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index bac1fcf978..b0e5795380 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index 83e827e934..9a45c650d9 100644 --- a/plugins/FollowEveryone/locale/FollowEveryone.pot +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index a19d1333b0..5118702b52 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index fd60958d59..0b86d97fc8 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 6b124e2a56..c912bbf4a7 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 464a603c8e..dc1e0ec21e 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index f9e241999e..65bda4f31f 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index da23d1d867..94c13da60c 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 981faf5dcd..64be1a52d1 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 9c3713bc26..4debf7a9fa 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 6a5cec8833..8f0324a5f6 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index ca79ca0293..661de144ee 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:55:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index bd900d990c..f70e22e26f 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index d9ff6f02f9..65bf0e7e6e 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index ba22d656d2..02ee7577f1 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index b5397c26bb..c2e6bc1ed6 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index feda775957..3a42b10089 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index eb0fc9a9dc..1129884d95 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index b0fa49b6a0..90cfa51aab 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 5c3b48b06f..e80b5c51e1 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 114111c3fb..4c3c85c316 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 94ef963cca..a4777af753 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index b054ac5916..97f85c13ce 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index 466ddd43fc..a5359e1c28 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index c32b5ae2b2..60e2687765 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 4a716743c4..d80fdbbf48 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index c499c06b8f..2a2c511520 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 9a1086de13..47a4a935d4 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index 140b3ccd35..1737955ad3 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index edd17b7bff..8b52da708b 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index bc07acf5a1..1a3c652d5f 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index 926ed2bda2..ead021d135 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index 99d6c1cc50..5e90338191 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 32fb762598..e0b66ff70a 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index e135eecd2d..102d8edf6f 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 13b2df3c68..78d2c6eb06 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 76dbe1463a..0aabec3031 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 3ffe5afa48..9364a3d674 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index 4c976fb16c..c399aea32a 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index c03b72dbc0..c4183875eb 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index b06bd042ce..f29bb2ac94 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 9b14038c76..564776f49e 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 50bcf30271..4cab8388cf 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index 93678d0176..9f4f44f1c7 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index c9e3e0f3f4..f1f9265121 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index c38b5096ad..dbd5e50887 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 2d85559270..93de3f7b36 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index fabcdb33f2..10bc4c19d1 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 3d9fcd348f..5be1eb6c0e 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 9eb9be045e..dac4fb0785 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 05c0f0c0e1..e90fb68442 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index 21ec275da5..952c105e47 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index b8a16a8890..7b5063bd50 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index 8357989c3b..4445a59d46 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 25882d8293..be8d9c0b98 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index fe0f71ea8c..92e216890d 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index a856acaa05..b9ef2fb599 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index 2f36da5a06..2a0f5d2caf 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index a1724a2065..28a3301da7 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index faa3ddc152..8748db94e7 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index f0c999f80e..850342c931 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 19f82d4316..79229488fa 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 430f91dc08..2bfcf1668d 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index addb288e5a..7d35c755ef 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 9ac8084eb8..3ace904acb 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:04+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index 8b36e7c6ad..b1484bace0 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index c5ebc2f894..95a1c0c9fe 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index 0044a20aec..1d25284295 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 056a65f811..e8cb2a48bf 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 8bafed6920..ab2f9b21b9 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index 009ed1b924..2f79e0ac00 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..d50f292863 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - GoogleAnalytics to Swedish (Svenska) +# Exported from translatewiki.net +# +# Author: WikiPhoenix +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" +"Language-Team: Swedish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: sv\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Använd Google Analytics för " +"att spÃ¥ra webbÃ¥tkomst." diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index 1b519887a4..9604eaa306 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 5a4ad36d75..317a2c444e 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index be6b1726ad..027bccd6ea 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:05+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index d78166adbc..ae2927af88 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index 53f7a0ec63..bd79e7ff5a 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index e37109f781..34fd47fed8 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 7ba10a50aa..787a81891e 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index f0d388f27d..954306c451 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index e4aac4bf7c..92cbf915a9 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 4382ee8bd7..d3cac1cd1b 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index cff4aff6d4..ce11ce0e19 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 6b06fc55b8..a325ccfd02 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 529dfd55d9..9cfd6afcd5 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index d859beb331..d8eb170adb 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 449f70c69b..7cc68af922 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index bf2f6cdce1..62cd246fa5 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:06+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index e6bd924328..04d63ad2b1 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 6e7abad944..f243f26e1f 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index 70f76e09e1..25cf78464f 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 697a82a83d..6c41681517 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 4d0cadff24..8034d68e90 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index a65c18f3cb..73101edf35 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 6246f09670..02df12b4a5 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 95af5e94c6..4f9b6d86d8 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index e4d515a53b..465da0a8ae 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index 4938ae597d..522733c09a 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 62087f32eb..67733db040 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index 3ea4cecfac..aeac04f9af 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index f6d00c6f31..ad6ea1f89f 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index d88eb25ac1..d4730c7571 100644 --- a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot +++ b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index 7f9b95bb52..4ea6c02199 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:10+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index 0b871735a3..a4a00acf3b 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index c6ea7d1996..5e5c7ab674 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:56+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index b501e660dc..8f388ced4a 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index a0e04f3ac2..86bdf0dc28 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index fbebfe9e33..99f611e5bc 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index 184079ba66..a998c9d331 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index 61711d4197..c235cdbaf2 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index d26753c855..ec6ade2eb4 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:57+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 117df893e9..0047fa95ee 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index fb5e382edb..b3b95940c7 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 111432ae33..9320e8efb4 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 203c4870ff..9cb4c0dea7 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 956c60b542..e9b97dfa37 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 92517642d0..cfdcd1ebd2 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 761e2e54cc..52270b5745 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index c904de57d8..079b284cd5 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index b66d1df1c4..4e2f6d2f66 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 84d679ff38..fe8afc82e4 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 182174f486..070deb1dc7 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index c9d6262c2f..7e3b2256d4 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index 8177f9f7f1..24a596d528 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:58+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 15521505f7..b5fe301f31 100644 --- a/plugins/InProcessCache/locale/InProcessCache.pot +++ b/plugins/InProcessCache/locale/InProcessCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index b8960ed882..fb662455c5 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index fa72f77956..1fe5ea305d 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 6b9fa77582..585cae5840 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index b662f88b4e..e603c0ec47 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index 9432e499c8..2ce7d14dc3 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index e8cdaef9ca..42f0cd1b5a 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index e4c94a8ea2..b0e1e11d5d 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index 659ccddbcf..c55b93fcfd 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index 80dfb91169..e9acf2cad7 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index a60fbb426c..be10923a4f 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 39067ab756..2cb45e98a2 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index 57d0e08b40..37d3dfaaee 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index d95e5e7521..46ad0b2c63 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index b015a48400..a38cfa89de 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 425afc7892..f6e4993dec 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:13+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 8ed329d503..eaa0e301de 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 553bba507a..42b3dc9a05 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 674de0fa99..616d8bcf6c 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index aa052a371c..838b51cbd9 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 5932d6047a..df01e0377a 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 3a954c4bce..077ad3ace3 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index f26cccb416..fc72e5e2cd 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 1611668fd5..44277409f3 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index 0da2864ebc..907fc4f977 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index bc6903081d..6af4223e00 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 1669e07f09..c10997bd45 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:55:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index 44759d25ba..dedd99592e 100644 --- a/plugins/Irc/locale/Irc.pot +++ b/plugins/Irc/locale/Irc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index 08b605275a..bcda99637b 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 24cda78151..6f0f6c7ea4 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index e33a6c588a..63de1bb900 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index b086735f70..bf97321fee 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 1dd62f402f..59fcd11182 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 60ccac761a..853b7b02e8 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index 78e1ce52a9..fda7ba8d42 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index e754c5db49..ea6aa10383 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:56:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 6a81f23e9b..25ba6227c3 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index bf462802cf..021493f084 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index a1c1a403ff..f45faf7f32 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 2d4c814a48..ca16f6889e 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index 23585da192..f390a74f30 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index 11d30a8dc6..125ae9411d 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 51c747c0a7..5ca0f3eef0 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 43a35db446..2dd63d8347 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 23bddbf8c7..0651b9654e 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index 7a73773673..b7944cb53f 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 88c213a39b..f49aeb4e5d 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index f33b58ad47..41e66b49fd 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index cde68bcdc3..585582e574 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 5fdda1de98..af6da92bcd 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index c1741a8c0b..6231726d00 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:32+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index d32d049c59..c7085dea32 100644 --- a/plugins/LdapCommon/locale/LdapCommon.pot +++ b/plugins/LdapCommon/locale/LdapCommon.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index 32acafc8ab..fd0c7ef6d3 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index 2f0618186d..6f3a0071e0 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index 29d96de320..74c35d9a27 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index 9ce24115df..cc27ce2d54 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:04+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index ae14e93e83..89314b92a8 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index d4909611ad..906a7292f9 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index 4b8ffe90c5..c7a0a55ad7 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:01+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 3659a10823..fef032d87d 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po index f8c2a5acaa..8cb7e976ad 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 8ae84e9f13..16e85dc3e0 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index 5683ae0b60..c73ae92beb 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 25e9e2c10e..1b8c1df8d6 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 527c1683ce..a8c32dd92e 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 87e7ce538f..d7dd120a06 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 4d821486c5..82c4505da6 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 24cb1994e1..a38d6730af 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index bae76f2250..8fa255f412 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index cb5f1ea84c..f84edd2093 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index a477af4144..805a121dc9 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index 8bbc42a7b1..efa860a65f 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 3f8a47d016..8b98a14c2b 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 896e5b52ea..8b2d03c335 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index 8892a4ec62..5e1c5735b3 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 6360a54aee..c53bfaaec0 100644 --- a/plugins/LinkPreview/locale/LinkPreview.pot +++ b/plugins/LinkPreview/locale/LinkPreview.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index a49e47e28d..1003c316a2 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 444e38ce01..8406bf245d 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index e595d37faf..77c7c1126a 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index 8035cfd52c..bf5969ec45 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index b61d34a7ce..d4d654e7f2 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index ca0cd71a5e..efa44ef56f 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index 07cd2664c3..ef7f7ee6cf 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index 59299a76b8..6b3b0c58bc 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 60d4a35d17..313d694171 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index 5af0489c55..bb77e103d9 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index bf51dc00c8..2cadc93680 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index 5e9a8f830c..8034d2911c 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 56fe5ad1c7..40aea2da08 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index bd8709beb9..b961deea7d 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 84d98b3909..511a694a49 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 5e443b2a69..0edb1cf9f3 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 49e5d64373..b58a2966f7 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index 10bbf793cd..b1f8b6374b 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 6b287cbfc6..4438feec0e 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index e9089aaa04..deba61659d 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index c8eb60c1e6..ebe0ab8e9d 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 3742a7f560..f39767073a 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 56552c6fb1..20495154d6 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index 7dbd683ebf..f34b174df6 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index 2a7bfb5806..b427455cae 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index 0383e81bbc..321cb4b765 100644 --- a/plugins/LogFilter/locale/LogFilter.pot +++ b/plugins/LogFilter/locale/LogFilter.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 242cd55697..5c36167b47 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 6a28e58c63..795082ad37 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index b5ac33d388..65549c23c9 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 642920ea97..d3d1e0c360 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index e33e987bbb..a33dd7f294 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 1e790ae4f0..51fa16f293 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index d419f99298..df1da4a3eb 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index b1ae9f3460..d06cc7f7b0 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index dd9c705646..c5ce28eef0 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index eb9823056c..1ef2050f2d 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 00c24d0c5d..b0de7cedb2 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 810c7174d1..78dfe8f0ed 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 87593b1309..a94ddabe9b 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 52fb9795e3..f9fa9586b7 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index b39d8e3a9e..048eee08f7 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 209fb5884e..481780be32 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index e0bd885fea..2437e3e239 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 7324179c30..56e07c1349 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 157cdf99ae..cb37a074c8 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index f839c55033..c44c1cf6ea 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index 8551fa9b55..707624cdc6 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index 897ecc3239..86ac94a428 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index a6a1d8ddb9..7757608231 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 5844598ff3..df55287473 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 356cd988dc..8953635d6e 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 3be84366d2..34ee106429 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index f1f051690b..a4d1bb934e 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index 78f9bc2f3a..741c45e3aa 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index f2bec0d503..222cb06d11 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 2db5cf550b..84d2050286 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 10a180e9a3..32b9aa61be 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index 1a8adabef6..2e8b482443 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 20dea5dc43..f9a5bb5f7e 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:11+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index ee15dc18cd..e2521ade73 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index 70e7b43433..e1e0a22f85 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index 755fc51cff..917b67cf95 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index 2ed0b73f96..c2e1e4b4bd 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index a84cff997b..90f3f8d133 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 7595087611..6d0efb7805 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index dec611d480..7288724b9c 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index 2d9451b4df..ba7145eb85 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 49511a2f5c..44bad58565 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 123da173c5..2a87f5d10e 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index c6b3525d00..6a8b35332c 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index e782e1fdc0..ef316a5cb8 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 8b0aca654a..25931c8ca3 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index a5ad4cb859..0155480e7a 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 6a2c93d774..2eda8844ce 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index ca5e525ac6..7433e9cd8f 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index f54d38efb8..6fba793086 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index 67bde12114..8846d9854e 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index 31fb8c3e9a..ec5fb7de02 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 9187bc7411..2fc3d68d57 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 292d5a969a..27b426e4d5 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index dd0331daee..cf326b31f1 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index cc380271f0..5404427b41 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index e788b1f294..0794eb43ba 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index 0611e41d6c..bf4c320afd 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index eec2fe2359..8065f9c64b 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 6432903663..51ed1a5963 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 33a2931c9f..6580324773 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index aa06bae0e9..d454fc12a1 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index d5e7d160ef..4bac0656ea 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 29dadeb146..3107a2146a 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index 6e8cc75a8f..8842369214 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index 3e80b61b3f..4e2ae56ac4 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 1cd014ca88..e21550f33f 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index fce242937b..f976f52890 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index d3b410492b..a0cdfd18ce 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index df4f967081..3699656b76 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 6fb82f905e..850cd2aeec 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 5c76d6b5cc..5f11d7f099 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 662236368d..9a31b75676 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index bc1c63dbc5..9b2ac0fa1e 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index c77da677ae..81d92b1719 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index 7925ebb4e1..87ac71b771 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 2ccae9ed69..c2c555b10a 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index c45121511a..20f137f3af 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 73a6b2c9b3..f20b5f68c1 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 7dc87cc343..f8cc988f7b 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index 33d63eb7d7..1b045ac012 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index e05cf63826..fc54118851 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 6e3f198d33..5281ba21ba 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 4d4ab12a8c..cd3e89b9b3 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index e37b88059d..1db059c6d9 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 98d0f456b8..3c6c035d0d 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:31+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index c97b263968..1d3f909135 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,16 +22,16 @@ msgid "This page is not available in a media type you accept." msgstr "" #. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. -#: MobileProfilePlugin.php:361 +#: MobileProfilePlugin.php:370 msgid "Switch to desktop site layout." msgstr "" #. TRANS: Link to switch site layout from desktop to mobile mode. Appears at very bottom of page. -#: MobileProfilePlugin.php:365 +#: MobileProfilePlugin.php:374 msgid "Switch to mobile site layout." msgstr "" #. TRANS: Plugin description. -#: MobileProfilePlugin.php:403 +#: MobileProfilePlugin.php:412 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 48d06c8cfc..0a36fad575 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index 8ff7701142..245fb5141b 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 72e40c43a1..39d0b52827 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 78570987fe..2b5c922529 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index 2a5f8f18c1..5e0f741abb 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 6138e788f1..50b959ea39 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 7396577c32..1afcb87c31 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index e3b1a19301..a00b235a1f 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 3ac271de8c..0d73d375bf 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 323c31a3aa..05c60a7da0 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index 34477d763e..1c6ea5cb26 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index cc706906a5..41e6a4d297 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 1d66245edc..03684a63f7 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index 5b68100885..1be5f0aeb1 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:59:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 6941ddd41a..b1fb059df5 100644 --- a/plugins/ModHelper/locale/ModHelper.pot +++ b/plugins/ModHelper/locale/ModHelper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index e2e9fc14fa..c5cc041f3e 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 5f988be212..0e5509ee18 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 06bd5aa378..010408bc32 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 8a56ba235c..da4df06fb9 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 785ca5caba..5d95eea56b 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 2b481d63bd..d25a244856 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index a1d26bb158..2de05df850 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index 951010f190..2bae31b817 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 3abc02df6b..64ec97c420 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index b1583928ca..dbf86bb400 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 558640227b..1badc47731 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index b1a79a8320..9b45dab950 100644 --- a/plugins/ModPlus/locale/ModPlus.pot +++ b/plugins/ModPlus/locale/ModPlus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 7ab8f95f2b..d4631bd39f 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index a1bb30e1cc..c973cf36fb 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 809e96415d..d285b80b7f 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index ef6b1c6b72..512e9681d0 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 847be2ec8d..7d1d3e9c81 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index aa5bf77f31..326487485f 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index 3eab8d8cb6..5f504f0a31 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index 9e94644e12..9219ebbb8f 100644 --- a/plugins/Mollom/locale/Mollom.pot +++ b/plugins/Mollom/locale/Mollom.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po index 3bfa0e3cbb..0086f047e1 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index b544c18c73..0d9774a24b 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index a094c9700e..2c53e90ee2 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index 6fd2cab0c7..8de9464cdb 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index 8c9dbc5e7d..556cb2d707 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index 9eb946e32b..d5e9242ad1 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index 19e16bb7d3..96c78474a9 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index 55a802e217..cdb956ec44 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 263a2e1f82..ccd6150ce0 100644 --- a/plugins/Msn/locale/Msn.pot +++ b/plugins/Msn/locale/Msn.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index e5d2d25ba2..c85f01c9cb 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index c4ff3ad631..64d05c6d06 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 94898be9a1..5b994c8991 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index e845a1f021..7605bb1c4e 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index 4c9044d016..43493bb7aa 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index e97be882ae..6c3036ff72 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 69b8990207..ac642a313a 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:36:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 90c3a07f32..414f8e8f74 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index a369ca7d85..127180a55b 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index ce2a5cbd0e..0920d78c2b 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index e8176c2320..4ba6208f26 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index b66c1dac86..ad75c58dde 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index e0fd807ce5..ab516f5536 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index cd09eef78a..8389c3b2f6 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 88f49f9c68..5a3eea1400 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index 9a1aab9c8d..acbaba70fb 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index 7efbb9fc2f..c0f574101c 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 6e229bfa96..b1355f019a 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 6f68771eae..46ad519977 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index 2e65c0cfa5..654eeb38d1 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 371a592289..2d65a978a7 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index 521ee8bbf2..0ef11a524a 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:22+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index ecbcfee155..76453e94aa 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: tests/gettext-speedtest.php:57 +#. TRANS: String in the gettext speed test script. Unimportant. +#: tests/gettext-speedtest.php:58 msgid "Feeds" msgstr "" diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index ed7954fd0e..c9fd9be86b 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Feeds" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index e3520f2296..81290a9325 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -12,18 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Flux d’informations" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 8e1cbd9905..94492bc94d 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Syndicationes" @@ -294,7 +295,6 @@ msgid "Profile Account" msgstr "Conto de profilo" #. TRANS: Field title. -#, fuzzy msgid "Your account id (for example user@identi.ca)." msgstr "Le ID de tu conto (p.ex. usator@identi.ca)." diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 484b363ccf..f8915c5219 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "피드" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index abfde01794..d4e8533e6a 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Канали" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 1b6319a7dd..00e1fb5efd 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Feeds" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index aeaa5ea41c..ab6a1c6bd8 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:47+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Mga pasubo" @@ -302,9 +303,8 @@ msgid "Profile Account" msgstr "Akawnt ng Balangkas" #. TRANS: Field title. -#, fuzzy msgid "Your account id (for example user@identi.ca)." -msgstr "ID mo ng akawnt (katulad ng user@identi.ca)." +msgstr "Ang ID mo ng akawnt (halimbawa na ang user@identi.ca)." #. TRANS: Client error displayed when remote profile could not be looked up. #. TRANS: Client error. diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 869357d6d8..e3c8e9edea 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\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" +#. TRANS: String in the gettext speed test script. Unimportant. msgid "Feeds" msgstr "Веб-Ñтрічки" @@ -296,7 +297,6 @@ msgid "Profile Account" msgstr "Профіль акаунту" #. TRANS: Field title. -#, fuzzy msgid "Your account id (for example user@identi.ca)." msgstr "Ідентифікатор вашого акаунту (щоÑÑŒ на зразок user@identi.ca)." diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 3344451fee..2293527987 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index 3a6c6e5b3c..514a8bac91 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index e771292ce0..33b10de282 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 0bedeff5bb..284c901e0d 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 6eee7d23e0..380bc5f78b 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 4cfea40074..03367905aa 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 2108cd29fe..9fa448f1f8 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index cb74dc2d8b..e7f0938b8b 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 803764e482..907b1a1bd9 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 7900b7888e..3c961e47d2 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index c88c7ecba7..f70bd18813 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index ea029f62aa..dea367885d 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 53699d78c0..8748f6e67a 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index f83be2b4d1..b9012111a6 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index d6e6cf98e8..3bc3d33d4a 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:23+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 6830713c29..31dab4a432 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:39+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:28:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 29597ad895..93055b33b9 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,7 +37,7 @@ msgstr "" #. TRANS: Button text to continue OpenID identity verification. #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. -#: openidtrust.php:136 OpenIDPlugin.php:664 +#: openidtrust.php:136 OpenIDPlugin.php:671 msgctxt "BUTTON" msgid "Continue" msgstr "" @@ -48,38 +48,43 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "" +#. TRANS: Client exception thrown when an action is not available. +#: OpenIDPlugin.php:139 +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:218 +#: OpenIDPlugin.php:219 msgctxt "TOOLTIP" msgid "Login to the site." msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:221 +#: OpenIDPlugin.php:222 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:227 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:230 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:235 +#: OpenIDPlugin.php:236 msgctxt "TOOLTIP" msgid "Search for people or text." msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:238 +#: OpenIDPlugin.php:239 msgctxt "MENU" msgid "Search" msgstr "" @@ -87,23 +92,50 @@ msgstr "" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. #. TRANS: OpenID configuration menu item. -#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:606 +#: OpenIDPlugin.php:296 OpenIDPlugin.php:332 OpenIDPlugin.php:613 msgctxt "MENU" msgid "OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:297 +#: OpenIDPlugin.php:298 msgid "Login or register with OpenID." msgstr "" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:333 +#: OpenIDPlugin.php:334 msgid "Add or remove OpenIDs." msgstr "" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#: OpenIDPlugin.php:484 +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#: OpenIDPlugin.php:489 +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#: OpenIDPlugin.php:497 +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#: OpenIDPlugin.php:536 +#: OpenIDPlugin.php:543 #, php-format msgid "" "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " @@ -111,46 +143,46 @@ msgid "" msgstr "" #. TRANS: Tooltip for OpenID configuration menu item. -#: OpenIDPlugin.php:608 +#: OpenIDPlugin.php:615 msgid "OpenID configuration." msgstr "" #. TRANS: Plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:661 msgid "Use OpenID to login to the site." msgstr "" #. TRANS: OpenID plugin logon form legend. -#: OpenIDPlugin.php:681 openidlogin.php:132 +#: OpenIDPlugin.php:688 openidlogin.php:132 msgctxt "LEGEND" msgid "OpenID login" msgstr "" #. TRANS: Field label. -#: OpenIDPlugin.php:689 +#: OpenIDPlugin.php:696 msgid "OpenID provider" msgstr "" #. TRANS: Form guide. -#: OpenIDPlugin.php:698 openidlogin.php:149 +#: OpenIDPlugin.php:705 openidlogin.php:149 msgid "Enter your username." msgstr "" #. TRANS: Form guide. -#: OpenIDPlugin.php:700 openidlogin.php:151 +#: OpenIDPlugin.php:707 openidlogin.php:151 msgid "You will be sent to the provider's site for authentication." msgstr "" #. TRANS: OpenID plugin logon form field label. #. TRANS: Field label. #. TRANS: OpenID plugin logon form field label. -#: OpenIDPlugin.php:704 openidsettings.php:110 openidlogin.php:155 +#: OpenIDPlugin.php:711 openidsettings.php:110 openidlogin.php:155 msgid "OpenID URL" msgstr "" #. TRANS: OpenID plugin logon form field instructions. #. TRANS: OpenID plugin logon form field title. -#: OpenIDPlugin.php:707 openidlogin.php:158 +#: OpenIDPlugin.php:714 openidlogin.php:158 msgid "Your OpenID URL." msgstr "" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 292de5d890..3813a75d27 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -53,6 +53,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "ألغÙ" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" #, fuzzy msgctxt "TOOLTIP" @@ -102,6 +106,30 @@ msgstr "Ù„ÙØ¬ أو سجّل بهوية Ù…ÙØªÙˆØ­Ø©" msgid "Add or remove OpenIDs." msgstr "أض٠أو احذ٠هويات Ù…ÙØªÙˆØ­Ø©" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 0f8406517a..c225e02466 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -53,6 +53,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" #, fuzzy msgctxt "TOOLTIP" @@ -102,6 +106,30 @@ msgstr "Inici de sessió o registre amb OpenID" msgid "Add or remove OpenIDs." msgstr "Afegeix o suprimeix connexions OpenID" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 5b70fbf632..970b8ff59d 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -15,13 +15,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -59,6 +59,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Abbrechen" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -106,6 +110,30 @@ msgstr "Anmelden oder Registrieren mit OpenID" msgid "Add or remove OpenIDs." msgstr "Hinzufügen oder Entfernen von OpenIDs" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index df8567d3fa..af792bc55a 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -57,6 +57,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" #, fuzzy msgctxt "TOOLTIP" @@ -106,6 +110,30 @@ msgstr "Se connecter ou s’inscrire avec OpenID" msgid "Add or remove OpenIDs." msgstr "Ajouter ou retirer des identifiants OpenID" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 961cf31be7..1cf6df41a8 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -52,6 +52,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Cancellar" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -97,6 +101,30 @@ msgstr "Aperir session o crear conto via OpenID." msgid "Add or remove OpenIDs." msgstr "Adder o remover OpenIDs." +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index 358767dc2b..ec5b1a5311 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -52,6 +52,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "취소" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" #, fuzzy msgctxt "TOOLTIP" @@ -101,6 +105,30 @@ msgstr "오픈아ì´ë””로 ë¡œê·¸ì¸ ë˜ëŠ” 가입" msgid "Add or remove OpenIDs." msgstr "오픈아ì´ë”” 추가 ë˜ëŠ” 제거" +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 427e5d15ec..b1511b5bf9 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -52,6 +52,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Откажи" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -97,6 +101,30 @@ msgstr "Ðајава или региÑтрација Ñо OpenID." msgid "Add or remove OpenIDs." msgstr "Додај или отÑтрани OpenID-ја." +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -609,7 +637,7 @@ msgstr "Запомни ме" #. TRANS: OpenID plugin logon form field title. msgid "Automatically login in the future; not for shared computers!" msgstr "" -"ОтÑега врши автоматÑка најава. Ðе треба да Ñе кориÑти за јавни Ñметачи!" +"ОтÑега врши автоматÑка најава (не треба да Ñе кориÑти на јавни Ñметачи!)" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. msgctxt "BUTTON" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 44cc0c96ec..7b4a96da7b 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:47+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \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: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -56,6 +56,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Annuleren" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -101,6 +105,30 @@ msgstr "Aanmelden of registreren met OpenID." msgid "Add or remove OpenIDs." msgstr "OpenID's toevoegen of verwijderen." +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 8a661d4b95..5910fbc71e 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:32+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -52,6 +52,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "Huwag ituloy" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -97,6 +101,30 @@ msgstr "Lumagda o magpatala na may OpenID." msgid "Add or remove OpenIDs." msgstr "Idagdag o alisin ang mga OpenID." +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 98b9820931..6363224670 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:32+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -53,6 +53,10 @@ msgctxt "BUTTON" msgid "Cancel" msgstr "СкаÑувати" +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "" + #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" msgid "Login to the site." @@ -98,6 +102,30 @@ msgstr "Увійти або зареєÑтруватиÑÑ Ð·Ð° допомого msgid "Add or remove OpenIDs." msgstr "Додати або видалити OpenID." +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" + #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format msgid "" diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 53dc36a15f..aa081c5676 100644 --- a/plugins/OpenX/locale/OpenX.pot +++ b/plugins/OpenX/locale/OpenX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index 981cc52d7d..cef36243cf 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index ebe2346898..f4b4d5467a 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 6a16c7de87..3851351de3 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 2737bbb6af..10e88714a5 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index e00d8d1178..615ac0d938 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index a243a5829a..0220977d7d 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index 68c70f928e..0a365ffb3e 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:33+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index d758676023..5f02b3bd9b 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index b07270360c..8ef46b39cc 100644 --- a/plugins/Orbited/locale/Orbited.pot +++ b/plugins/Orbited/locale/Orbited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po index 39668a2a6c..ff46720126 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index e3878072a3..4d2856af04 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index b194f70460..f428af37f5 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index af2cf552d6..0436643378 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index 42f5ad28c9..19d5099a8c 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index 7c43e2f45f..6612a67927 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:34+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index 45d9b0c808..dd68146375 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:35+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:56:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 0ce04c8e43..ca2856e325 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index a0d16a0e16..df17694b94 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 0c6d36938e..eec64ac862 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 90c1b8a808..2f3952adf1 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 9a72f66285..773bc7612a 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 64a214e202..9b3b8a34df 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index 9e32b8d3e5..2f4bcd0053 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index c892750155..f779c9786a 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index c1b3f07617..ef260e0ca6 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index a6f83b3ec1..6feb331aaf 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:48+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 64c52c933c..66ea45d99d 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 8cbb617920..96673e8fb1 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 04ef7b38ec..75e58dde93 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 2c0d40d44a..98e1cf8244 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index 5e612719d8..309dbf2919 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index 2b5daba315..386b4b6279 100644 --- a/plugins/Poll/locale/Poll.pot +++ b/plugins/Poll/locale/Poll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index 66259c4d33..be7115a4ca 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index ac8810d74a..a5b881801e 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index a708067d48..8d47f075c3 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 19e3dbeac3..1c6d5c498e 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index f1ca39b908..9fb788cf28 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index da701b6007..723f6a59fb 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 1c1b255180..d188d0708a 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 47e450c0f9..441ef031bd 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index b892721d38..0928a322ba 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:51+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 292c342ca0..6394930504 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index 33ffa58d34..eab481fcc5 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 07a56f2d97..d464e300a8 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index bd338e9490..9a395c0ac9 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 3dda47936c..4e71ff8178 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 75142fe79e..a8ec1b4147 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 399f429375..aa4b362f89 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index 06329d0836..fe9958172f 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 4f905d41da..79e1243ab3 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index a3e23fbb38..1e57ae0579 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index e72d519f6a..a1760ba5ec 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index 5dffddae14..3cfd2f7690 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 52fddd7bae..6cd7b60c04 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index d49497272f..ec32f7c6f5 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 9d33c546e1..ef8cf4c463 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:52+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index e2c6496e10..608bb40e75 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..e4fbd0890c --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - PoweredByStatusNet to Afrikaans (Afrikaans) +# Exported from translatewiki.net +# +# Author: Naudefj +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" +"Language-Team: Afrikaans \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: af\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Text output after site name. +msgid "powered by StatusNet" +msgstr "aangedryf deur StatusNet" + +#. TRANS: Plugin description. +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 6057128d95..061b1ea95e 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 6252b23595..cd4a2abcc8 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index 4f3f9f1171..e6259bec34 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index b77d0ef1bd..fda631908c 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index 9952bfe142..28433094e7 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index b73d5385dd..50c5f7038e 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 870ea3d4a3..4f67e1b843 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index dd4e29eced..a55c383851 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index 5ce73831a4..5be18ee7eb 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index 9eeef708b6..cb43f84a74 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index a7a8d47442..bead34e0f2 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:53+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 98cc23855c..5d4c87ad58 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index ee0714d521..8e40c0995c 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index 15c2afd1f0..a010260fa9 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index ab39818ca1..47ff0fce1f 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 045c2eb7a7..8c2dccc7f0 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index cffefd2f66..82a3169872 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 3c5b84b6f6..7a734a1568 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 39adbf3ab1..762a5342c7 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 52f6c78d7a..6615babb0b 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 27cccbdc7f..458d948a5e 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" @@ -24,6 +24,8 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." msgstr "" +"Es necessari specificar un \"serviceUrl\" pro poter accurtar adresses URL " +"con ptit." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 01976e9999..e518cf3fdf 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index 9031f49b8c..d4707ea05f 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." -msgstr "" +msgstr "Мора да наведете serviceUrl за Ñкратување на URL-адреÑи Ñо ptit." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 8aa49d14a8..a440defc17 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index 32b9c557df..92c9fc9dae 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." -msgstr "" +msgstr "U moet een serviceUrl opgeven om URL's in te korten via ptit." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 19e021eb39..e9c9244740 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 65dba1213d..1a9b804509 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 0ec0b9e19b..8a7b97d1b8 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index be9b8393ab..68af1f1f3d 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" @@ -24,6 +24,8 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." msgstr "" +"Dapat kang tumukoy ng isang URL ng palingkuran para sa pagpapaikli ng URL na " +"ptit." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 7070e12cfe..986a0660e7 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:55+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" @@ -24,7 +24,7 @@ msgstr "" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." -msgstr "" +msgstr "Ви повинні зазначити URL-адреÑу ÑервіÑу ÑÐºÐ¾Ñ€Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ñилань." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index e3acf1eed4..1d2724eaa1 100644 --- a/plugins/QnA/locale/QnA.pot +++ b/plugins/QnA/locale/QnA.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index b3d9167708..18806130ef 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 1fc61777a0..19dc275514 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index 0b628e5e66..3bf9065660 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -81,7 +81,6 @@ msgid "Answer" msgstr "Responsa" #. TRANS: Form title for sending an answer. -#, fuzzy msgctxt "TITLE" msgid "Answer" msgstr "Responsa" @@ -113,7 +112,6 @@ msgid "Invalid or missing question." msgstr "Question invalide o mancante." #. TRANS: Exception thrown trying to close another user's question. -#, fuzzy msgid "You did not ask this question." msgstr "Non es tu qui poneva iste question." @@ -141,7 +139,6 @@ msgid "Question and Answers micro-app." msgstr "Microapplication pro questiones e responsas." #. TRANS: Application title. -#, fuzzy msgctxt "TITLE" msgid "Question" msgstr "Question" @@ -184,7 +181,7 @@ msgstr "Tu responsa..." #. TRANS: Link description for link to full notice text if it is longer than #. TRANS: what will be dispplayed. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Title for link that is an ellipsis in English. msgid "more..." @@ -192,9 +189,9 @@ msgstr "plus..." #. TRANS: Exception thown when getting a question with a non-existing ID. #. TRANS: %s is the non-existing question ID. -#, fuzzy, php-format +#, php-format msgid "No question with ID %s" -msgstr "Il non ha un question pro iste responsa." +msgstr "Il non ha un question con le ID %s" #. TRANS: Exception thown when getting a profile with a non-existing ID. #. TRANS: %s is the non-existing profile ID. @@ -202,13 +199,13 @@ msgstr "Il non ha un question pro iste responsa." #. TRANS: %s is the provided profile ID. #, php-format msgid "No profile with ID %s" -msgstr "" +msgstr "Non existe un profilo con le ID %s" #. TRANS: %s is the number of answer revisions. -#, fuzzy, php-format +#, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "%s versiones" +msgstr[0] "%s version" msgstr[1] "%s versiones" #. TRANS: Text for a question that was answered. @@ -228,10 +225,10 @@ msgstr "respondeva a \"%s\"" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s responsas" +msgstr[0] "%s responsa" msgstr[1] "%s responsas" #. TRANS: Notification that a question cannot be answered anymore because it is closed. @@ -260,26 +257,22 @@ msgid "Answer" msgstr "Responsa" #. TRANS: Field label for a new question. -#, fuzzy msgctxt "LABEL" msgid "Title" msgstr "Titulo" #. TRANS: Field title for a new question. -#, fuzzy msgid "The title of your question." -msgstr "Titulo de tu question" +msgstr "Le titulo de tu question." #. TRANS: Field label for question details. -#, fuzzy msgctxt "LABEL" msgid "Description" msgstr "Description" #. TRANS: Field title for question details. -#, fuzzy msgid "Your question in detail." -msgstr "Tu question in detalio" +msgstr "Le detalios de tu question." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" @@ -287,7 +280,6 @@ msgid "Save" msgstr "Salveguardar" #. TRANS: Form legend for revising the answer. -#, fuzzy msgctxt "LEGEND" msgid "Question" msgstr "Question" @@ -299,7 +291,7 @@ msgstr "Clauder" #. TRANS: Title for button text for closing a question. msgid "Close the question to no one can answer it anymore." -msgstr "" +msgstr "Clauder le question de sorta que nemo pote responder plus." #. TRANS: Button text for marking an answer as "best". msgctxt "BUTTON" @@ -307,6 +299,5 @@ msgid "Best" msgstr "Optime" #. TRANS: Title for button text marking an answer as "best". -#, fuzzy msgid "Mark this answer as the best answer." -msgstr "Marcar como le melior responsa" +msgstr "Marcar iste responsa como le melior responsa." diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index 1d04cc9b7a..82a8a549fc 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -225,10 +225,10 @@ msgstr "одговори на „%s“" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s одговори" +msgstr[0] "%s одговор" msgstr[1] "%s одговори" #. TRANS: Notification that a question cannot be answered anymore because it is closed. diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index a2b04efcc3..15bc36e65d 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:56:59+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -228,10 +228,10 @@ msgstr "heeft geantwoord op \"%s\"" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s antwoorden" +msgstr[0] "%s antwoord" msgstr[1] "%s antwoorden" #. TRANS: Notification that a question cannot be answered anymore because it is closed. diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index acd1490398..79d0d374e0 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -81,10 +81,9 @@ msgid "Answer" msgstr "Kasagutan" #. TRANS: Form title for sending an answer. -#, fuzzy msgctxt "TITLE" msgid "Answer" -msgstr "Kasagutan" +msgstr "Sagot" #. TRANS: Client exception thrown trying to view a non-existing question. msgid "No such question." @@ -113,9 +112,8 @@ msgid "Invalid or missing question." msgstr "Hindi katanggap-tanggap o nawawalang katanungan." #. TRANS: Exception thrown trying to close another user's question. -#, fuzzy msgid "You did not ask this question." -msgstr "Hindi ka nagtanong ng tanong na ito." +msgstr "Hindi mo itinanong ang tanong na ito." #. TRANS: Page title after sending an answer. #. TRANS: Page title after sending in a vote for a question or answer. @@ -141,10 +139,9 @@ msgid "Question and Answers micro-app." msgstr "Mikro-aplikasyon ng Tanong at mga Sagot." #. TRANS: Application title. -#, fuzzy msgctxt "TITLE" msgid "Question" -msgstr "Katanungan" +msgstr "Tanong" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." @@ -184,7 +181,7 @@ msgstr "Ang sagot mo..." #. TRANS: Link description for link to full notice text if it is longer than #. TRANS: what will be dispplayed. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Title for link that is an ellipsis in English. msgid "more..." @@ -192,9 +189,9 @@ msgstr "marami pa..." #. TRANS: Exception thown when getting a question with a non-existing ID. #. TRANS: %s is the non-existing question ID. -#, fuzzy, php-format +#, php-format msgid "No question with ID %s" -msgstr "Walang katanungan para sa kasagutang ito." +msgstr "Walang tanong na may ID na %s." #. TRANS: Exception thown when getting a profile with a non-existing ID. #. TRANS: %s is the non-existing profile ID. @@ -202,14 +199,14 @@ msgstr "Walang katanungan para sa kasagutang ito." #. TRANS: %s is the provided profile ID. #, php-format msgid "No profile with ID %s" -msgstr "" +msgstr "Walang balangkas na may ID na %s" #. TRANS: %s is the number of answer revisions. -#, fuzzy, php-format +#, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "%s mga pagbabago" -msgstr[1] "%s mga pagbabago" +msgstr[0] "%s rebisyon" +msgstr[1] "%s mga rebisyon" #. TRANS: Text for a question that was answered. #. TRANS: %1$s is the user that answered, %2$s is the question title, @@ -228,11 +225,11 @@ msgstr "sumagot sa \"%s\"" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s mga kasagutan" -msgstr[1] "%s mga kasagutan" +msgstr[0] "%s sagot" +msgstr[1] "%s mga sagot" #. TRANS: Notification that a question cannot be answered anymore because it is closed. msgid "This question is closed." @@ -260,26 +257,22 @@ msgid "Answer" msgstr "Kasagutan" #. TRANS: Field label for a new question. -#, fuzzy msgctxt "LABEL" msgid "Title" msgstr "Pamagat" #. TRANS: Field title for a new question. -#, fuzzy msgid "The title of your question." -msgstr "Pamagat ng katanungan mo" +msgstr "Ang pamagat ng tanong mo." #. TRANS: Field label for question details. -#, fuzzy msgctxt "LABEL" msgid "Description" msgstr "Paglalarawan" #. TRANS: Field title for question details. -#, fuzzy msgid "Your question in detail." -msgstr "Nakadetalyeng katanungan mo" +msgstr "Nakadetalyeng tanong mo." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" @@ -287,10 +280,9 @@ msgid "Save" msgstr "Sagipin" #. TRANS: Form legend for revising the answer. -#, fuzzy msgctxt "LEGEND" msgid "Question" -msgstr "Katanungan" +msgstr "Tanong" #. TRANS: Button text for closing a question. msgctxt "BUTTON" @@ -299,7 +291,7 @@ msgstr "Isara" #. TRANS: Title for button text for closing a question. msgid "Close the question to no one can answer it anymore." -msgstr "" +msgstr "Isara ang tanong upang wala nang makakasagot rito." #. TRANS: Button text for marking an answer as "best". msgctxt "BUTTON" @@ -307,6 +299,5 @@ msgid "Best" msgstr "Pinakamahusay" #. TRANS: Title for button text marking an answer as "best". -#, fuzzy msgid "Mark this answer as the best answer." -msgstr "Markahan bilang pinakamahusay na kasagutan" +msgstr "Markahan ang sagot na ito bilang pinakamahusay na sagot." diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index eccf825e09..4e581420e0 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -82,7 +82,6 @@ msgid "Answer" msgstr "Відповідь" #. TRANS: Form title for sending an answer. -#, fuzzy msgctxt "TITLE" msgid "Answer" msgstr "Відповідь" @@ -114,7 +113,6 @@ msgid "Invalid or missing question." msgstr "Ðеправильне або відÑутнє запитаннÑ." #. TRANS: Exception thrown trying to close another user's question. -#, fuzzy msgid "You did not ask this question." msgstr "Ви не Ñтавили цього запитаннÑ." @@ -142,7 +140,6 @@ msgid "Question and Answers micro-app." msgstr "Додаток Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½ÑŒ Ñ– відповідей." #. TRANS: Application title. -#, fuzzy msgctxt "TITLE" msgid "Question" msgstr "ЗапитаннÑ" @@ -185,7 +182,7 @@ msgstr "Ваша відповідь..." #. TRANS: Link description for link to full notice text if it is longer than #. TRANS: what will be dispplayed. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Title for link that is an ellipsis in English. msgid "more..." @@ -193,9 +190,9 @@ msgstr "ще..." #. TRANS: Exception thown when getting a question with a non-existing ID. #. TRANS: %s is the non-existing question ID. -#, fuzzy, php-format +#, php-format msgid "No question with ID %s" -msgstr "Ð”Ð»Ñ Ñ†Ñ–Ñ”Ñ— відповіді немає відповідного запитаннÑ." +msgstr "Ðемає Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð· ідентифікатором %s" #. TRANS: Exception thown when getting a profile with a non-existing ID. #. TRANS: %s is the non-existing profile ID. @@ -203,15 +200,15 @@ msgstr "Ð”Ð»Ñ Ñ†Ñ–Ñ”Ñ— відповіді немає відповідного #. TRANS: %s is the provided profile ID. #, php-format msgid "No profile with ID %s" -msgstr "" +msgstr "Ðемає профілю з ідентифікатором %s" #. TRANS: %s is the number of answer revisions. -#, fuzzy, php-format +#, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "%s редагуваннÑ" -msgstr[1] "%s редагуваннÑ" -msgstr[2] "%s редагуваннÑ" +msgstr[0] "%s переглÑд" +msgstr[1] "%s переглÑдів" +msgstr[2] "%s переглÑд" #. TRANS: Text for a question that was answered. #. TRANS: %1$s is the user that answered, %2$s is the question title, @@ -230,11 +227,11 @@ msgstr "відповіли на «%s»" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s відповіді" -msgstr[1] "%s відповіді" +msgstr[0] "%s відповід" +msgstr[1] "%s відповідей" msgstr[2] "%s відповіді" #. TRANS: Notification that a question cannot be answered anymore because it is closed. @@ -263,26 +260,22 @@ msgid "Answer" msgstr "Відповідь" #. TRANS: Field label for a new question. -#, fuzzy msgctxt "LABEL" msgid "Title" msgstr "Заголовок" #. TRANS: Field title for a new question. -#, fuzzy msgid "The title of your question." -msgstr "Заголовок Ð´Ð»Ñ Ð²Ð°ÑˆÐ¾Ð³Ð¾ запитаннÑ" +msgstr "Заголовок Ð´Ð»Ñ Ð²Ð°ÑˆÐ¾Ð³Ð¾ запитаннÑ." #. TRANS: Field label for question details. -#, fuzzy msgctxt "LABEL" msgid "Description" msgstr "ОпиÑ" #. TRANS: Field title for question details. -#, fuzzy msgid "Your question in detail." -msgstr "Ваше Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ñ–ÑˆÐµ" +msgstr "Ваше Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð´ÐµÑ‚Ð°Ð»ÑŒÐ½Ñ–ÑˆÐµ." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" @@ -290,7 +283,6 @@ msgid "Save" msgstr "Зберегти" #. TRANS: Form legend for revising the answer. -#, fuzzy msgctxt "LEGEND" msgid "Question" msgstr "ЗапитаннÑ" @@ -302,7 +294,7 @@ msgstr "Закрити" #. TRANS: Title for button text for closing a question. msgid "Close the question to no one can answer it anymore." -msgstr "" +msgstr "Закрити питаннÑ, щоб ніхто не більше не міг на нього відповіÑти." #. TRANS: Button text for marking an answer as "best". msgctxt "BUTTON" @@ -310,6 +302,5 @@ msgid "Best" msgstr "Краще" #. TRANS: Title for button text marking an answer as "best". -#, fuzzy msgid "Mark this answer as the best answer." -msgstr "Позначити Ñк кращу відповідь" +msgstr "Позначити цю відповідь Ñк найкращу." diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 101ec19af7..b4e031aafe 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index ed717c988a..d0f0a89940 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 57f427ae2d..ddfc3c7b03 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:07+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index c18c95e2db..2ce235be7c 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -38,14 +38,13 @@ msgid "Request must be POST." msgstr "Requesta debe esser POST." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." -msgstr "Solmente le notificationes http-post es presentemente supportate." +msgstr "Solmente le notificationes HTTP POST es presentemente supportate." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -54,7 +53,6 @@ msgid "The following parameters were missing from the request body: %s." msgstr "Le sequente parametros mancava del corpore del requesta: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." @@ -67,11 +65,10 @@ msgid "Feed subscription failed: Not a valid feed." msgstr "Le subscription al syndication ha fallite: Non un syndication valide." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" -"Le subscription al syndication ha fallite - le gestor de notification non " +"Le subscription al syndication ha fallite: le gestor de notification non " "responde correctemente." #. TRANS: Success message after subscribing to one or more feeds. diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 541a569d79..d021d2b62c 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -38,14 +38,13 @@ msgid "Request must be POST." msgstr "Барањето мора да биде POST." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." -msgstr "Моментално Ñе поддржани Ñамо извеÑтувања од типот http-post." +msgstr "Моментално Ñе поддржани Ñамо извеÑтувања од типот HTTP POST." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -54,7 +53,6 @@ msgid "The following parameters were missing from the request body: %s." msgstr "Следниве параметри недоÑтаÑуваа од Ñодржината на барањето: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." @@ -67,11 +65,10 @@ msgid "Feed subscription failed: Not a valid feed." msgstr "Претплаќањето на каналот не уÑпеа: Ðе е важечки канал." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" -"Претплаќањето на каналот не уÑпеа - ракувачот Ñо извеÑтувања не одговара " +"!Претплаќањето на каналот не уÑпеа: ракувачот Ñо извеÑтувања не одговара " "правилно." #. TRANS: Success message after subscribing to one or more feeds. diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index cb767394fc..6ab5919b5f 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -38,14 +38,13 @@ msgid "Request must be POST." msgstr "Het verzoek moet POST zijn." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." -msgstr "Op dit moment worden alle mededelingen via HTTP POST ondersteund." +msgstr "Op dit moment worden alleen mededelingen via HTTP POST ondersteund." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -54,12 +53,11 @@ msgid "The following parameters were missing from the request body: %s." msgstr "De volgende parameters missen in de verzoekinhoud: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." msgstr "" -"U moet tenminste een geldige URL voor een profielfeed opgeven ( url1, url2, " +"U moet tenminste één geldige URL voor een profielfeed opgeven ( url1, url2, " "url3, ..., urlN)." #. TRANS: Form validation error displayed when not providing a valid feed URL. @@ -67,7 +65,6 @@ msgid "Feed subscription failed: Not a valid feed." msgstr "Abonneren op de feed is mislukt: geen geldige feed." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index e388e506ee..d360c1d8fa 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -38,14 +38,14 @@ msgid "Request must be POST." msgstr "Ang hiling ay dapat na POST." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." -msgstr "Tanging mga pabatid na http-post lang ang tinatangkilik sa ngayon." +msgstr "" +"Tanging mga pabatid na HTTP POST lamang ang tinatangkilik sa panahong ito." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -54,24 +54,22 @@ msgid "The following parameters were missing from the request body: %s." msgstr "Nawawala ang sumusunod na mga parametro mula sa katawan ng hiling: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." msgstr "" -"Dapat kang magbigay ng kahit na isang url ng pakain ng tanggap na talaksan " -"(url1, url2, url3 ... urlN)." +"Dapat kang magbigay ng kahit na isang katanggap-tanggap na URL ng pakain ng " +"balangkas (url1, url2, url3 ... urlN)." #. TRANS: Form validation error displayed when not providing a valid feed URL. msgid "Feed subscription failed: Not a valid feed." msgstr "Nabigo ang pagtanggap ng pakain: Hindi isang tanggap na pakain." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" -"Nabigo ang pagtanggap ng pakain - hindi tama ang pagtugon ng tagapaghawak ng " +"Nabigo ang pagpapasipi ng pakain: Hindi tama ang pagtugon ng tagapaghawak ng " "pabatid." #. TRANS: Success message after subscribing to one or more feeds. diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index e9446233cc..c8daed6919 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:08+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -39,14 +39,13 @@ msgid "Request must be POST." msgstr "Запит вимагає форми POST." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." msgstr "Ðа даний момент підтримуютьÑÑ Ð»Ð¸ÑˆÐµ ÑÐ¿Ð¾Ð²Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ„Ð¾Ñ€Ð¼Ð¸ http-post." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -55,20 +54,18 @@ msgid "The following parameters were missing from the request body: %s." msgstr "У формі запиту відÑутні наÑтупні параметри: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." msgstr "" -"Ви повинні зазначити щонайменше один дійÑний профіль Ð´Ð»Ñ URL-адреÑи веб-" -"Ñтрічки (URL-адреÑи через кому та пробіл)." +"Ви повинні зазначити щонайменше одну дійÑну URL-адреÑу веб-Ñтрічки (URL-" +"адреÑи через кому та пробіл)." #. TRANS: Form validation error displayed when not providing a valid feed URL. msgid "Feed subscription failed: Not a valid feed." msgstr "ПідпиÑатиÑÑ Ð´Ð¾ веб-Ñтрічки не вдалоÑÑ: Ñ†Ñ Ð²ÐµÐ±-Ñтрічка не Ñ” дійÑною." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index 3762a8980d..f7db35324b 100644 --- a/plugins/Realtime/locale/Realtime.pot +++ b/plugins/Realtime/locale/Realtime.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 299d36cd56..52726a4cd8 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 3603205f95..19bb4e8346 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 419a6a6847..0fef606f40 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:00+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 4017b61866..96ac0cb659 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 6972888fdf..74086f9723 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 75865d45ff..f5a333bb32 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index 8e4f5a55da..9bdbe7922b 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 169df56b6d..979af1e23d 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 7a00003eca..692da19de9 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 4a0895c378..41eb2e058b 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index ce4f66964a..a82513ebe7 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index 211cdc9cda..046ee31f38 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index d801708b8d..be87392d45 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index f9631e1448..ccee1af96f 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:17+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index b549f10115..7b82a2edbc 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:01+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 9280baf928..6a7be54d53 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,17 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RecaptchaPlugin.php:57 +#. TRANS: Field label. +#: RecaptchaPlugin.php:58 msgid "Captcha" msgstr "" #. TRANS: Error message displayed if a provided captcha response does not match. -#: RecaptchaPlugin.php:101 +#: RecaptchaPlugin.php:102 msgid "Captcha does not match!" msgstr "" #. TRANS: Plugin description. -#: RecaptchaPlugin.php:114 +#: RecaptchaPlugin.php:115 msgid "" "Uses Recaptcha service to add a " "captcha to the registration page." diff --git a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po index 6ba298fa02..eb78cd5c1d 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index 40dfc7a21c..09612c4a10 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 917a1a138b..9de1d07d4f 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Vérificateur anti-robot Captcha" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 79ea7cb936..48f75992fd 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 73011130b4..455ccb054c 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index cbc5746552..4536d056de 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index 13465b3d78..0766e531a2 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index f311878006..767ff17347 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index d09860e2ff..d7d1bb4124 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Imagem de verificação" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index d07f86ed8e..48dac7c1f3 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\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" +#. TRANS: Field label. msgid "Captcha" msgstr "Капча" diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index c21293bf22..5c0898611c 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index d681956ede..d743d11cbf 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index 0e8786bc52..0e3ed3de36 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:02+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\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" +#. TRANS: Field label. msgid "Captcha" msgstr "Captcha" diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 1ca39a6edc..cb9af17e12 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 9d0fb6441b..5bd1399669 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index dbef34c549..c48d1d767c 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 8321aeba07..8fa09aa178 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 45507a9ee1..024800879d 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index afebd33748..b2efb9868d 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 7953251353..944b98b134 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index c1ef800cd2..f29e31369b 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:03+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 261b523203..533241d49b 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 67e0ce2b43..3b943a5364 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index a1e856ec0e..fe351e1f9e 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 73aba4c6fc..8ee3af6ad6 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -77,9 +77,8 @@ msgid "Set a password" msgstr "Definir un contrasigno" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" -msgstr "Confirmar e-mail" +msgstr "Confirmar adresse de e-mail" #. TRANS: Field label. msgid "New password" @@ -90,7 +89,6 @@ msgid "6 or more characters." msgstr "6 o plus characteres." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Confirmar" @@ -100,7 +98,6 @@ msgid "Same as password above." msgstr "Identic al contrasigno hic supra." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 0a45cfdc25..a6932d52ff 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -79,7 +79,6 @@ msgid "Set a password" msgstr "Задајте лозинка" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" msgstr "Потврдете е-пошта" @@ -92,7 +91,6 @@ msgid "6 or more characters." msgstr "барем 6 знаци." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Потврди" @@ -102,7 +100,6 @@ msgid "Same as password above." msgstr "ИÑто како лозинката погоре." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index a563ea2b7a..a61095014b 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -77,7 +77,6 @@ msgid "Set a password" msgstr "Stel een wachtwoord in" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" msgstr "E-mailadres bevestigen" @@ -90,7 +89,6 @@ msgid "6 or more characters." msgstr "Zes of meer tekens." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Bevestigen" @@ -100,7 +98,6 @@ msgid "Same as password above." msgstr "Gelijk aan het wachtwoord hierboven." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 90c69ff5e0..4dd863064a 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -80,9 +80,8 @@ msgid "Set a password" msgstr "Magtakda ng isang hudyat" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" -msgstr "Tiyakin ang e-liham" +msgstr "Patotohanan ang tirahan ng e-liham" #. TRANS: Field label. msgid "New password" @@ -93,17 +92,15 @@ msgid "6 or more characters." msgstr "6 o mahigit pang mga panitik." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" -msgstr "Pagtibayin" +msgstr "Patunayan" #. TRANS: Field title for repeat password field. msgid "Same as password above." msgstr "Katulad ng hudyat na nasa itaas." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 6b8354a573..58677eb00f 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:05+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -82,7 +82,6 @@ msgid "Set a password" msgstr "Ð’Ñтановити пароль" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" msgstr "Підтвердити адреÑу електронної пошти" @@ -95,7 +94,6 @@ msgid "6 or more characters." msgstr "6 або більше знаків." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Підтвердити" @@ -105,7 +103,6 @@ msgid "Same as password above." msgstr "Такий Ñамо, Ñк Ñ– пароль вище." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 2bec0109a1..898ec8a571 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index 8501d2000d..c86e1cc893 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index 5e9465603b..1d90d05640 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 5c50258d68..9a50acb967 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index bf6541649e..b02e9ffc2a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index e94d184865..d66f7566ff 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index 7f9c60ce84..0ca44e306a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index 30cd9ed728..f31c32f45e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index 64f3dfc57c..f607c302d6 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index b93a2b0fbd..9cfe335a67 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 7efe73ce2b..e280b1ba01 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index d572f8ba6e..924c1da108 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index cf47643c9e..1643f4384b 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:06+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 23b6de1c6d..0c69617fe4 100644 --- a/plugins/SQLProfile/locale/SQLProfile.pot +++ b/plugins/SQLProfile/locale/SQLProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: SQLProfilePlugin.php:41 +#. TRANS: Plugin description. +#: SQLProfilePlugin.php:42 msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index 46814b8dbf..264033a43b 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "Debug-Werkzeug zur Überwachung von schlecht indexierten DB-Abfragen." diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index e8c9dee032..09c6141d68 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" "Outil de débogage pour surveiller les requêtes de la base de données mal " diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 7ac3c908db..76f8187bd2 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "Instrumento pro deteger le consultas mal indexate del base de datos." diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 92e0ae1c86..f730180552 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" "Ðлатка за поправање грешки што пронаоѓа лошо индекÑирани барања до базата на " diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 669dac86c4..05bea89f65 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "Debughulpmiddel om slecht geïndexeerde databasequery's te ontdekken." diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index aef1330909..3a35a23004 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "Ferramenta de depuração para vigiar consultas à BD mal indexadas." diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index a28292ee11..72a4bfaae7 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\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" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" "Отладочный инÑтрумент Ð´Ð»Ñ Ð½Ð°Ð±Ð»ÑŽÐ´ÐµÐ½Ð¸Ñ Ð¿Ð»Ð¾Ñ…Ð¾ индекÑированных запроÑов к БД." diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index 981172512e..0fa34e6a93 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" "Kasangkapang pangtanggal ng sira upang makapagtanod ng mga pagtatanong sa " diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index 8f15692273..a4df11a90f 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\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" +#. TRANS: Plugin description. msgid "Debug tool to watch for poorly indexed DB queries." msgstr "" "ІнÑтрумент правки Ð´Ð»Ñ ÑпоÑÑ‚ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð° погано індекÑованими запитами до бази " diff --git a/plugins/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index 4f39d5a3dc..80f44c52e0 100644 --- a/plugins/SQLStats/locale/SQLStats.pot +++ b/plugins/SQLStats/locale/SQLStats.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po index d726d244a0..db4631f7d6 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index 09cee708e5..1633e00a13 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index e149a65641..3c3be0149c 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:20+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index 1a29943568..aeb146505b 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index f517427806..8b544c5585 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index ade9d7c59b..d8b49d64a1 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index ceefe983c8..6339136080 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index 34cd1b975d..902e6310ee 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index d88e6bcaba..d3b3232d2a 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po new file mode 100644 index 0000000000..365e3dee1a --- /dev/null +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -0,0 +1,69 @@ +# Translation of StatusNet - Sample to Afrikaans (Afrikaans) +# Exported from translatewiki.net +# +# Author: Naudefj +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Sample\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" +"Language-Team: Afrikaans \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: af\n" +"X-Message-Group: #out-statusnet-plugin-sample\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title for sample plugin. +#. TRANS: Menu item in sample plugin. +msgid "Hello" +msgstr "Hallo" + +#. TRANS: Page title for sample plugin. %s is a user nickname. +#, php-format +msgid "Hello, %s!" +msgstr "Hallo, %s!" + +#. TRANS: Message in sample plugin. +msgid "Hello, stranger!" +msgstr "Hallo vreemdeling!" + +#. TRANS: Message in sample plugin. %s is a user nickname. +#, php-format +msgid "Hello, %s" +msgstr "Hallo, %s" + +#. TRANS: Message in sample plugin. +#. TRANS: %d is the number of times a user is greeted. +#, php-format +msgid "I have greeted you %d time." +msgid_plural "I have greeted you %d times." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: Menu item title in sample plugin. +msgid "A warm greeting" +msgstr "" + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#, php-format +msgid "Could not save new greeting count for %d." +msgstr "" + +#. TRANS: Exception thrown when the user greeting count could not be saved in the database. +#. TRANS: %d is a user ID (number). +#, php-format +msgid "Could not increment greeting count for %d." +msgstr "" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index 5f6f9c9051..28345a781c 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index c52b5d8615..5348e1c497 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index 276f467622..044fc7ec1e 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index 214a2d1faa..8ed7e7c393 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 0f496290ae..8dc52cf2b0 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index 444917a452..d4a948bff0 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index d36aa11c40..6257247bec 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index d791bcfcab..fe3003e255 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index 2f6f506456..8b042b286b 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index 1c87553c21..f60a277a76 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" "Language-Team: Deitsch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pdc\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index cfed8c0f49..ca4b8f3f67 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 4ac160bcbb..8f9604796c 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:09+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 5e22b76362..c356c2c599 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index 4bc66ea7c0..7f1311ada6 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:10+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:30+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index acdb37fb30..f7e7cf5c0d 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 7b6fb01c89..b3ec1a61c8 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -228,6 +228,3 @@ msgstr "Fehler bei der Abbestellung der Suche „%s“." #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Alle Suchabonnements abbestellt." - -#~ msgid "Searches" -#~ msgstr "Suchen" diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index 9e69a52177..b49a7ad6ac 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -223,6 +223,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Toutes les surveillances de recherche ont été désactivées." - -#~ msgid "Searches" -#~ msgstr "Recherches" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 22744a990f..ac778f592f 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -127,9 +127,8 @@ msgid "Unsubscribe" msgstr "Cancellar subscription" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "Cancellar subscription a iste recerca" +msgstr "Cancellar subscription a iste recerca." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -197,13 +196,13 @@ msgstr "Tu non tracia alcun recerca." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "\", \"" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "Tu tracia recercas de: %s" +msgstr "Tu tracia le recercas de: \"%s\"." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -215,9 +214,8 @@ msgid "Subscribe" msgstr "Subscriber" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "Subscriber a iste recerca" +msgstr "Subscriber a iste recerca." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. @@ -230,6 +228,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Tote tu subscriptiones de recerca ha essite disactivate." - -#~ msgid "Searches" -#~ msgstr "Recercas" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index c0696a60e1..6ad9df6a67 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -128,9 +128,8 @@ msgid "Unsubscribe" msgstr "Откажи претплата" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "Откажи претплата на ова пребарување" +msgstr "Откажи претплата на ова пребарување." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -195,13 +194,13 @@ msgstr "Ðе Ñледите никакви пребарувања." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "„, “" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "Следите пребарувања на: %s" +msgstr "Ги Ñледите пребарувањата на: „%s“." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -213,9 +212,8 @@ msgid "Subscribe" msgstr "Претплати Ñе" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "Претплати Ñе на пребарувањево" +msgstr "Претплати Ñе на пребарувањево." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. @@ -226,6 +224,3 @@ msgstr "Грешка при оневозможувањето на претпла #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Ги оневозможив Ñоте пребарувања на кои Ñте Ñе претплатиле." - -#~ msgid "Searches" -#~ msgstr "Пребарувања" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 3d8bae23a7..baebd180a6 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:12+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -129,9 +129,8 @@ msgid "Unsubscribe" msgstr "Uitschrijven" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "Abonnement op deze zoekopdracht opzeggen" +msgstr "Het abonnement op deze zoekopdracht opzeggen." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -196,13 +195,13 @@ msgstr "U volgt geen zoekopdrachten." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "\", \"" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "U volgt zoekopdrachten naar: %s." +msgstr "U volgt zoekopdrachten naar: \"%s\"." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -214,9 +213,8 @@ msgid "Subscribe" msgstr "Abonneren" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "Deze zoekopdracht volgen" +msgstr "Deze zoekopdracht volgen." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. @@ -229,6 +227,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Al uw abonnementen op zoekopdrachten zijn uitgeschakeld." - -#~ msgid "Searches" -#~ msgstr "Zoekopdrachten" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 3feb4603c5..6eb9007023 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -131,9 +131,8 @@ msgid "Unsubscribe" msgstr "Pahintuin na ang pagtanggap ng sipi" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "Huwag nang magpasipi mula sa paghahanap na ito" +msgstr "Huwag nang magpasipi magmula sa paghahanap na ito" #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -204,13 +203,13 @@ msgstr "Hindi ka sumusubaybay ng anumang mga paghahanap." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "\", \"" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "Sinusubaybayan mo ang mga paghahanap para sa: %s" +msgstr "Sinusubaybayan mo ang mga paghahanap para sa: \"%s\"." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -222,9 +221,8 @@ msgid "Subscribe" msgstr "Pumayag na tumanggap ng sipi" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "Magpasipi para sa paghahanap na ito" +msgstr "Magpasipi para sa paghahanap na ito." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. @@ -237,6 +235,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Hindi na pinagagana ang lahat ng mga pagpapasipi mo ng paghahanap." - -#~ msgid "Searches" -#~ msgstr "Mga paghahanap" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index 884cf61b09..a3c955634b 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -129,9 +129,8 @@ msgid "Unsubscribe" msgstr "ВідпиÑатиÑÑŒ" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "ВідмовитиÑÑ Ð²Ñ–Ð´ цього пошуку" +msgstr "ВідпиÑатиÑÑ Ð²Ñ–Ð´ цього пошуку." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -199,13 +198,13 @@ msgstr "Ðе ви відÑтежуєте жодні пошукові запит #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "«, »" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "Ви відÑлідковуєте пошуки длÑ: %s" +msgstr "Ви відÑлідковуєте пошуки длÑ: «%s»." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -217,9 +216,8 @@ msgid "Subscribe" msgstr "ПідпиÑатиÑÑŒ" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "ПідпиÑатиÑÑ Ð´Ð¾ даного пошуку" +msgstr "ПідпиÑатиÑÑ Ð´Ð¾ цього пошуку." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. @@ -230,6 +228,3 @@ msgstr "Помилка при ÑкаÑуванні пошукової підпи #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Вимкнути вÑÑ– пошукові підпиÑки." - -#~ msgid "Searches" -#~ msgstr "Пошуки" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 80c7fd447b..a538d3c6b4 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index 7e6426454b..fda733c23e 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 0bfeabd7c3..869b7cd147 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index 47175cf45a..70e4d7d428 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index d55ad72f2b..f2b883fc36 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index 52b51f7845..9913fa2a22 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:13+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index b65c0384b1..5d35501360 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 2d0a7e8fb6..4d348d96fc 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" @@ -28,7 +28,7 @@ msgstr "\"%s\"" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index 5ca89d66fb..178323b5fe 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" @@ -28,7 +28,7 @@ msgstr "„%s“" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 231144a905..ecb588c38b 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" @@ -29,7 +29,7 @@ msgstr "\"%s\"" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index b55f757703..27b7fce847 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index a07334b24d..b7ac8248bf 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" @@ -28,7 +28,7 @@ msgstr "\"%s\"" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index b0c7f10e02..94719f5c3f 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:31+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 7e4a91e8eb..9c0373b7b7 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" @@ -29,7 +29,7 @@ msgstr "«%s»" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index 0420acec16..75b201a443 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,13 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: SimpleUrlPlugin.php:56 +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +#: SimpleUrlPlugin.php:42 +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. +#: SimpleUrlPlugin.php:58 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index f5217ffe63..5ff65baf1b 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 707ccfec2b..f07344ab28 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Benutzung des %1$s-URL-Kürzungsdienstes." diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index f79a103cbf..68c2ed89de 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:14+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index e59db7fbdb..ffceef9bdf 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Käyttää %1$s URL-lyhennyspalvelua." diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index 6b00544297..76c08aa452 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index fbd9d83d37..4050e8a053 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 75a68e8489..1025594819 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "שימוש בשירות קיצור הכתובות %1$s." diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index f81a28d815..4b9517cd05 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index 9530e61f7b..bb78b66de1 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Menggunakan layanan pemendek URL %1$s." diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index 6c599ba5ec..d7827e6f5f 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "%1$sã‚’URL短縮サービスã¨ã—ã¦åˆ©ç”¨ã™ã‚‹ã€‚" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index acb907c1d3..1dbbe85d4f 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index fd131638b8..906a89bc2f 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 603df8f2cb..47587adcec 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 898b13aeab..8493c5465f 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Usa o serviço de abreviação de URLs %1$s." diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index c27cafe744..af9eea08cf 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,19 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\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" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "ИÑпользование Ñлужбы ÑÐ¾ÐºÑ€Ð°Ñ‰ÐµÐ½Ð¸Ñ URL %1$s." diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index c3127fc156..bd5dee4dce 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index 5465930338..5f7c76d3b1 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,19 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:15+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\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" +#. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 86bee063bb..bdfc9eda92 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 2f7a4b1280..add6976bbb 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:16+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index e503e66e0f..59a3439e38 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 35b86da457..f81072430b 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 850790d1a7..443c038698 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 731b194219..cf161625ea 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index e1d6eb63a3..0fb885e26c 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 09dbfed485..44cbdb2df8 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 4be2e3f971..9299ac79a4 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index ff85109e69..5a6d6bd0ce 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 3b7f55ab2e..b671280866 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index fbaf6a0ca9..86f9956e93 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:17+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index c7ac6f8a72..d9f84fee5b 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 02f21eb283..2cac85a7a1 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index 06be7d5f1b..8708bd67f6 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index 6ce3627560..23b6876aa5 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 2b735afb83..20f7c634c8 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 91c92a6658..ff234bb98f 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index 93d654d035..4ae49a2c0a 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index d5437f73f2..34ca8b444e 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 19eb1dc470..182a162213 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:18+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index d26f02759b..9b53899f0b 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index df4a8019b1..b4cc128fd9 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index 9beea1ea4b..c17e47b565 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 2bdbb4256e..79deef4a85 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 895d917171..c4afaa0595 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 09aad050a0..282aefd5c7 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index de3ac6d5ea..d9c3e9e177 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index b97b5e1f88..7bc7747828 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 7c9c145b99..a2af60ca9c 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:19+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index a323228702..6fe061c76c 100644 --- a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot +++ b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: StrictTransportSecurityPlugin.php:59 +#. TRANS: Plugin description. +#: StrictTransportSecurityPlugin.php:60 msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po index 6cd198c0a8..f363ef512f 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index 6a0b828ac0..fd9247cfa2 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 8778b5b87a..1a1696867e 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 797227ceaa..c8124ef8c8 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 51a11bb46b..00d8f8589c 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index 027cd6222e..6f999de300 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\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" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index fef6fc3967..045f6b1890 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index 94f617d307..035768fd0f 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:21+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\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" +#. TRANS: Plugin description. msgid "" "The Strict Transport Security plugin implements the Strict Transport " "Security header, improving the security of HTTPS only sites." diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index c0aa59e270..cfb921eb2e 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,61 +29,75 @@ msgstr "" msgid "Invalid profile for mirroring." msgstr "" -#: actions/basemirror.php:104 +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. +#: actions/basemirror.php:105 msgid "Cannot mirror a StatusNet group at this time." msgstr "" -#: actions/basemirror.php:118 +#. TRANS: Client error displayed when trying to use another method than POST. +#: actions/basemirror.php:120 msgid "This action only accepts POST requests." msgstr "" -#: actions/basemirror.php:126 +#. TRANS: Client error displayed when the session token does not match or is not given. +#: actions/basemirror.php:129 msgid "There was a problem with your session token. Try again, please." msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. -#: actions/basemirror.php:137 +#: actions/basemirror.php:140 msgid "Not logged in." msgstr "" -#: actions/basemirror.php:160 +#. TRANS: Page title for subscribed feed mirror. +#: actions/basemirror.php:164 msgid "Subscribed" msgstr "" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. #: actions/editmirror.php:68 msgid "Requested invalid profile to edit." msgstr "" -#: actions/editmirror.php:86 +#. TRANS: Client error displayed when providing invalid input when editing a mirror. +#: actions/editmirror.php:87 msgid "Bad form data." msgstr "" #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -#: actions/editmirror.php:95 -msgid "Requested edit of missing mirror." +#: actions/editmirror.php:96 +msgid "The mirror request failed, because no result was retrieved." msgstr "" -#: actions/addmirror.php:88 +#. TRANS: Exception thrown when a feed provider could not be recognised. +#: actions/addmirror.php:80 +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. +#: actions/addmirror.php:90 msgid "Could not subscribe to feed." msgstr "" -#. TRANS: Title. +#. TRANS: Page title. #: actions/mirrorsettings.php:42 msgid "Feed mirror settings" msgstr "" -#. TRANS: Instructions. +#. TRANS: Page instructions. #: actions/mirrorsettings.php:54 msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" msgstr "" -#: actions/mirrorsettings.php:132 +#. TRANS: Title for page with form to add a mirror feed provider on. +#: actions/mirrorsettings.php:133 msgid "Provider add" msgstr "" -#: SubMirrorPlugin.php:93 +#. TRANS: Plugin description. +#: SubMirrorPlugin.php:94 msgid "Pull feeds into your timeline!" msgstr "" @@ -98,62 +112,79 @@ msgstr "" msgid "Configure mirroring of posts from other feeds" msgstr "" -#: SubMirrorPlugin.php:186 +#. TRANS: Label in profile statistics section, followed by a count. +#: SubMirrorPlugin.php:187 msgid "Mirrored feeds" msgstr "" -#: lib/addmirrorform.php:60 +#. TRANS: Field label. +#: lib/addmirrorform.php:61 msgid "Web page or feed URL:" msgstr "" -#: lib/addmirrorform.php:65 lib/addtwittermirrorform.php:55 +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. +#: lib/addmirrorform.php:67 lib/addtwittermirrorform.php:57 msgctxt "BUTTON" msgid "Add feed" msgstr "" -#: lib/addtwittermirrorform.php:50 +#. TRANS: Field label. +#: lib/addtwittermirrorform.php:51 msgid "Twitter username:" msgstr "" -#: lib/editmirrorform.php:83 +#. TRANS: Field label (URL expectected). +#: lib/editmirrorform.php:84 msgctxt "LABEL" msgid "Remote feed:" msgstr "" -#: lib/editmirrorform.php:87 +#. TRANS: Field label. +#: lib/editmirrorform.php:89 msgctxt "LABEL" msgid "Local user" msgstr "" -#: lib/editmirrorform.php:93 +#. TRANS: Fieldset legend for feed mirror setting. +#: lib/editmirrorform.php:96 msgid "Mirroring style" msgstr "" -#: lib/editmirrorform.php:95 +#. TRANS: Feed mirror style (radio button option). +#: lib/editmirrorform.php:99 msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" -#: lib/editmirrorform.php:96 +#. TRANS: Feed mirror style (radio button option). +#: lib/editmirrorform.php:101 msgid "Repost the content under my account" msgstr "" -#: lib/editmirrorform.php:115 +#. TRANS: Button text to save feed mirror settings. +#: lib/editmirrorform.php:121 +msgctxt "BUTTON" msgid "Save" msgstr "" -#: lib/editmirrorform.php:117 +#. TRANS: Button text to stop mirroring a feed. +#: lib/editmirrorform.php:124 +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "" -#: lib/addmirrorwizard.php:76 +#. TRANS: Name for possible feed provider. +#: lib/addmirrorwizard.php:77 msgid "Twitter" msgstr "" -#: lib/addmirrorwizard.php:109 +#. TRANS: Name for possible feed provider. +#: lib/addmirrorwizard.php:111 msgid "RSS or Atom feed" msgstr "" -#: lib/addmirrorwizard.php:119 +#. TRANS: Heading for feed mirroring selection form. +#: lib/addmirrorwizard.php:122 msgid "Select a feed provider" msgstr "" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 5510b8a502..6e59ebcbbf 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -34,12 +34,15 @@ msgstr "Ungültige Feed-URL: %s." msgid "Invalid profile for mirroring." msgstr "Ungültiges Profil für das Spiegeln." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Kann im Moment keine StatusNet-Gruppe spiegeln." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Diese Aktion nimmt nur POST-Requests." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -47,27 +50,35 @@ msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." msgid "Not logged in." msgstr "Nicht angemeldet." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Abonniert" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Ungültiges Profil zum Bearbeiten angefordert." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Ungültige Formulardaten." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Bearbeitung eines fehlenden Spiegels angefordert." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Konnte den Feed nicht abonnieren." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Feed-Spiegel-Einstellungen" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -75,9 +86,11 @@ msgstr "" "Du kanst die Aktualisierungen von vielen RSS- und Atomfeeds in deine " "StatusNet-Zeitleiste integrieren!" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Provider hinzufügen" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Ziehe Feeds in deine Zeitleiste!" @@ -90,50 +103,73 @@ msgstr "Spiegeln" msgid "Configure mirroring of posts from other feeds" msgstr "Konfiguration des Spiegelns von Posts von anderen Feeds" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Gespiegelte Feeds" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "Webseiten- oder Feed-URL:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Feed hinzufügen" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Twitter-Benutzername:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Remote-Feed:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Lokaler Benutzer" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Spiegelungs-Stil" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Wiederholen: Auf den Post des ursprünglichen Benutzers beziehen (manchmal " "als „RT @blah“ dargestellt)" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Den Inhalt mit meinem Konto erneut posten" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Speichern" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Mit dem Spiegeln aufhören" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "RSS- oder Atomfeed" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Wähle einen Feedprovider aus" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Bearbeitung eines fehlenden Spiegels angefordert." diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 6cadad5684..463a67aae0 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -35,12 +35,15 @@ msgstr "Adresse URL de flux invalide : %s." msgid "Invalid profile for mirroring." msgstr "Profil invalide pour la mise en miroir." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Impossible de mettre en miroir un groupe StatusNet actuellement." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Cette action n’accepte que les requêtes de type POST." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " @@ -50,27 +53,35 @@ msgstr "" msgid "Not logged in." msgstr "Non connecté." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Abonné" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Profil invalide demandé à modifier." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Données de formulaire erronées." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Miroir inexistant demandé à modifier." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Impossible de vous abonner au flux." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Paramètres de miroir de flux" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -78,9 +89,11 @@ msgstr "" "Vous pouvez mettre en miroir dans votre agenda StatusNet les mises à jour de " "nombreux flux RSS et Atom !" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Ajout de fournisseurs" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Importez des flux d’information dans votre agenda !" @@ -93,50 +106,73 @@ msgstr "Mise en miroir" msgid "Configure mirroring of posts from other feeds" msgstr "Configurer la mise en miroir de messages provenant d’autres flux" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Flux en miroir" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "Adresse URL de la page Web ou du flux :" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Ajouter le flux" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Nom d’utilisateur Twitter :" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Flux distant :" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Utilisateur local" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Style de mise en miroir" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Répéter : référence le message de l’auteur d’origine (montré parfois comme « " "RT @blabla »)" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Reposter le contenu sous mon compte" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sauvegarder" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Arrêter le miroir" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "Flux RSS ou Atom" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Sélectionner un fournisseur de flux" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Miroir inexistant demandé à modifier." diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 011ee59198..c95f87f1f3 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -32,12 +32,15 @@ msgstr "URL de syndication invalide: %s." msgid "Invalid profile for mirroring." msgstr "Profilo invalide pro republication." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Al presente il es impossibile republicar un gruppo StatusNet." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Iste action accepta solmente le requestas de typo POST." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." @@ -45,27 +48,35 @@ msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." msgid "Not logged in." msgstr "Tu non ha aperite un session." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Subscribite" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Requestava un profilo invalide a modificar." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Mal datos de formulario." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Requestava le modification de un speculo mancante." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Non poteva subscriber al syndication." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Configuration de speculo de syndication" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -73,9 +84,11 @@ msgstr "" "Tu pote republicar actualisationes de multe syndicationes RSS e Atom in tu " "chronologia de StatusNet!" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Addition de fornitor" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Importar syndicationes in tu chronologia!" @@ -88,50 +101,73 @@ msgstr "Republication" msgid "Configure mirroring of posts from other feeds" msgstr "Configurar le republication de messages de altere syndicationes" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Speculos de syndicationes" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "URL de pagina web o syndication:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Adder syndication" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Nomine de usator de Twitter:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Syndication remote:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Usator local" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Stilo de republication" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Repeter: referer al message del usator original (monstrate a vices como 'RT " "@pseudonymo')" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Republicar le contento sub mi conto" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Cessar le republication" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "Syndication RSS o Atom" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Selige un fornitor de syndicationes" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Requestava le modification de un speculo mancante." diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 4678e6338f..4a3cdd2cd3 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -32,12 +32,15 @@ msgstr "Ðеважечка URL-адреÑа за каналот: %s." msgid "Invalid profile for mirroring." msgstr "Ðеважечки профил за отÑликување." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Моментално не можам да отÑликам група од StatusNet." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Оваа поÑтапка прифаќа Ñамо POST-барања." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем Ñо жетонот на Вашата ÑеÑија. Обидете Ñе подоцна." @@ -45,27 +48,35 @@ msgstr "Се појави проблем Ñо жетонот на Вашата msgid "Not logged in." msgstr "Ðе Ñте најавени." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Претплатено" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Побаран е неважечки профил за уредување." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "ÐеиÑправни податоци за образецот." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Побаравте уредување на отÑликување што недоÑтаÑува." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Ðе можев да Ве претплатам на каналот." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Ðагодувања на каналÑкото отÑликување" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -73,9 +84,11 @@ msgstr "" "Можете да отÑликувате поднови од многу RSS- и Atom-канали во Вашата " "хронологија на StatusNet!" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "ÐдреÑа на уÑлужникот" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Повлекувајте каналÑки емитувања во Вашата хронологија!" @@ -88,50 +101,73 @@ msgstr "ОтÑликување" msgid "Configure mirroring of posts from other feeds" msgstr "Ðагодување на отÑликувањето на објавите од други канали" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Огледални канали" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "Мреж. Ñтраница или URL на каналот:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Додај канал" +#. TRANS: Field label. msgid "Twitter username:" msgstr "КориÑничко име на Twitter:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "ДалечинÑки канал:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Локален кориÑник" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Стил на отÑликување" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Повторување: наведете ја објавата на изворниот кориÑник (понекогаш Ñе " "прикажува како „RT @blah“)" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Објави ја Ñодржината под мојата Ñметка" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "ПреÑтани Ñо отÑликување" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "RSS или Atom канал" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Одберете емитувач" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Побаравте уредување на отÑликување што недоÑтаÑува." diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 6f47659f01..32f1378f3d 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -32,12 +32,15 @@ msgstr "Ongeldige URL voor feed: %s." msgid "Invalid profile for mirroring." msgstr "Ongeldig profiel om te spiegelen." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Het is niet mogelijk om een StatusNet-groep te spiegelen." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Deze handeling accepteert alleen POST-verzoeken." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " @@ -47,27 +50,35 @@ msgstr "" msgid "Not logged in." msgstr "Niet aangemeld." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Geabonneerd" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Er is een ongeldig profiel opgevraagd om te bewerken." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Onjuiste formuliergegevens." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Er is een missende spiegel opgevraagd om te bewerken." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Het abonneren op de feed is mislukt." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Instellingen voor spiegelfeed" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -75,9 +86,11 @@ msgstr "" "U kunt statusupdates vanuit veel RSS- en Atomfeeds spiegelen in uit " "StatusNet-tijdlijn." +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Provider toevoegen" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Neem feeds op in uw tijdlijn!" @@ -90,50 +103,73 @@ msgstr "Spiegelen" msgid "Configure mirroring of posts from other feeds" msgstr "Spiegelen instellen voor berichten van andere feeds" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Gespiegelde feeds" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "URL van webpagina of feed:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Feed toevoegen" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Twitter-gebruikersnaam:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Bronfeed:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Lokale gebruiker" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Spiegelstijl" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Herhalen: refereer aan het bericht van de originele gebruiker (wordt soms " "weergegeven als \"RT @blah ...\")" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "De inhoud herhalen alsof die van mij komt" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Spiegelen beëindigen" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "RSS- of Atom-feed" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Selecteer een feedprovider" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Er is een missende spiegel opgevraagd om te bewerken." diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 944fbdf6bc..4316d27f57 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -32,12 +32,15 @@ msgstr "Hindi tanggap na URL ng pasubo: %s." msgid "Invalid profile for mirroring." msgstr "Hindi tanggap na balangkas para sa pagsasalamin." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Hindi maisalamin sa ngayon ang isang pangkat ng StatusNet." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Ang galaw na ito ay tumatanggap lamang ng mga kahilingan ng PAGPASKIL." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "May isang suliranin sa iyong token ng sesyon. Pakisubukan uli." @@ -45,27 +48,35 @@ msgstr "May isang suliranin sa iyong token ng sesyon. Pakisubukan uli." msgid "Not logged in." msgstr "Hindi nakalagda." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "Tumanggap ng sipi" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Hiniling na pamamatnugutang hindi tanggap na balangkas." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Datong may masamang anyo." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Hiniling na pagpatnugot ng nawawalang salamin." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Hindi magawang makatanggap ng pakain." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "Mga katakdaan ng salamin ng pakain" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -73,9 +84,11 @@ msgstr "" "Maisasalamin mo ang mga pagsasapanahon mula sa maraming mga pakain ng RSS at " "Atom sa iyong guhit ng panahon ng StatusNet!" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Dagdag ng tagapagbigay" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "Hilahin ang mga pakain papasok sa iyong guhit ng panahon!" @@ -88,50 +101,73 @@ msgstr "Sinasalamin" msgid "Configure mirroring of posts from other feeds" msgstr "Iayos ang pagsasalamin ng mga pagpapaskil mula sa ibang mga pakain" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Naisalaming mga pasubo" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "URL ng pahina sa web o pakain:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Idagdag ang pakain" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Pangalan ng tagagamit sa Twitter:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Pakaing malayo:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Katutubong tagagamit" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Estilo ng pagsasalamin" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Ulitin: sangguniin ang orihinal na pagpapaskil ng tagagamit (minsang " "ipinapakita bilang 'RT @blah')" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Muling ipaskil ang nilalaman sa ilalim ng aking akawnt" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Ihinto ang pagsasalamin" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "RSS o pasubong Atom" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Pumili ng isang tagapagbigay ng pasubo" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Hiniling na pagpatnugot ng nawawalang salamin." diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 60c89292b6..7a3f5fe13e 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:24+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -33,12 +33,15 @@ msgstr "Помилкова URL-адреÑа Ñтрічки: %s." msgid "Invalid profile for mirroring." msgstr "Помилковий профіль Ð´Ð»Ñ Ð²Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ." +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. msgid "Cannot mirror a StatusNet group at this time." msgstr "Ðа даний момент не можу віддзеркалювати Ñпільноту на Ñайті StatusNet." +#. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." msgstr "Ð¦Ñ Ð´Ñ–Ñ Ð¿Ñ€Ð¸Ð¹Ð¼Ð°Ñ” запити лише за формою POST." +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном ÑеÑÑ–Ñ—. Спробуйте знов, будь лаÑка." @@ -46,27 +49,35 @@ msgstr "Виникли певні проблеми з токеном ÑеÑÑ–Ñ—. msgid "Not logged in." msgstr "Ви не увійшли до ÑиÑтеми." +#. TRANS: Page title for subscribed feed mirror. msgid "Subscribed" msgstr "ПідпиÑані" +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. msgid "Requested invalid profile to edit." msgstr "Було запитано невірний профіль Ð´Ð»Ñ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ." +#. TRANS: Client error displayed when providing invalid input when editing a mirror. msgid "Bad form data." msgstr "Ðевірні дані форми." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. -msgid "Requested edit of missing mirror." -msgstr "Запитано Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð½Ð¸ÐºÐ»Ð¾Ð³Ð¾ дзеркала." +msgid "The mirror request failed, because no result was retrieved." +msgstr "" +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." msgstr "Ðе можу підпиÑатиÑÑ Ð´Ð¾ веб-Ñтрічки." -#. TRANS: Title. +#. TRANS: Page title. msgid "Feed mirror settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð·ÐµÑ€ÐºÐ°Ð»Ð° веб-Ñтрічки" -#. TRANS: Instructions. +#. TRANS: Page instructions. msgid "" "You can mirror updates from many RSS and Atom feeds into your StatusNet " "timeline!" @@ -74,9 +85,11 @@ msgstr "" "Ви маєте можливіÑть віддзеркалювати Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð±Ð°Ð³Ð°Ñ‚ÑŒÐ¾Ñ… веб-Ñтрічок формату " "RSS або Atom одразу до Ñтрічки Ñвоїх допиÑів на Ñайті StatusNet!" +#. TRANS: Title for page with form to add a mirror feed provider on. msgid "Provider add" msgstr "Додати провайдера" +#. TRANS: Plugin description. msgid "Pull feeds into your timeline!" msgstr "СтÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÐµÐ±-каналів до вашої Ñтрічки повідомлень!" @@ -89,50 +102,73 @@ msgstr "Дзеркала" msgid "Configure mirroring of posts from other feeds" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð²Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ Ð´Ð¾Ð¿Ð¸Ñів з інших веб-Ñтрічок" +#. TRANS: Label in profile statistics section, followed by a count. msgid "Mirrored feeds" msgstr "Дзеркала" +#. TRANS: Field label. msgid "Web page or feed URL:" msgstr "Веб-Ñторінка або ж URL-адреÑа Ñтрічки:" +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. msgctxt "BUTTON" msgid "Add feed" msgstr "Додати веб-Ñтрічку" +#. TRANS: Field label. msgid "Twitter username:" msgstr "Ð†Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Twitter:" +#. TRANS: Field label (URL expectected). msgctxt "LABEL" msgid "Remote feed:" msgstr "Віддалена веб-Ñтрічка:" +#. TRANS: Field label. msgctxt "LABEL" msgid "Local user" msgstr "Тутешній кориÑтувач" +#. TRANS: Fieldset legend for feed mirror setting. msgid "Mirroring style" msgstr "Форма віддзеркаленнÑ" +#. TRANS: Feed mirror style (radio button option). +#, fuzzy msgid "" -"Repeat: reference the original user's post (sometimes shows as 'RT @blah')" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "ПовтореннÑ: поÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð´Ð¾ оригінального допиÑу кориÑтувача (щоÑÑŒ на зразок «RT " "@pupkin»)" +#. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "ÐŸÐ¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ñту під моїм акаунтом" +#. TRANS: Button text to save feed mirror settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" +#. TRANS: Button text to stop mirroring a feed. +#, fuzzy +msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Зупинити віддзеркаленнÑ" +#. TRANS: Name for possible feed provider. msgid "Twitter" msgstr "Twitter" +#. TRANS: Name for possible feed provider. msgid "RSS or Atom feed" msgstr "Стрічка у форматі RSS або Atom" +#. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Виберіть канал поÑтачальника" + +#~ msgid "Requested edit of missing mirror." +#~ msgstr "Запитано Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð½Ð¸ÐºÐ»Ð¾Ð³Ð¾ дзеркала." diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 9a4a90d116..213e4dbbb0 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po index 179fe8d92b..c8bf47bdcf 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 409336f51c..cc566c5436 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 70e12dc9cd..7874a66bc1 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index f344b2eed8..d45984871b 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index a7a54567cc..f415452838 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 2b63e55735..a0fd958493 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index ad80ac34df..23ebd391f2 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 57b866913e..955aee596b 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 62575c18b8..611a107f5b 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:25+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index aafda93872..9ecfa47796 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index bf4bbb6dba..36995d906d 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index 247e932e60..163aa55f8c 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 4fb2693098..2ee0388fb0 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 20310f4f55..ea0c41b545 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 4c08e46c11..4e68d40663 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index b54b4518a5..fa38c18355 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index a3298cdbf7..cf9d645bac 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 17f5b4442d..54a97b5398 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index c80651ad43..c929778b97 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index cddd35ea96..80e908f885 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 815616508b..a250829087 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index 04fc5f31a0..fb0c39741a 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 3fce5f98ac..939cf341d7 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index cd361509ab..c33d392e2d 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 020bd7afdb..762327eb1b 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:26+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 24537a46ce..f29166b84a 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,44 +16,59 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: tagunsubform.php:96 tagunsubform.php:107 +#. TRANS: Form legend. +#: tagunsubform.php:90 msgid "Unsubscribe from this tag" msgstr "" -#: tagunsubform.php:107 +#. TRANS: Submit button text to unsubscribe from a tag. +#: tagunsubform.php:101 msgctxt "BUTTON" msgid "Unsubscribe" msgstr "" +#. TRANS: Submit button title to unsubscribe from a tag. +#: tagunsubform.php:103 +msgid "Unsubscribe from this tag." +msgstr "" + #. TRANS: Plugin description. #: TagSubPlugin.php:129 msgid "Plugin to allow following all messages with a given tag." msgstr "" #. TRANS: SubMirror plugin menu item on user settings page. -#: TagSubPlugin.php:203 +#: TagSubPlugin.php:202 msgctxt "MENU" msgid "Tags" msgstr "" #. TRANS: SubMirror plugin tooltip for user settings menu item. -#: TagSubPlugin.php:205 +#: TagSubPlugin.php:204 msgid "Configure tag subscriptions" msgstr "" +#. TRANS: Menu item text for tags submenu. #: TagSubPlugin.php:221 msgid "Tags" msgstr "" -#: tagsubform.php:116 tagsubform.php:140 +#. TRANS: Form legend. +#: tagsubform.php:108 msgid "Subscribe to this tag" msgstr "" -#: tagsubform.php:140 +#. TRANS: Submit button text to subscribe to a tag. +#: tagsubform.php:131 msgctxt "BUTTON" msgid "Subscribe" msgstr "" +#. TRANS: Submit button title to subscribe to a tag. +#: tagsubform.php:133 +msgid "Subscribe to this tag." +msgstr "" + #. TRANS: Page title when tag unsubscription succeeded. #: tagunsubaction.php:76 msgid "Unsubscribed" @@ -131,10 +146,12 @@ msgstr "" #. TRANS: as an anonymous user. %s is the user nickname. #: tagsubsaction.php:124 tagsubsaction.php:130 #, php-format -msgid "%s is not listening to any tags." +msgid "%s is not following any tags." msgstr "" -#: tagsubsaction.php:168 +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#: tagsubsaction.php:170 #, php-format -msgid "#%s since %s" +msgid "#%2$s since %3$s" msgstr "" diff --git a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index aef7357a8e..0f3d3063d2 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Cancel·la la subscripció d'aquesta etiqueta" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancel·la la subscripció" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Cancel·la la subscripció d'aquesta etiqueta" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -43,16 +50,24 @@ msgstr "Etiquetes" msgid "Configure tag subscriptions" msgstr "Configura les subscripcions d'etiquetes" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Etiquetes" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Subscriu a aquesta etiqueta" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriu" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Subscriu a aquesta etiqueta" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Dessubscrit" @@ -118,9 +133,11 @@ msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format -msgid "%s is not listening to any tags." +msgid "%s is not following any tags." msgstr "" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. #, php-format -msgid "#%s since %s" +msgid "#%2$s since %3$s" msgstr "" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 30f554a213..5e3c3e44e6 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Dieses Tag abbestellen" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abbestellen" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Dieses Tag abbestellen" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -42,16 +49,24 @@ msgstr "Tags" msgid "Configure tag subscriptions" msgstr "Tagabonnements konfigurieren" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Tags" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Dieses Tag abonnieren" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonnieren" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Dieses Tag abonnieren" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Abbestellt" @@ -126,10 +141,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s verfolgt keine Tags." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s seit %s" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 91e72b5729..9c7e03d368 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Cancellar subscription a iste etiquetta" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancellar subscription" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Cancellar subscription a iste etiquetta" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -43,16 +50,24 @@ msgstr "Etiquettas" msgid "Configure tag subscriptions" msgstr "Configurar subscriptiones a etiquettas" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Etiquettas" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Subscriber a iste etiquetta" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Subscriber a iste etiquetta" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Subscription cancellate" @@ -125,10 +140,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s non seque alcun etiquetta." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s depost %s" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 4d071ba276..38ab1defdb 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Отпиши Ñе од ознакава" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Откажи претплата" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Отпиши Ñе од ознакава" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "Приклучок што овозможува да ги Ñледите Ñите пораки Ñо извеÑна ознака." @@ -41,16 +48,24 @@ msgstr "Ознаки" msgid "Configure tag subscriptions" msgstr "Ðагоди претплата на ознаки" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Ознаки" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Претплати Ñе на ознакава" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати Ñе" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Претплати Ñе на ознакава" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Претплатено" @@ -123,10 +138,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s не Ñлуша никакви ознаки." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s од %s" diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po index 64c962fc27..d3ff313f95 100644 --- a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -9,25 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Berhenti melanggan" +#. TRANS: Submit button title to unsubscribe from a tag. +msgid "Unsubscribe from this tag." +msgstr "" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -41,17 +47,24 @@ msgstr "Tag" msgid "Configure tag subscriptions" msgstr "" +#. TRANS: Menu item text for tags submenu. #, fuzzy msgid "Tags" msgstr "Tag" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "" +#. TRANS: Submit button title to subscribe to a tag. +msgid "Subscribe to this tag." +msgstr "" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Langganan dihentikan." @@ -116,10 +129,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s tidak mendengari mana-mana tag pun." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s sejak %s" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index 7954d2d4b8..ca3ccc6809 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:28+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Abonnement op dit label beëindigen" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Uitschrijven" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Abonnement op dit label beëindigen" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -43,16 +50,24 @@ msgstr "Labels" msgid "Configure tag subscriptions" msgstr "Labelabonnementen instellen" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Labels" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Op dit label abonneren" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Op dit label abonneren" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" @@ -127,10 +142,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s heeft geen labelabonnementen." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s sinds %s" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 35b5fa58ab..5cd32df27b 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,26 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Serbian Cyrillic ekavian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Одјави ме Ñ Ð¾Ð²Ðµ ознаке" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Одјави ме" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Одјави ме Ñ Ð¾Ð²Ðµ ознаке" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "Прикључак за праћење Ñвих порука Ñ Ð´Ð°Ñ‚Ð¾Ð¼ ознаком." @@ -42,16 +49,24 @@ msgstr "Ознаке" msgid "Configure tag subscriptions" msgstr "ПодеÑи пријаве за ознаку" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Ознаке" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Пријави ме на ову ознаку" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Пријави ме" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Пријави ме на ову ознаку" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Одјави ме" @@ -125,10 +140,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s не Ñлуша ниједну ознаку." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s од %s" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index c80ed49ac2..d178949473 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "à°ˆ à°Ÿà±à°¯à°¾à°—à±à°•à°¿ చందావిరమించండి" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "చందావిరమించà±" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "à°ˆ à°Ÿà±à°¯à°¾à°—à±à°•à°¿ చందావిరమించండి" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -41,16 +48,24 @@ msgstr "à°Ÿà±à°¯à°¾à°—à±à°²à±" msgid "Configure tag subscriptions" msgstr "" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "à°Ÿà±à°¯à°¾à°—à±à°²à±" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "à°ˆ ఈటà±à°¯à°¾à°—à±à°•à°¿ చందా చేరండి" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "చందాచేరà±" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "à°ˆ ఈటà±à°¯à°¾à°—à±à°•à°¿ చందా చేరండి" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "చందావిరమించారà±" @@ -116,9 +131,11 @@ msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. #, php-format -msgid "%s is not listening to any tags." +msgid "%s is not following any tags." msgstr "" -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s %s à°¨à±à°‚à°¡à°¿" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 55a447cc4d..8a3fac65e4 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,25 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "Huwag nang magpasipi mula sa tatak na ito" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Pahintuin na ang pagtanggap ng sipi" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "Huwag nang magpasipi mula sa tatak na ito" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "" @@ -43,16 +50,24 @@ msgstr "Mga tatak" msgid "Configure tag subscriptions" msgstr "Isaayos ang mga pagpapasipi ng tatak" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Mga tatak" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "Magpasipi para sa tatak na ito" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "Pumayag na tumanggap ng sipi" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "Magpasipi para sa tatak na ito" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" @@ -127,10 +142,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "Si %s ay hindi nakikinig sa anumang mga tatak." -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s magmula noong %s" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index a0a6338617..9df268467a 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,26 +9,33 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\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" +#. TRANS: Form legend. msgid "Unsubscribe from this tag" msgstr "ВідпиÑатиÑÑ Ð²Ñ–Ð´ цього теґу" +#. TRANS: Submit button text to unsubscribe from a tag. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "ВідпиÑатиÑÑŒ" +#. TRANS: Submit button title to unsubscribe from a tag. +#, fuzzy +msgid "Unsubscribe from this tag." +msgstr "ВідпиÑатиÑÑ Ð²Ñ–Ð´ цього теґу" + #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." msgstr "Додаток, Ñкий дозволÑÑ” відÑлідковувати допиÑи позначені певним теґом" @@ -42,16 +49,24 @@ msgstr "Теґи" msgid "Configure tag subscriptions" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ–Ð´Ð¿Ð¸Ñок на теґи" +#. TRANS: Menu item text for tags submenu. msgid "Tags" msgstr "Теґи" +#. TRANS: Form legend. msgid "Subscribe to this tag" msgstr "ПідпиÑатиÑÑ Ð½Ð° цей теґ" +#. TRANS: Submit button text to subscribe to a tag. msgctxt "BUTTON" msgid "Subscribe" msgstr "ПідпиÑатиÑÑŒ" +#. TRANS: Submit button title to subscribe to a tag. +#, fuzzy +msgid "Subscribe to this tag." +msgstr "ПідпиÑатиÑÑ Ð½Ð° цей теґ" + #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" msgstr "ВідпиÑано" @@ -122,10 +137,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, php-format -msgid "%s is not listening to any tags." +#, fuzzy, php-format +msgid "%s is not following any tags." msgstr "%s не підпиÑаний до жодних тегів" -#, php-format -msgid "#%s since %s" +#. TRANS: %1$s is a URL to a tag, %2$s is a tag, +#. TRANS: %3$s a date string. +#, fuzzy, php-format +msgid "#%2$s since %3$s" msgstr "#%s протÑгом %s" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index a202e85ca7..90fc63d57e 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,13 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: TightUrlPlugin.php:66 +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +#: TightUrlPlugin.php:42 +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. +#: TightUrlPlugin.php:68 #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 7afdcebc5e..dd695c733a 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Benutzung des %1$s-URL-Kürzungsdienstes." diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 69a9967796..5a1f515e13 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 33f9492bd8..9972decf98 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index cd5f788603..365f313c69 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index 89272a4596..04bb190816 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:29+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "שימוש בשירות קיצור הכתובות %1$s." diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index b57bbb906e..bfce605cba 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 6f21cfcbd6..ff02f353bd 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Menggunakan layanan pemendek URL %1$s." diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 89dd2fedc4..0725ac92ff 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "%1$sã‚’URL短縮サービスã¨ã—ã¦åˆ©ç”¨ã™ã‚‹ã€‚" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 2208bb28fd..d7533e123c 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index 445e3fd745..995e731d9d 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Menggunakan khidmat pemendekan URL %1$s." diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index 1695387453..8f2e7d3c97 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Bruker URL-forkortertjenesten %1$s." diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 10294e9faa..43563cfcc1 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index 8d17bedeb5..b37e722dd3 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "Usa o serviço de abreviação de URLs %1$s." diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index de1b7ae1fe..262436ca44 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,19 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index ad01ba75f8..2bd2146c64 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,19 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\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" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "ИÑпользование Ñлужбы ÑÐ¾ÐºÑ€Ð°Ñ‰ÐµÐ½Ð¸Ñ URL %1$s." diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 0a7516272f..e439e060f3 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,18 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index 20c3551db6..1cd8bad5bb 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,19 +9,24 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:30+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\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" +#. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. +msgid "You must specify a serviceUrl." +msgstr "" + +#. TRANS: Plugin description. %s is the shortener name. #, php-format msgid "Uses %1$s URL-shortener service." msgstr "" diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index d8ad23e75b..31e4f8a45c 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#. TRANS: Plugin description. #: TinyMCEPlugin.php:87 msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index 18bb03a32d..a5c9193d76 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Fes servir la biblioteca TinyMCE per permetre l'edició de text ric en el " diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index e71482eeb2..b0d12fcc93 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Benutze die TinyMCE-Bibliothek um Rich-Text-Bearbeitung im Browser zu " diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index f8dc3638a5..4b1613e1c8 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Uzas la bibliotekon TinyMCE por ebligi redakton de riĉigita teksto en la " diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 4b62dd9019..e9a0b5ed24 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utiliza la biblioteca TinyMCE para permitir la edición de texto enriquecido " diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 5970fd0637..a023924d29 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utiliser la bibliothèque TinyMCE pour permettre la modification de texte " diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 8e8831bc4c..3b7ac92a84 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "שימוש בספרייה TinyMCE כדי ל×פשר עריכת טקסט עשיר ב×מצעות הדפדפן." diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index 8d11dca377..9f8e2669d0 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Usar le bibliotheca TinyMCE pro permitter le modification de texto " diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index 774168727e..cb364a6c24 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Gunakan pustaka TinyMCE untuk memungkinkan penyuntingan teks kaya pada " diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index 65688d8a31..171fda2893 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "КориÑти ја библиотеката TinyMCE за уредување Ñо збогатен текÑÑ‚ во " diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index a51cb75b6e..a60befb48e 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Gunakan perpustakaan TinyMCE untuk membolehkan penyuntingan teks beraneka " diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 6187424cc5..949afae4b6 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Bruk TinyMCE-biblioteket for Ã¥ tillate rik tekstredigering i nettleseren." diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 32f3639f6e..c183ba1c36 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "TinyMCE gebruiken om WYSIWYG-bewerken in de browser mogelijk te maken." diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 257b49ab87..1dc1167242 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "Use biblioteca TinyMCE para permitir a edição em rich text no browser." diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 888b4baff3..83404ba5ff 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Utilizar a biblioteca TinyMCE para permitir edição em rich text no navegador." diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index ebc0b9423f..8fe143f5d4 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:31+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\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" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "ИÑпользование библиотеки TinyMCE, Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑта в браузере." diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index d2b7f6ac94..24d0b1f913 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:32+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "Gamitin ang aklatan ng TinyMCE upang pahintulutan ang pamamatnugot ng " diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 40b92cf107..5f4afb6a9b 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:32+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\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" +#. TRANS: Plugin description. msgid "Use TinyMCE library to allow rich text editing in the browser." msgstr "" "ВикориÑÑ‚Ð°Ð½Ð½Ñ Ð±Ñ–Ð±Ð»Ñ–Ð¾Ñ‚ÐµÐºÐ¸ TinyMCE Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñтого Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту у вікні " diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index 4def3ab478..c9b19c63bb 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,349 +16,474 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: twittersettings.php:57 +#. TRANS: Title for page with Twitter integration settings. +#: twittersettings.php:58 msgid "Twitter settings" msgstr "" -#: twittersettings.php:68 +#: twittersettings.php:69 msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." msgstr "" -#: twittersettings.php:115 +#. TRANS: Fieldset legend. +#: twittersettings.php:118 msgid "Twitter account" msgstr "" -#: twittersettings.php:120 +#. TRANS: Form note when a Twitter account has been connected. +#: twittersettings.php:124 msgid "Connected Twitter account" msgstr "" -#: twittersettings.php:125 +#. TRANS: Fieldset legend. +#: twittersettings.php:130 msgid "Disconnect my account from Twitter" msgstr "" -#: twittersettings.php:131 -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#: twittersettings.php:136 +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -#: twittersettings.php:135 -msgid "set a password" -msgstr "" - -#: twittersettings.php:137 -msgid " first." -msgstr "" - -#. TRANS: %1$s is the current website name. -#: twittersettings.php:141 +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. +#: twittersettings.php:146 #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" -#: twittersettings.php:149 +#. TRANS: Button text for disconnecting a Twitter account. +#: twittersettings.php:154 +msgctxt "BUTTON" msgid "Disconnect" msgstr "" -#: twittersettings.php:156 +#. TRANS: Fieldset legend. +#: twittersettings.php:162 msgid "Preferences" msgstr "" -#: twittersettings.php:160 +#. TRANS: Checkbox label. +#: twittersettings.php:167 msgid "Automatically send my notices to Twitter." msgstr "" -#: twittersettings.php:167 +#. TRANS: Checkbox label. +#: twittersettings.php:175 msgid "Send local \"@\" replies to Twitter." msgstr "" -#: twittersettings.php:174 +#. TRANS: Checkbox label. +#: twittersettings.php:183 msgid "Subscribe to my Twitter friends here." msgstr "" -#: twittersettings.php:183 +#. TRANS: Checkbox label. +#: twittersettings.php:193 msgid "Import my friends timeline." msgstr "" -#: twittersettings.php:199 twitteradminpanel.php:293 +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#: twittersettings.php:210 twitteradminpanel.php:311 +msgctxt "BUTTON" msgid "Save" msgstr "" -#: twittersettings.php:201 +#. TRANS: Button text for adding Twitter integration. +#: twittersettings.php:213 +msgctxt "BUTTON" msgid "Add" msgstr "" -#: twittersettings.php:225 twitterauthorization.php:120 +#. TRANS: Client error displayed when the session token does not match or is not given. +#: twittersettings.php:238 twitterauthorization.php:121 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: twittersettings.php:235 +#. TRANS: Client error displayed when the submitted form contains unexpected data. +#: twittersettings.php:249 msgid "Unexpected form submission." msgstr "" -#: twittersettings.php:250 +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. +#: twittersettings.php:265 msgid "No Twitter connection to remove." msgstr "" -#: twittersettings.php:258 -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#: twittersettings.php:274 +msgid "Could not remove Twitter user." msgstr "" -#: twittersettings.php:262 +#. TRANS: Success message displayed after disconnecting a Twitter account. +#: twittersettings.php:279 msgid "Twitter account disconnected." msgstr "" -#: twittersettings.php:282 twittersettings.php:293 -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#: twittersettings.php:301 twittersettings.php:314 +msgid "Could not save Twitter preferences." msgstr "" -#: twittersettings.php:301 +#. TRANS: Success message after saving Twitter integration preferences. +#: twittersettings.php:323 msgid "Twitter preferences saved." msgstr "" -#: twitterauthorization.php:126 +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. +#: twitterauthorization.php:128 msgid "You cannot register if you do not agree to the license." msgstr "" -#: twitterauthorization.php:135 +#. TRANS: Form validation error displayed when an unhandled error occurs. +#: twitterauthorization.php:138 msgid "Something weird happened." msgstr "" -#: twitterauthorization.php:181 +#. TRANS: Server error displayed when linking to a Twitter account fails. +#: twitterauthorization.php:183 twitterauthorization.php:233 +#: twitterauthorization.php:305 msgid "Could not link your Twitter account." msgstr "" -#: twitterauthorization.php:201 -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#: twitterauthorization.php:204 +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" -#: twitterauthorization.php:229 twitterauthorization.php:300 -msgid "Couldn't link your Twitter account." -msgstr "" - -#: twitterauthorization.php:312 +#. TRANS: Page instruction. %s is the StatusNet sitename. +#: twitterauthorization.php:318 #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" -#: twitterauthorization.php:318 +#. TRANS: Page title. +#: twitterauthorization.php:325 msgid "Twitter Account Setup" msgstr "" -#: twitterauthorization.php:351 +#. TRANS: Fieldset legend. +#: twitterauthorization.php:359 msgid "Connection options" msgstr "" -#: twitterauthorization.php:360 +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. +#: twitterauthorization.php:370 #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" -#: twitterauthorization.php:381 +#. TRANS: Fieldset legend. +#: twitterauthorization.php:392 msgid "Create new account" msgstr "" -#: twitterauthorization.php:383 +#. TRANS: Sub form introduction text. +#: twitterauthorization.php:395 msgid "Create a new user with this nickname." msgstr "" -#: twitterauthorization.php:390 +#. TRANS: Field label. +#: twitterauthorization.php:403 msgid "New nickname" msgstr "" -#: twitterauthorization.php:392 +#. TRANS: Field title for nickname field. +#: twitterauthorization.php:406 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" -#: twitterauthorization.php:395 +#. TRANS: Field label. +#: twitterauthorization.php:410 msgctxt "LABEL" msgid "Email" msgstr "" -#: twitterauthorization.php:396 +#. TRANS: Field title for e-mail address field. +#: twitterauthorization.php:412 msgid "Used only for updates, announcements, and password recovery" msgstr "" -#: twitterauthorization.php:404 +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#: twitterauthorization.php:421 +msgctxt "BUTTON" msgid "Create" msgstr "" -#: twitterauthorization.php:409 +#. TRANS: Fieldset legend. +#: twitterauthorization.php:427 msgid "Connect existing account" msgstr "" -#: twitterauthorization.php:411 +#. TRANS: Sub form introduction text. +#: twitterauthorization.php:430 msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" -#: twitterauthorization.php:414 +#. TRANS: Field label. +#: twitterauthorization.php:434 msgid "Existing nickname" msgstr "" -#: twitterauthorization.php:417 +#. TRANS: Field label. +#: twitterauthorization.php:438 msgid "Password" msgstr "" -#: twitterauthorization.php:420 +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#: twitterauthorization.php:442 +msgctxt "BUTTON" msgid "Connect" msgstr "" -#: twitterauthorization.php:466 twitterauthorization.php:475 +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. +#: twitterauthorization.php:489 twitterauthorization.php:499 msgid "Registration not allowed." msgstr "" -#: twitterauthorization.php:482 +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. +#: twitterauthorization.php:507 msgid "Not a valid invitation code." msgstr "" -#: twitterauthorization.php:495 +#. TRANS: Client error displayed when trying to create a new user with an invalid username. +#: twitterauthorization.php:521 msgid "Nickname not allowed." msgstr "" -#: twitterauthorization.php:500 +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. +#: twitterauthorization.php:527 msgid "Nickname already in use. Try another one." msgstr "" -#: twitterauthorization.php:520 +#. TRANS: Server error displayed when creating a new user has failed. +#: twitterauthorization.php:548 msgid "Error registering user." msgstr "" -#: twitterauthorization.php:531 twitterauthorization.php:571 -#: twitterauthorization.php:591 +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. +#: twitterauthorization.php:560 twitterauthorization.php:603 +#: twitterauthorization.php:624 msgid "Error connecting user to Twitter." msgstr "" -#: twitterauthorization.php:553 +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. +#: twitterauthorization.php:584 msgid "Invalid username or password." msgstr "" -#: twitteradminpanel.php:52 TwitterBridgePlugin.php:151 -#: TwitterBridgePlugin.php:174 TwitterBridgePlugin.php:302 +#. TRANS: Page title for Twitter administration panel. +#: twitteradminpanel.php:53 +msgctxt "TITLE" msgid "Twitter" msgstr "" -#: twitteradminpanel.php:62 +#. TRANS: Instructions for Twitter bridge administration page. +#: twitteradminpanel.php:64 msgid "Twitter bridge settings" msgstr "" -#: twitteradminpanel.php:150 -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#: twitteradminpanel.php:153 +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -#: twitteradminpanel.php:156 -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#: twitteradminpanel.php:160 +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" -#: twitteradminpanel.php:212 +#. TRANS: Fieldset legend for Twitter application settings. +#: twitteradminpanel.php:217 msgid "Twitter application settings" msgstr "" -#: twitteradminpanel.php:218 +#. TRANS: Field label for Twitter assigned consumer key. +#: twitteradminpanel.php:224 msgid "Consumer key" msgstr "" -#: twitteradminpanel.php:219 -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#: twitteradminpanel.php:226 +msgid "The consumer key assigned by Twitter." msgstr "" -#: twitteradminpanel.php:227 +#. TRANS: Field label for Twitter assigned consumer secret. +#: twitteradminpanel.php:235 msgid "Consumer secret" msgstr "" -#: twitteradminpanel.php:228 -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#: twitteradminpanel.php:237 +msgid "The consumer secret assigned by Twitter." msgstr "" -#: twitteradminpanel.php:238 -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#: twitteradminpanel.php:248 +msgid "Note: A global consumer key and secret are set." msgstr "" -#: twitteradminpanel.php:245 +#. TRANS: Field label for Twitter application name. +#: twitteradminpanel.php:256 msgid "Integration source" msgstr "" -#: twitteradminpanel.php:246 -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#: twitteradminpanel.php:258 +msgid "The name of your Twitter application." msgstr "" -#: twitteradminpanel.php:258 +#. TRANS: Fieldset legend for Twitter integration options. +#: twitteradminpanel.php:271 msgid "Options" msgstr "" -#: twitteradminpanel.php:265 +#. TRANS: Checkbox label for global setting. +#: twitteradminpanel.php:279 msgid "Enable \"Sign-in with Twitter\"" msgstr "" -#: twitteradminpanel.php:267 -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#: twitteradminpanel.php:282 +msgid "This allow users to login with their Twitter credentials." msgstr "" -#: twitteradminpanel.php:274 +#. TRANS: Checkbox label for global setting. +#: twitteradminpanel.php:290 msgid "Enable Twitter import" msgstr "" -#: twitteradminpanel.php:276 +#. TRANS: Checkbox title for global setting. +#: twitteradminpanel.php:293 msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -#: twitteradminpanel.php:293 -msgid "Save Twitter settings" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#: twitteradminpanel.php:313 +msgid "Save the Twitter bridge settings." msgstr "" -#: TwitterBridgePlugin.php:152 -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +#: jsonstreamreader.php:67 +msgid "Invalid URL scheme for HTTP stream reader." msgstr "" -#: TwitterBridgePlugin.php:175 +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +#: jsonstreamreader.php:185 +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#: jsonstreamreader.php:217 +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#: jsonstreamreader.php:231 +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#: jsonstreamreader.php:238 +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#: jsonstreamreader.php:243 +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#: TwitterBridgePlugin.php:152 TwitterBridgePlugin.php:177 +msgctxt "MENU" +msgid "Twitter" +msgstr "" + +#. TRANS: Title for menu item in login navigation. +#: TwitterBridgePlugin.php:154 +msgid "Login or register using Twitter." +msgstr "" + +#. TRANS: Title for menu item in connection settings navigation. +#: TwitterBridgePlugin.php:179 msgid "Twitter integration options" msgstr "" -#: TwitterBridgePlugin.php:303 +#: TwitterBridgePlugin.php:306 +msgid "Twitter" +msgstr "" + +#: TwitterBridgePlugin.php:307 msgid "Twitter bridge configuration" msgstr "" -#: TwitterBridgePlugin.php:327 +#. TRANS: Plugin description. +#: TwitterBridgePlugin.php:331 msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" -#: twitterlogin.php:56 +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. +#: twitterlogin.php:57 msgid "Already logged in." msgstr "" -#: twitterlogin.php:64 +#. TRANS: Title for login using Twitter page. +#: twitterlogin.php:66 +msgctxt "TITLE" msgid "Twitter Login" msgstr "" -#: twitterlogin.php:69 +#. TRANS: Instructions for login using Twitter page. +#: twitterlogin.php:72 msgid "Login with your Twitter account" msgstr "" -#: twitterlogin.php:87 +#. TRANS: Alternative text for "sign in with Twitter" image. +#: twitterlogin.php:91 msgid "Sign in with Twitter" msgstr "" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#: twitter.php:428 +#: twitter.php:427 msgid "Your Twitter bridge has been disabled" msgstr "" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the #. TRANS: Twitter settings, %3$s is the StatusNet sitename. -#: twitter.php:435 +#: twitter.php:434 #, php-format msgid "" "Hi, %1$s. We're sorry to inform you that your link to Twitter has been " diff --git a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po index ab8000aa4d..66df0d45fd 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:54+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -23,6 +23,7 @@ msgstr "" "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "إعدادات تويتر" @@ -31,250 +32,380 @@ msgid "" "and vice-versa." msgstr "" +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "حساب تويتر" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "حساب تويتر مربوط" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Ø§ÙØµÙ„ حسابي عن تويتر" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -msgid "set a password" -msgstr "" - -msgid " first." -msgstr "" - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" -msgstr "" +msgstr "اربط" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "ØªÙØ¶ÙŠÙ„ات" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "" +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Ø§Ø­ÙØ¸" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "أضÙ" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "" -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +msgid "Could not remove Twitter user." msgstr "" +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "" -msgid "Couldn't save Twitter preferences." -msgstr "" +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." +msgstr "Ø­ÙÙØ¸Øª ØªÙØ¶ÙŠÙ„ات تويتر." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Ø­ÙÙØ¸Øª ØªÙØ¶ÙŠÙ„ات تويتر." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "" +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -msgid "Couldn't link your Twitter account." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" +#. TRANS: Page instruction. %s is the StatusNet sitename. #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "إعداد حساب تويتر" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "خيارات الربط" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "أنشئ حسابًا جديدًا" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "أنشئ مستخدمًا جديدًا بهذا الاسم المستعار." +#. TRANS: Field label. msgid "New nickname" msgstr "الاسم المستعار الجديد" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "البريد الإلكتروني" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "أنشئ" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "اربط الحساب الموجود" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" "إذا كان لديك حساب ÙØ¹Ù„ا، Ù„ÙØ¬ باسم مستخدمك وكلمة سرك لتربطه بحسابك على تويتر." +#. TRANS: Field label. msgid "Existing nickname" msgstr "الاسم المستعار الموجود" +#. TRANS: Field label. msgid "Password" msgstr "كلمة السر" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "اربط" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "لا ÙŠÙØ³Ù…Ø­ بالتسجيل." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "رمز دعوة غير صالح." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "لا يسمح بهذا الاسم المستعار." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم Ø¨Ø§Ù„ÙØ¹Ù„. جرّب اسمًا آخرًا." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "خطأ ÙÙŠ تسجيل مستخدم." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "خطأ ÙÙŠ ربط المستخدم بتويتر." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "اسم مستخدم أو كلمة سر غير صالحة." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "تويتر" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "إعدادات جسر تويتر" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +msgid "The consumer key assigned by Twitter." msgstr "" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +msgid "The consumer secret assigned by Twitter." msgstr "" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." msgstr "" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +msgid "The name of your Twitter application." msgstr "" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "خيارات" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." msgstr "" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -msgid "Save Twitter settings" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "إعدادات جسر تويتر" + +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." msgstr "" -msgid "Login or register using Twitter" +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" msgstr "" +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "تويتر" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." +msgstr "خطأ ÙÙŠ تسجيل مستخدم." + +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "" +msgid "Twitter" +msgstr "تويتر" + msgid "Twitter bridge configuration" msgstr "" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "والج Ø¨Ø§Ù„ÙØ¹Ù„." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" -msgstr "" +msgstr "حساب تويتر" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "" diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index f3db7e0a7c..6961336677 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Arventennoù Twitter" @@ -29,250 +30,382 @@ msgid "" "and vice-versa." msgstr "" +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Kont Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Digevreañ ma c'hont deus Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -msgid "set a password" -msgstr "Termeniñ ur ger-tremen" - -msgid " first." -msgstr "da gentañ." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Digevreet" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Penndibaboù" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "" +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ouzhpennañ" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "" -msgid "Couldn't remove Twitter user." -msgstr "" +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." +msgstr "Kevreadenn gant ho kont Twitter" +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "" -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +msgid "Could not save Twitter preferences." msgstr "" +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "" +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "" +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails. #, fuzzy msgid "Could not link your Twitter account." msgstr "Kevreadenn gant ho kont Twitter" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -msgid "Couldn't link your Twitter account." -msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." +msgstr "Kevreadenn gant ho kont Twitter" +#. TRANS: Page instruction. %s is the StatusNet sitename. #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Dibarzhioù kevreañ" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Krouiñ ur gont nevez" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Krouiñ un implijer nevez gant al lesanv-se." +#. TRANS: Field label. msgid "New nickname" msgstr "Lesanv nevez" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Krouiñ" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Kevreañ d'ur gont a zo dioutañ" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +#. TRANS: Field label. msgid "Existing nickname" msgstr "Lesanv a zo dioutañ" +#. TRANS: Field label. msgid "Password" msgstr "Ger-tremen" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Kevreañ" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "" +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Lesanv nann-aotreet." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "" +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "" +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Anv implijer pe ger-tremen direizh." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +msgid "The consumer key assigned by Twitter." msgstr "" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +msgid "The consumer secret assigned by Twitter." msgstr "" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." msgstr "" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "" -msgid "Name of your Twitter application" -msgstr "" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." +msgstr "Kevreadenn gant ho kont Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Dibarzhioù" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." msgstr "" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -msgid "Save Twitter settings" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." msgstr "Enrollañ arventennoù Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Kevreañ pe en em enskrivañ dre Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Dibarzhioù enframmañ Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Kevreet oc'h dija." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Keveadenn Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Kevreadenn gant ho kont Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Kevreañ gant Twitter" @@ -303,3 +436,9 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "Termeniñ ur ger-tremen" + +#~ msgid " first." +#~ msgstr "da gentañ." diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 191e50c77d..fc277419e4 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Paràmetres del Twitter" @@ -31,27 +32,30 @@ msgstr "" "Connecteu el vostre compte del Twitter per compartir les vostres " "actualitzacions amb els vostres amics del Twitter i viceversa." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Compte del Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Compte del Twitter connectat" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Desconnecta el meu compte del Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "En desconnectar el vostre Twitter podeu impossibilitar que torneu a iniciar " "una sessió! " -msgid "set a password" -msgstr "Definiu una contrasenya" - -msgid " first." -msgstr " primer." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -60,86 +64,117 @@ msgstr "" "Mantingueu el vostre compte %1$s, però desconnecteu-lo del Twitter. Podeu " "emprar la vostra contrasenya %1$s per iniciar una sessió." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Desconnecta" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Preferències" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Envia automàticament els meus avisos al Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Envia les respostes locals «@» al Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Subscriu els meus amics del Twitter aquí." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Importa la línia temporal d'amics." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Desa" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Afegeix" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "S'ha produït un problema amb el vostre testimoni de sessió. Torneu-ho a " "provar." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "No hi ha cap connexió del Twitter a suprimir." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "No s'ha pogut suprimir l'usuari del Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "S'ha desconnectat el compte del Twitter." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "No s'han pogut desar les preferències del Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "S'han desat les preferències del Twitter." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Ha passat quelcom estrany." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "No s'ha pogut enllaçar amb el compte del Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "No s'ha pogut enllaçar amb el vostre compte del Twitter: no coincidència de " "l'oath_token." -msgid "Couldn't link your Twitter account." -msgstr "No s'ha pogut enllaçar amb el compte del Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Aquesta és la primera vegada que inicieu una sessió a %s, per tant hem de " "connectar el vostre compte del Twitter al vostre compte local. Podeu crear " "un compte nou, o bé connectar-vos amb un compte ja existent si en teniu un." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Configuració del compte del Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Opcions de connexió" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -149,32 +184,43 @@ msgstr "" "dades privades: contrasenya, adreça de correu electrònic i MI, i número de " "telèfon." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Crea un compte nou" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Crea un usuari nom amb aquest sobrenom." +#. TRANS: Field label. msgid "New nickname" msgstr "Nou sobrenom" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 lletres en minúscules o nombres, sense puntuació o espais." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "Correu electrònic" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "S'utilitza per a actualitzacions, anuncis i per recuperar la contrasenya" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Crea" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Connecta un compte ja existent" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -182,85 +228,125 @@ msgstr "" "Si ja teniu un compte, inicieu una sessió amb el vostre usuari i contrasenya " "per connectar-lo al vostre compte del Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Sobrenom ja existent" +#. TRANS: Field label. msgid "Password" msgstr "Contrasenya" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Connecta" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "No es permet el registre." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "No és un codi d'invitació vàlid." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "El sobrenom no és permès." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "El sobrenom ja és en ús. Proveu-ne un altre." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Error en registrar l'usuari." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Error en connectar l'usuari al Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya no vàlida." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Paràmetres del pont del Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Clau de consumidor no vàlida. La llargada màxima és 255 caràcters." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" "Clau secreta de consumidor no vàlida. La llargada màxima és 255 caràcters." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Paràmetres de l'aplicació del Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Clau de consumidor" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Clau de consumidor assignada pel Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Clau secreta de consumidor" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Clau secreta de consumidor assignada pel Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Nota: es defineixen una clau pública i secreta de consumidor." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Font d'integració" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Nom de la vostra aplicació del Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Opcions" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Habilita l'inici de sessió amb el Twitter" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "Permet als usuaris iniciar una sessió amb les credencials del Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Habilita la importació del Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -268,18 +354,66 @@ msgstr "" "Permet als usuaris importar les línies temporals dels amics al Twitter. Cal " "que es configurin els dimonis manualment." -msgid "Save Twitter settings" -msgstr "Desa els paràmetres del Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Paràmetres del pont del Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Inicieu una sessió o registreu-vos fent servir el Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Opcions d'integració del Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Configuració del pont del Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -287,15 +421,21 @@ msgstr "" "El connector del pont del Twitter permet integrar una instància de " "l'StatusNet amb el Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Ja heu iniciat una sessió." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Inici de sessió del Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Inicieu una sessió amb el vostre compte del Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Inici de sessió amb el Twitter" @@ -337,3 +477,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "Definiu una contrasenya" + +#~ msgid " first." +#~ msgstr " primer." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "No s'ha pogut enllaçar amb el compte del Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Desa els paràmetres del Twitter" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index b0bca7e316..7a4fcede89 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -12,18 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Twittereinstellungen" @@ -34,26 +35,29 @@ msgstr "" "Verbinde dein Twitterkonto, um deine Aktualisierungen mit Twitterfreunden " "und umgekehrt zu teilen." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Twitterkonto" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Verbundenes Twitterkonto" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Trenne mein Konto von Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Die Trennung von Twitter könnte es unmöglich machen, sich anzumelden! Bitte " -msgid "set a password" -msgstr "setze ein Passwort" - -msgid " first." -msgstr "bevor du das tust." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -62,86 +66,117 @@ msgstr "" "Behalte dein Konto auf %1$s, aber trenne von Twitter. Du kannst dein %1$s-" "Passwort benutzen, um dich anzumelden." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Trennen" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Einstellungen" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Sende meine Nachrichten automatisch zu Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Sende lokale @-Antworten zu Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Abonniere meine Twitterfreunde hier." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Importiere meine Freundezeitleiste." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Speichern" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Hinzufügen" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Es gab ein Problem mit deinem Sitzungstoken. Bitte noch einmal versuchen." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Keine Twitterverbindung zu entfernen." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Konnte Twitterbenutzer nicht entfernen." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Twitterkonto getrennt." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Konnte Twittereinstellungen nicht speichern." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Twittereinstellungen gespeichert." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Du kannst dich nicht registrieren, wenn du der Lizenz nicht zustimmst." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Etwas merkwürdiges ist passiert." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Konnte nicht mit deinem Twitterkonto verbinden." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Konnte nicht mit deinem Twitterkonto verbinden: oauth_token passt nicht " "zusammen." -msgid "Couldn't link your Twitter account." -msgstr "Konnte dein Twitterkonto nicht verbinden." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Dies ist das erste Mal, dass du dich bei %s angemeldet hast, sodass wir dein " "Twitterkonto mit einem lokalen Konto verbinden müssen. Du kannst entweder " "ein neues Konto einrichten, oder mit einem bereits vorhandenen Konto " "verbinden, wenn du eines hast." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Einrichten des Twitterkontos" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Verbindungsoptionen" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -150,33 +185,44 @@ msgstr "" "Meine Daten, außer Passwort, E-Mail-Adresse, IM-Adresse und Telefonnummer, " "sind unter %s verfügbar." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Neues Konto erstellen" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Erstelle einen neuen Benutzer mit diesem Namen." +#. TRANS: Field label. msgid "New nickname" msgstr "Neuer Benutzername" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1–64 Kleinbuchstaben oder Ziffern, keine Interpunktion oder Leerzeichen." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "E-Mail" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "Nur für Updates, Bekanntmachungen und Passwortwiederherstellung verwendet" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Erstellen" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Bereits vorhandenes Konto verbinden" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -184,86 +230,126 @@ msgstr "" "Wenn du bereits ein Konto hast, melde dich mit deinem Benutzernamen und " "Passwort an um es mit deinem Twitterkonto zu verbinden." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Bereits vorhandener Benutzername" +#. TRANS: Field label. msgid "Password" msgstr "Passwort" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Verbinden" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Registrierung nicht erlaubt." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Kein gültiger Einladungscode." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Benutzername nicht erlaubt." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Benutzername bereits in Verwendung. Versuche einen anderen." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Fehler bei der Benutzerregistrierung." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Fehler bei der Verbindung des Benutzers zu Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Ungültiger Benutzername oder ungültiges Passwort." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Einstellungen für Twitterüberbrückung" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ungültiger Verbraucherschlüssel. Maximallänge beträgt 255 Zeichen." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ungültiges Verbrauchergeheimnis. Maximallänge beträgt 255 Zeichen." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Einstellungen für Twitteranwendung" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Verbraucherschlüssel" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Von Twitter vergebener Verbraucherschlüssel" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Verbrauchergeheimnis" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Von Twitter vergebenes Verbrauchergeheimnis" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "" "Hinweis: Globaler Verbraucherschlüssel und globals Verbrauchergeheimnis " "gesetzt." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Integrationsquelle" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Name deiner Twitteranwendung" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Optionen" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Ermögliche „Anmelden mit Twitter“" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "Ermögliche Benutzern, sich mit ihren Twitteranmeldedaten anzumelden" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Ermögliche Twitterimport" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -271,18 +357,66 @@ msgstr "" "Ermögliche Benutzern, ihre Twitterfreunde-Zeitleisten zu importieren. " "Erfordert, dass Dämons manuell konfiguriert werden." -msgid "Save Twitter settings" -msgstr "Speichere Twittereinstellungen" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Einstellungen für Twitterüberbrückung" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Anmeldung oder Registrierung, um Twitter zu benutzen" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Twitterintegrationsoptionen" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Konfiguration der Twitterüberbrückung" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -290,15 +424,21 @@ msgstr "" "Das Twitterüberbrückungsplugin ermöglicht die Integration einer StatusNet-" "Instanz mit Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Schon angemeldet." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Twitter Login" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Melden Sie sich mit Ihrem Twitter-Account an" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Mit Twitter anmelden" @@ -341,3 +481,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "setze ein Passwort" + +#~ msgid " first." +#~ msgstr "bevor du das tust." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Konnte dein Twitterkonto nicht verbinden." + +#~ msgid "Save Twitter settings" +#~ msgstr "Speichere Twittereinstellungen" diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index 8d091ce92d..94bfbec889 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "تنظیمات توییتر" @@ -29,250 +30,383 @@ msgid "" "and vice-versa." msgstr "" +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "حساب کاربری توییتر" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "حساب کاربری توییتر متصل شد" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "قطع ارتباط حساب کاربری من از توییتر" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -msgid "set a password" -msgstr "تنظیم رمز عبور" - -msgid " first." -msgstr " ابتدا." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "قطع اتصال" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "ترجیحات" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "" +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "ذخیره" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ø§ÙØ²ÙˆØ¯Ù†" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "هیچ ارتباط توییتری برای حذ٠وجود ندارد." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "نمی‌توان کاربر توییتر را حذ٠کرد." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "حساب توییتر قطع شده است." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "نمی‌توان ترجیحات توییتر را ذخیره کرد." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "تنظیمات توییتر ذخیره شد." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "" +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails. #, fuzzy msgid "Could not link your Twitter account." msgstr "حساب کاربری توییتر متصل شد" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -msgid "Couldn't link your Twitter account." -msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." +msgstr "حساب کاربری توییتر متصل شد" +#. TRANS: Page instruction. %s is the StatusNet sitename. #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "تنظیم حساب کاربری توییتر" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "تنظیمات اتصال" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "ایجاد حساب کاربری جدید" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "ایجاد یک کاربر جدید با این نام مستعار." +#. TRANS: Field label. msgid "New nickname" msgstr "نام مستعار جدید" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "ایجاد" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "اتصال به حساب کاربری موجود" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +#. TRANS: Field label. msgid "Existing nickname" msgstr "نام مستعار موجود" +#. TRANS: Field label. msgid "Password" msgstr "رمز عبور" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "اتصال" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "اجازهٔ ثبت‌نام داده نشده است." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "کد دعوت نامعتبر است." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "نام مستعار مجاز نیست." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "این نام مستعار در حال حاضر مورد Ø§Ø³ØªÙØ§Ø¯Ù‡ است. یکی دیگر را بیازمایید." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "خطا در ثبت نام کاربر." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "خطا در اتصال کاربر به توییتر." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "نام کاربری یا رمز عبور اشتباه است." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "توییتر" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "تنظیمات پل توییتر" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +msgid "The consumer key assigned by Twitter." msgstr "" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +msgid "The consumer secret assigned by Twitter." msgstr "" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." msgstr "" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "" -msgid "Name of your Twitter application" -msgstr "" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." +msgstr "حساب کاربری توییتر متصل شد" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "تنظیمات" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." msgstr "" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -msgid "Save Twitter settings" -msgstr "ذخیره تنظیمات توییتر" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "تنظیمات پل توییتر" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "توییتر" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از توییتر، وارد شوید یا ثبت نام کنید" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "تنظیمات پیوسته توییتر" +msgid "Twitter" +msgstr "توییتر" + msgid "Twitter bridge configuration" msgstr "پیکربندی پل توییتر" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "در حال حاضر وارد شده‌اید." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "ورود به توییتر" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "با حساب کاربری توییتر وارد شوید" @@ -304,3 +438,12 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "" + +#~ msgid "set a password" +#~ msgstr "تنظیم رمز عبور" + +#~ msgid " first." +#~ msgstr " ابتدا." + +#~ msgid "Save Twitter settings" +#~ msgstr "ذخیره تنظیمات توییتر" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 834db8f412..916a882b21 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -11,18 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:37+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Paramètres Twitter" @@ -33,27 +34,30 @@ msgstr "" "Connectez votre compte Twitter pour partager vos mises à jour avec vos amis " "Twitter et vice-versa." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Compte Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Compte Twitter connecté" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Déconnecter mon compte de Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "La déconnexion de votre compte Twitter ne vous permettrait plus de vous " "connecter ! S’il vous plaît " -msgid "set a password" -msgstr "définissez un mot de passe" - -msgid " first." -msgstr " tout d’abord." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -62,87 +66,118 @@ msgstr "" "Gardez votre compte %1$s, mais déconnectez-vous de Twitter. Vous pouvez " "utiliser votre mot de passe %1$s pour vous connecter." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Déconnecter" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Préférences" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Envoyer automatiquement mes avis sur Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Envoyer des réponses \"@\" locales à Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "S’abonner à mes amis Twitter ici." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Importer l’agenda de mes amis." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sauvegarder" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ajouter" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Aucune connexion Twitter à retirer." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Impossible de supprimer l’utilisateur Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Compte Twitter déconnecté." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Impossible de sauvegarder les préférences Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Quelque chose de bizarre s’est passé." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Impossible de lier votre compte Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Impossible de lier votre compte Twitter : le jeton d’authentification ne " "correspond pas." -msgid "Couldn't link your Twitter account." -msgstr "Impossible de lier votre compte Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "C’est la première fois que vous êtes connecté à %s via Twitter, il nous faut " "donc lier votre compte Twitter à un compte local. Vous pouvez soit créer un " "nouveau compte, soit vous connecter avec votre compte local existant si vous " "en avez un." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Configuration du compte Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Options de connexion" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -152,33 +187,44 @@ msgstr "" "des données privées suivantes : mot de passe, adresse courriel, adresse de " "messagerie instantanée et numéro de téléphone." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Créer un nouveau compte" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Créer un nouvel utilisateur avec ce pseudonyme." +#. TRANS: Field label. msgid "New nickname" msgstr "Nouveau pseudonyme" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "Courriel" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "Utilisé uniquement pour les mises à jour, les annonces, et la récupération " "de mot de passe" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Créer" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Se connecter à un compte existant" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -186,86 +232,126 @@ msgstr "" "Si vous avez déjà un compte ici, connectez-vous avec votre nom d’utilisateur " "et mot de passe pour l’associer à votre compte Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Pseudonyme existant" +#. TRANS: Field label. msgid "Password" msgstr "Mot de passe" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Connexion" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Inscription non autorisée." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Erreur lors de l’inscription de l’utilisateur." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Erreur de connexion de l’utilisateur à Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Paramètres de la passerelle Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Clé de client invalide. La longueur maximum est de 255 caractères." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" "Code secret du client invalide. La longueur maximum est de 255 caractères." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Paramètres de l’application Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Clé du client" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Clé du client assignée par Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Code secret du client" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Code secret du client assigné par Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Note : une clé et un code secret de client global sont définis." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Source d’intégration" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Nom de votre application Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Options" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Activer « S’inscrire avec Twitter »" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "" "Permet aux utilisateurs de se connecter avec leurs identifiants Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Activer l’importation Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -273,18 +359,66 @@ msgstr "" "Permettre aux utilisateurs d’importer les agendas de leurs amis Twitter. " "Exige que les démons soient configurés manuellement." -msgid "Save Twitter settings" -msgstr "Sauvegarder les paramètres Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Paramètres de la passerelle Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Se connecter ou s’inscrire via Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Options d’intégration de Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Configuration de la passerelle Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -292,15 +426,21 @@ msgstr "" "Le greffon de « passerelle » Twitter permet l’intégration d’une instance de " "StatusNet avec Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Déjà connecté." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Connexion Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Connexion avec votre compte Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "S’inscrire avec Twitter" @@ -343,3 +483,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "définissez un mot de passe" + +#~ msgid " first." +#~ msgstr " tout d’abord." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Impossible de lier votre compte Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Sauvegarder les paramètres Twitter" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index b6ace41f5f..4af15c76f9 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Impuestazions di Twitter" @@ -29,249 +30,379 @@ msgid "" "and vice-versa." msgstr "" +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Identitât su Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Identitât su Twitter conetude" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -msgid "set a password" -msgstr "" - -msgid " first." -msgstr "" - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Disconetiti" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Preferencis" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Mande in automatic i miei avîs su Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Mande lis rispuestis locâls cun \"@\" a Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Impuarte la ativitât dai miei amîs." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Salve" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Zonte" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "" -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +msgid "Could not remove Twitter user." msgstr "" +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "" -msgid "Couldn't save Twitter preferences." -msgstr "" +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." +msgstr "Preferencis di Twitter salvadis." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Preferencis di Twitter salvadis." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "No tu puedis regjistrâti se no tu sês dacuardi cu la licence." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -msgid "Couldn't link your Twitter account." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" +#. TRANS: Page instruction. %s is the StatusNet sitename. #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Opzions di conession" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Cree une gnove identitât" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Cree un gnûf utent cun chest sorenon." +#. TRANS: Field label. msgid "New nickname" msgstr "Gnûf sorenon" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 letaris minusculis o numars, cence segns di puntuazion o spazis." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "Pueste eletroniche" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "Doprât dome par inzornaments, comunicazions e recupar de password.ì" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Cree" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Conet une identitât che esist za" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +#. TRANS: Field label. msgid "Existing nickname" msgstr "Sorenon esistint" +#. TRANS: Field label. msgid "Password" msgstr "Password" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Conetiti" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Regjistrazion no permitude." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "" +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Il sorenon nol è permetût." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Il sorenon al è za doprât. Provent un altri." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "" +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "" +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Il non utent o la password no son valits." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +msgid "The consumer key assigned by Twitter." msgstr "" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +msgid "The consumer secret assigned by Twitter." msgstr "" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." msgstr "" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Non de tô aplicazion Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Opzions" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." msgstr "" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -msgid "Save Twitter settings" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." msgstr "Salve lis impuestazions di Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." msgstr "" +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +msgid "Login or register using Twitter." +msgstr "" + +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Tu sês za jentrât." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" -msgstr "" +msgstr "Identitât su Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 2b16892001..81a722d6a7 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Configuration de Twitter" @@ -31,27 +32,30 @@ msgstr "" "Connecte tu conto de Twitter pro condivider tu actualisationes con tu amicos " "de Twitter e vice versa." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Conto de Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Conto de Twitter connectite" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Disconnecter mi conto ab Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Le disconnexion de tu conto de Twitter renderea le authentication " "impossibile! Per favor " -msgid "set a password" -msgstr "defini un contrasigno" - -msgid " first." -msgstr " primo." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -60,82 +64,113 @@ msgstr "" "Retene tu conto de %1$s ma disconnecte ab Twitter. Tu pote usar tu " "contrasigno de %1$s pro aperir session." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Disconnecter" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Preferentias" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Automaticamente inviar mi notas a Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Inviar responsas \"@\" local a Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Subscriber hic a mi amicos de Twitter." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Importar le chronologia de mi amicos." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Adder" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Nulle connexion Twitter a remover." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Non poteva remover le usator de Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Conto de Twitter disconnectite." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Non poteva salveguardar le preferentias de Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Preferentias de Twitter salveguardate." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Tu non pote crear un conto si tu non accepta le licentia." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Qualcosa de bizarre occurreva." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Non poteva ligar tu conto de Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "Non poteva ligar a tu conto de Twitter: oauth_token non corresponde." -msgid "Couldn't link your Twitter account." -msgstr "Non poteva ligar a tu conto de Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe " "connecter tu conto de Twitter a un conto local. Tu pote crear un nove conto, " "o connecter con tu conto existente, si tu ha un." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Configuration del conto de Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Optiones de connexion" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -145,33 +180,44 @@ msgstr "" "contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de " "telephono." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Crear nove conto" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Crear un nove usator con iste pseudonymo." +#. TRANS: Field label. msgid "New nickname" msgstr "Nove pseudonymo" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 minusculas o numeros, sin punctuation o spatios." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "E-mail" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "Usate solmente pro actualisationes, notificationes e recuperation de " "contrasigno" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Crear" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Connecter conto existente" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -179,84 +225,124 @@ msgstr "" "Si tu ha jam un conto, aperi session con tu nomine de usator e contrasigno " "pro connecter lo a tu conto de Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Pseudonymo existente" +#. TRANS: Field label. msgid "Password" msgstr "Contrasigno" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Connecter" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Creation de conto non permittite." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Error durante le registration del usator." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Error durante le connexion del usator a Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Configuration del ponte a Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Clave de consumitor invalide. Longitude maximal es 255 characteres." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Secreto de consumitor invalide. Longitude maximal es 255 characteres." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Configuration del application Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Clave de consumitor" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Clave de consumitor assignate per Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Secreto de consumitor" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Secreto de consumitor assignate per Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Nota: un clave e un secreto de consumitor global es definite." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Fonte de integration" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Nomine de tu application Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Optiones" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Activar \"Aperir session con Twitter\"" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "Permitte que usatores aperi session con lor conto de Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Activar le importation de Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -264,18 +350,66 @@ msgstr "" "Permitte que usatores importa le chronologias de lor amicos de Twitter. " "Require que le demones sia configurate manualmente." -msgid "Save Twitter settings" -msgstr "Salveguardar configurationes de Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Configuration del ponte a Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Aperir session o crear conto usante Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Optiones de integration de Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Configuration del ponte a Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -283,15 +417,21 @@ msgstr "" "Le plug-in de \"ponte\" a Twitter permitte le integration de un installation " "de StatusNet con Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Tu es jam authenticate." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Apertura de session con Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Aperir session con tu conto de Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Aperir session con Twitter" @@ -333,3 +473,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "defini un contrasigno" + +#~ msgid " first." +#~ msgstr " primo." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Non poteva ligar a tu conto de Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Salveguardar configurationes de Twitter" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index ec1a98d968..4617407d68 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "트위터 설정" @@ -31,25 +32,28 @@ msgstr "" "트위터 ê³„ì •ì„ ì—°ê²°í•©ë‹ˆë‹¤. ë‚´ ê¸€ì„ íŠ¸ìœ„í„° 친구들과 공유할 수 있고 반대로 í•  수" "ë„ ìžˆìŠµë‹ˆë‹¤." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "트위터 계정" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "연결한 트위터 계정" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "ë‚´ 계정ì—서 트위터 ì—°ê²°ì„ í•´ì œí•©ë‹ˆë‹¤." -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "트위터 ì—°ê²°ì„ í•´ì œí•˜ë©´ 로그ì¸ì´ 불가능해질 수 있습니다!" -msgid "set a password" -msgstr "비밀 번호를 설정하십시오" - -msgid " first." -msgstr "." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -58,81 +62,112 @@ msgstr "" "ë‚´ %1$s ê³„ì •ì„ ìœ ì§€í•˜ì§€ë§Œ 트위터ì—서 ì—°ê²°ì„ í•´ì œí•©ë‹ˆë‹¤. 로그ì¸ì— %1$s 비밀 번" "호를 사용할 수 있습니다." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "ì—°ê²° ëŠê¸°" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "기본 설정" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "ë‚´ ê¸€ì„ ìžë™ìœ¼ë¡œ 트위터로 보내기" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "로컬 \"@\" ë‹µìž¥ì„ íŠ¸ìœ„í„°ë¡œ 보내기." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "여기 있는 ë‚´ 트위터 ì¹œêµ¬ë“¤ì— êµ¬ë…." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "ë‚´ 친구 타임ë¼ì¸ 가져오기." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "저장" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "추가" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "세션 토í°ì— 문제가 있습니다. 다시 시ë„í•´ 보십시오." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "예ìƒì¹˜ 못한 í¼ ì œì¶œ." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "제거할 트위터 ì—°ê²°ì´ ì—†ìŠµë‹ˆë‹¤." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "트위터 사용ìžë¥¼ 제거할 수 없습니다." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "트위터 계정 ì—°ê²°ì„ ëŠì—ˆìŠµë‹ˆë‹¤." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "트위터 기본 ì„¤ì •ì„ ì €ìž¥í•  수 없습니다." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "트위터 기본 ì„¤ì •ì„ ì €ìž¥í–ˆìŠµë‹ˆë‹¤." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "ë¼ì´ì„ ìŠ¤ì— ë™ì˜í•˜ì§€ 않으면 가입할 수 없습니다." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "ì´ìƒí•œ ì¼ì´ ë°œìƒí–ˆìŠµë‹ˆë‹¤." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "트위터 ê³„ì •ì„ ì—°ê²°í•  수 없습니다." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "트위터 ê³„ì •ì„ ì—°ê²°í•  수 없습니다: oauth_token ì¼ì¹˜í•˜ì§€ 않습니다." -msgid "Couldn't link your Twitter account." -msgstr "트위터 ê³„ì •ì„ ì—°ê²°í•  수 없습니다." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "처ìŒìœ¼ë¡œ %s 사ì´íŠ¸ì— ë¡œê·¸ì¸í–ˆìœ¼ë¯€ë¡œ 트위터를 로컬 ê³„ì •ì— ì—°ê²°í•´ì•¼ 합니다. 새 " "ê³„ì •ì„ ë§Œë“¤ê±°ë‚˜, ê³„ì •ì´ ìžˆìœ¼ë©´ 기존 ê³„ì •ì„ íŠ¸ìœ„í„°ì— ì—°ê²°í•  수 있습니다." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "트위터 계정 준비" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "ì—°ê²° 옵션" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -141,115 +176,166 @@ msgstr "" "ë‚´ 글과 파ì¼ì€ %s ì¡°ê±´ì— ë”°ë¦…ë‹ˆë‹¤. ë‹¤ìŒ ê°œì¸ ë°ì´í„°ëŠ” 제외합니다: 비밀 번호, " "ë©”ì¼ ì£¼ì†Œ, 메신저 주소, ì „í™” 번호." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "새 계정 만들기" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "ì´ ì´ë¦„으로 새 ì‚¬ìš©ìž ë§Œë“¤ê¸°" +#. TRANS: Field label. msgid "New nickname" msgstr "새 ì´ë¦„" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64ìž ì‚¬ì´ì— ì˜ë¬¸ 소문ìž, 숫ìžë¡œë§Œ ì”니다. 기호나 ê³µë°±ì„ ì“°ë©´ 안 ë©ë‹ˆë‹¤." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "ë©”ì¼" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "ì—…ë°ì´íЏ, 공지 사항, 비밀번호 찾기ì—ë§Œ 사용합니다." +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "만들기" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "기존 ê³„ì •ì— ì—°ê²°" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "ê³„ì •ì´ ìžˆìœ¼ë©´, ì•„ì´ë””와 비밀 번호로 로그ì¸í•´ì„œ íŠ¸ìœ„í„°ì— ì—°ê²°í•˜ì‹­ì‹œì˜¤." +#. TRANS: Field label. msgid "Existing nickname" msgstr "기존 ì´ë¦„" +#. TRANS: Field label. msgid "Password" msgstr "비밀 번호" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "ì—°ê²°" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "ê°€ìž…ì´ í—ˆìš©ë˜ì§€ 않습니다." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "초대 코드가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "허용ë˜ì§€ 않는 ì´ë¦„입니다." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "ì´ë¦„ì´ ì´ë¯¸ 사용 중입니다. 다른 ì´ë¦„ì„ ì‚¬ìš©í•´ 보십시오." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "ì‚¬ìš©ìž ë“±ë¡ì— 오류." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "사용ìžë¥¼ íŠ¸ìœ„í„°ì— ì—°ê²°í•˜ëŠ”ë° ì˜¤ë¥˜." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "ì‚¬ìš©ìž ì´ë¦„ì´ë‚˜ 비밀 번호가 틀렸습니다." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "트위터" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "트위터 브리지 설정" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "컨수머 키가 잘못ë˜ì—ˆìŠµë‹ˆë‹¤. ìµœëŒ€ê°’ì€ 255ìžìž…니다." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "컨수머 ë¹„ë°€ê°’ì´ ìž˜ëª»ë˜ì—ˆìŠµë‹ˆë‹¤. ìµœëŒ€ê°’ì€ 255ìžìž…니다." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "트위터 ì‘ìš© 프로그램 설정" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "컨수머 키" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "트위터가 할당한 컨수머 키" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "컨수머 비밀 ê°’" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "트위터가 할당한 컨수머 비밀 ê°’" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "참고: ì „ì²´ 컨수머 키와 ë¹„ë°€ê°’ì„ ì„¤ì •í–ˆìŠµë‹ˆë‹¤." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "통합 소스" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "ë‚´ 트위터 ì‘ìš© í”„ë¡œê·¸ëž¨ì˜ ì´ë¦„" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "설정" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "\"트위터로 로그ì¸\" 사용" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "사용ìžê°€ 트위터 로그ì¸ì„ 통해 로그ì¸í•˜ë„ë¡ í—ˆìš©" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "트위터 가져오기 사용" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -257,18 +343,66 @@ msgstr "" "사용ìžê°€ 트위터 ì¹œêµ¬ì˜ íƒ€ìž„ë¼ì¸ì„ 가져오ë„ë¡ í—ˆìš©í•©ë‹ˆë‹¤. ë°ëª¬ì„ 수ë™ìœ¼ë¡œ 설정" "해야 합니다." -msgid "Save Twitter settings" -msgstr "트위터 설정 저장" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "트위터 브리지 설정" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "트위터" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "트위터를 사용해 ë¡œê·¸ì¸ ë˜ëŠ” 가입" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "트위터 통합 옵션" +msgid "Twitter" +msgstr "트위터" + msgid "Twitter bridge configuration" msgstr "트위터 브릿지 설정" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -276,15 +410,21 @@ msgstr "" "트위터 \"브릿지\" 플러그ì¸ì„ 통해 StatusNet ì¸ìŠ¤í„´ìŠ¤ë¥¼ 트위터와 ì—°ê²°í•  수 있습니다." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "ì´ë¯¸ 로그ì¸í—€ìŠµë‹ˆë‹¤." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "트위터 로그ì¸" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "트위터 계정으로 로그ì¸" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "트위터로 로그ì¸" @@ -325,3 +465,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "비밀 번호를 설정하십시오" + +#~ msgid " first." +#~ msgstr "." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "트위터 ê³„ì •ì„ ì—°ê²°í•  수 없습니다." + +#~ msgid "Save Twitter settings" +#~ msgstr "트위터 설정 저장" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 77bedcc2f2..d350f6bc21 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Ðагодувања за Twitter" @@ -31,27 +32,30 @@ msgstr "" "Поврзете ја Вашата Ñметка на Twitter за да ги Ñподелувате подновувањата Ñо " "Вашите пријатели на Twitter и обратно." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Сметка на Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Поврзана Ñметка на Twitter" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Прекини ја врÑката Ñо Ñметката на Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Ðко ја прекинете врÑката Ñо Ñметката на Twitter, нема да можете да Ñе " "најавите! Затоа " -msgid "set a password" -msgstr "Ñтавете лозинка" - -msgid " first." -msgstr "пред да продолжите." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -60,84 +64,115 @@ msgstr "" "Задржете Ñи ја Ñметката на %1$s, но прекинете ја врÑката Ñо Twitter. За " "најава, кориÑтете ја Вашата лозинка на %1$s." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Прекини" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Ðагодувања" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "ÐвтоматÑки иÑпраќај ми ги забелешките на Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "ИÑпраќај локални „@“ одговори на Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Претплатете Ñе на пријателите од Twitter тука." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Увези ја хронологијата на моите пријатели." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Додај" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Се појави проблем Ñо жетонот на Вашата ÑеÑија. Обидете Ñе повторно." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Ðеочекувано поднеÑување на образец." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Ðема врÑка Ñо Twitter за отÑтранување." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Ðе можев да го отÑтранам кориÑникот на Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Ð’Ñ€Ñката Ñо Ñметката на Twitter е прекината." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Ðе можев да ги зачувам нагодувањата за Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Ðагодувањата за Twitter Ñе зачувани." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Ðе можете да Ñе региÑтрирате ако не Ñе ÑоглаÑувате Ñо лиценцата." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Се Ñлучи нешто чудно." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Ðе можам да ја поврзам Вашата Ñметка на Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Ðе можев да ја поврзам Вашата Ñметка на Twitter: неÑоглаÑување Ñо " "oauth_token." -msgid "Couldn't link your Twitter account." -msgstr "Ðе можам да ја поврзам Вашата Ñметка на Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Ова е прв пат како Ñе најавувате на %s, па затоа мораме да ја поврземе " "Вашата Ñметка на Twitter Ñо локална Ñметка. Можете да Ñоздадете нова Ñметка, " "или пак да Ñе поврзете Ñо Вашата поÑтоечка Ñметка (ако ја имате)." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "ПоÑтавки за Ñметката на Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Ðагодувања за врÑка" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -146,31 +181,42 @@ msgstr "" "Мојот текÑÑ‚ и податотеки Ñе доÑтапни под %s, оÑвен Ñледниве приватни " "податоци: лозинка, е-пошта, ÐП-адреÑа и телефонÑки број." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Создај нова Ñметка" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Создај нов кориÑник Ñо овој прекар." +#. TRANS: Field label. msgid "New nickname" msgstr "Ðов прекар" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 мали букви или бројки, без интерпункциÑки знаци и празни меÑта." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "Е-пошта" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "Се кориÑти Ñамо за подновувања, објави и повраќање на лозинка." +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Создај" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Поврзи поÑтоечка Ñметка" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -178,85 +224,125 @@ msgstr "" "Ðко веќе имате Ñметка, најавете Ñе Ñо кориÑничкото име и лозинката за да ја " "поврзете Ñо профилот на Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "ПоÑтоечки прекар" +#. TRANS: Field label. msgid "Password" msgstr "Лозинка" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Поврзи Ñе" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "РегиÑтрацијата не е дозволена." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Грешка при региÑтрирање на кориÑникот." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Грешка при поврзувањето на кориÑникот Ñо Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Ðеважечко кориÑничко име или лозинка." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "ПоÑтавки за моÑтот до Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ðеважечки потрошувачки клуч. Дозволени Ñе највеќе 255 знаци." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ðеважечка потрошувачка тајна. Дозволени Ñе највеќе 255 знаци." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Ðагодувања на програмчето за Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Потрошувачки клуч" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Потрошувачкиот клуч доделен од Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Потрошувачка тајна" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Потрошувачката тајна доделена од Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Ðапомена: поÑтавени Ñе глобални потрошувачки клуч и тајна." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Извор на Ñоединување" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Име на Вашето програмче за Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "ПоÑтавки" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Овозможи „најава Ñо Twitter“" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "" "Им овозможува на кориÑниците да Ñе најавуваат Ñо нивните податоци од Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Овозможу увоз од Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -264,18 +350,66 @@ msgstr "" "Им овозможува на кориÑниците да ги увезуваат хронологиите на нивните " "пријатели на Twitter. Бара рачно нагодување на демоните." -msgid "Save Twitter settings" -msgstr "Зачувај нагодувања на Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "ПоÑтавки за моÑтот до Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Ðајава или региÑтрација Ñо Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Ðагодувања за обединување Ñо Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Ðагодувања за моÑтот до Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -283,15 +417,21 @@ msgstr "" "Приклучокот за „моÑт“ до Twitter овозможува Ñоединување на примерок на " "StatusNet Ñо Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Веќе Ñте најавени." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Ðајава Ñо Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Ðајава Ñо Вашата Ñметка од Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Ðајава Ñо Twitter" @@ -333,3 +473,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "Ñтавете лозинка" + +#~ msgid " first." +#~ msgstr "пред да продолжите." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Ðе можам да ја поврзам Вашата Ñметка на Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Зачувај нагодувања на Twitter" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 32be0a8d28..04f24e917d 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Tetapan Twitter" @@ -31,219 +32,304 @@ msgstr "" "Sambungkan akaun Twitter anda untuk berkongsi kemaskini dengan rakan-rakan " "Twitter anda." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Akaun Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Akaun Twitter disambungkan" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Putuskan akaun saya dari Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "Jika Twitter anda diputuskan, mungkin tak boleh log masuk! Tolong " -msgid "set a password" -msgstr "tetapkan kata laluan" - -msgid " first." -msgstr " terlebih dahulu." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Putuskan" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Keutamaan" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Hantarkan notis saya secara automatik ke Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Hantarkan balasan \"@\" setempat ke Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Langgan kawan-kawan Twitter saya di sini." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Import garis masa kawan-kawan saya." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Simpan" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Tambahkan" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Tiada sambungan Twitter untuk digugurkan." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Pengguna Twitter tidak dapat digugurkan." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "" -msgid "Couldn't save Twitter preferences." -msgstr "" +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." +msgstr "Pengguna Twitter tidak dapat digugurkan." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "" +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "" +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails. #, fuzzy msgid "Could not link your Twitter account." msgstr "Log masuk dengan akaun Twitter anda" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" - -msgid "Couldn't link your Twitter account." -msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." +msgstr "Log masuk dengan akaun Twitter anda" +#. TRANS: Page instruction. %s is the StatusNet sitename. #, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Persediaan Akaun Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Opsyen sambungan" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Buka akaun baru" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "" +#. TRANS: Field label. msgid "New nickname" msgstr "" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "E-mel" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Cipta" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Sambungkan akaun yang sedia ada" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "" +#. TRANS: Field label. msgid "Existing nickname" msgstr "" +#. TRANS: Field label. msgid "Password" msgstr "" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" -msgstr "" +msgstr "Putuskan" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "" +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "" +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "" +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "" +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "" +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "" +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "" +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Tetapan pengantara Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Kunci pengguna tidak sah. Panjang maksimum 255 aksara." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Rahsia pengguna tidak sah. Panjang maksimum 255 aksara." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Kunci pengguna" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Kunci pengguna yang diperuntukkan oleh Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Rahsia pengguna" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Rahsia pengguna yang diperuntukkan oleh Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Perhatian: kunci dan rahsia pengguna global telah ditetapkan." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Sumber penyepaduan" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Nama aplikasi Twitter anda" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Opsyen" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Hidupkan \"Daftar masuk dengan Twitter\"" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "Benarkan pengguna log masuk dengan watikah Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Bolehkan import dari Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -251,18 +337,66 @@ msgstr "" "Benarkan pengguna mengimport garis masa kawan-kawannya di Twitter. Untuk " "itu, daemon perlu ditataletak secara manual." -msgid "Save Twitter settings" -msgstr "Simpan tetapan Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Tetapan pengantara Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Log masuk atau berdaftar dengan menggunakan Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Opsyen penyepaduan Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Tatarajah pengantara Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -270,15 +404,21 @@ msgstr "" "Pemalam \"penghubung\" Twitter membolehkan penyepaduan peristiwa StatusNet " "dengan Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Sudah log masuk." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Log masuk Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Log masuk dengan akaun Twitter anda" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Daftar masuk dengan Twitter" @@ -309,3 +449,12 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "tetapkan kata laluan" + +#~ msgid " first." +#~ msgstr " terlebih dahulu." + +#~ msgid "Save Twitter settings" +#~ msgstr "Simpan tetapan Twitter" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 01191f84f5..8fa430394d 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Twitterinstellingen" @@ -31,27 +32,30 @@ msgstr "" "Koppel uw Twittergebruiker om uw berichten te delen met uw Twittervrienden " "en vice versa." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Twittergebruiker" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Gekoppelde Twittergebruiker" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Mijn gebruiker loskoppelen van Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Loskoppelen van uw Twittergebruiker zou ervoor zorgen dat u niet langer kunt " "aanmelden. U moet eerst " -msgid "set a password" -msgstr "een wachtwoord instellen" - -msgid " first." -msgstr " voordat u verder kunt met deze handeling." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -60,86 +64,117 @@ msgstr "" "Uw gebruiker bij %1$s behouden maar deze loskoppelen van Twitter. U kunt uw " "wachtwoord van %1$s gebruiken om aan te melden." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Loskoppelen" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Voorkeuren" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Mijn berichten automatisch naar Twitter verzenden" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Lokale antwoorden met \"2\" naar Twitter verzenden." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Hier op mijn Twittervrienden abonneren." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Tijdlijn van mijn vrienden importeren." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Toevoegen" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " "alstublieft." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Er is geen Twitterkoppeling om te verwijderen." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Het was niet mogelijk de Twittergebruiker te verwijderen." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "De Twittergebruiker is ontkoppeld." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "De Twitterinstellingen zijn opgeslagen." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Er is iets vreemds gebeurd." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " "niet overeen." -msgid "Couldn't link your Twitter account." -msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Dit is de eerste keer dat u aanmeldt bij %s en dan moeten we uw " "Twittergebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe " "gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Instellingen Twittergebruiker" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Koppelingsinstellingen" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -148,31 +183,42 @@ msgstr "" "Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende " "privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Nieuwe gebruiker aanmaken" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." +#. TRANS: Field label. msgid "New nickname" msgstr "Nieuwe gebruikersnaam" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "E-mail" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Aanmaken" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Verbinden met een bestaande gebruiker" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -180,87 +226,127 @@ msgstr "" "Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " "wachtwoord om deze daarna te koppelen met uw Twittergebruiker." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Bestaande gebruikersnaam" +#. TRANS: Field label. msgid "Password" msgstr "Wachtwoord" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Koppelen" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Registratie is niet toegestaan." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "De uitnodigingscode is ongeldig." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Fout bij het registreren van de gebruiker." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Fout bij het verbinden van de gebruiker met Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Instellingen Twitterkoppeling" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ongeldige gebruikerssleutel. De maximale lengte is 255 tekens." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ongeldig gebruikersgeheim. De maximale lengte is 255 tekens." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Instellingen Twitterapplicatie" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Gebruikerssleutel" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Gebruikerssleutel uitgegeven door Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Gebruikersgeheim" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Gebruikersgeheim uitgegeven door Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Let op: er zijn een gebruikerssleutel en gebruikersgeheim ingesteld." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Integratiebron" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Naam van uw Twitterapplicatie" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Opties" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "\"Aanmelden via Twitter\" inschakelen" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "" "Gebruikers toestaan aan te melden met hun gebruikersnaam en wachtwoord van " "Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Twitterimport inschakelen" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -268,18 +354,66 @@ msgstr "" "Gebruikers toestaan de tijdlijnen van hun Twittervrienden te importeren. " "Vereist handmatig te configureren daemons." -msgid "Save Twitter settings" -msgstr "Twitterinstellingen opslaan" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Instellingen Twitterkoppeling" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Aanmelden of registreren via Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Opties voor Twitterintegratie" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Instellingen voor Twitterkoppeling" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -287,15 +421,21 @@ msgstr "" "De plugin Twitter Brigde maakt het mogelijk en StatusNetinstallatie te " "integreren met Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "U bent al aangemeld." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Aanmelden via Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Aanmelden met uw Twittergebruiker" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Aanmelden met Twitter" @@ -339,3 +479,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "een wachtwoord instellen" + +#~ msgid " first." +#~ msgstr " voordat u verder kunt met deze handeling." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." + +#~ msgid "Save Twitter settings" +#~ msgstr "Twitterinstellingen opslaan" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index d76c44f195..bdf8a7a0af 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Mga katakdaan ng Twitter" @@ -31,27 +32,30 @@ msgstr "" "Iugnay ang akawnt mo ng Twitter upang maibagi ang mga pagsasapanahon mo sa " "iyong mga kaibigan sa Twitter at pabalik din." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Akawnt sa Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Nakaugnay na akawnt ng Twitter" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Huwag iugnay ang akawnt ko na mula sa Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Ang pagkalas ng Twitter mo ay maaaring makapagdulot ng hindi makalagda! " "Mangyaring " -msgid "set a password" -msgstr "magtakda ng isang hudyat" - -msgid " first." -msgstr "muna." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -60,86 +64,117 @@ msgstr "" "Panatilihin ang akawnt mong %1$s subalit kumalas mula sa Twitter. Maaari " "mong gamitin ang hudyat mo sa %1$s upang lumagdang papasok." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Huwag umugnay" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Mga nais" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Kusang ipadala ang mga pabatid ko sa Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "Ipadala ang katutubong mga tugon na \"@\" sa Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "Tumanggap ng mga pagsipi sa aking mga kaibigan sa Twitter dito." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Angkatin ang guhit ng panahon ng mga kaibigan ko." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Idagdag" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" "Nagkaroon ng isang suliranin sa kahalip ng sesyon mo. Pakisubukan uli." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Hindi inaasahang pagpapasa ng pormularyo." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Walang matatanggal na ugnay sa Twitter." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Hindi matanggal ang tagagamit ng Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Nawala ang ugnay sa akawnt ng Twitter." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Hindi masagip ang mga nais na pang-Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Nasagip ang mga nais na pang-Twitter." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Hindi ka makakapagpatala kung hindi ka sasang-ayon sa lisensiya." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "May nangyaring kakaiba." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Hindi maikawing ang iyong akawnt ng Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Hindi maikawing ang iyong akawnt ng Twitter: hindi magkatugma ang " "oauth_token." -msgid "Couldn't link your Twitter account." -msgstr "Hindi maikawing ang iyong akawnt ng Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Ito ang iyong unang pagkakataon ng paglagda sa %s kaya't kailangan naming " "iugnay ang iyong akawnt ng Twitter papunta sa isang katutubong akawnt. " "Maaari kang lumikha ng isang bagong akawnt, o umugnay sa pamamagitan ng " "umiiral mong akawnt, kung mayroon ka." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Pagkakahanda ng Akawnt ng Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Mga mapagpipilian ng ugnay" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -149,35 +184,46 @@ msgstr "" "pribadong datong ito: hudyat, tirahan ng e-liham, tirahan ng IM, at numero " "ng telepono." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Lumikha ng bagong akawnt" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw." +#. TRANS: Field label. msgid "New nickname" msgstr "Bagong palayaw" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga " "patlang." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "E-liham" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "Ginagamit lamang para sa mga pagsasapanahon, mga pagpapahayag, at pagbawi ng " "hudyat" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Likhain" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Iugnay ang umiiral na akawnt" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -185,90 +231,130 @@ msgstr "" "Kung mayroon ka nang akawnt, lumagda sa pamamagitan ng iyong pangalan ng " "tagagamit at hudyat upang iugnay ito sa iyong akawnt ng Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Umiiral na palayaw" +#. TRANS: Field label. msgid "Password" msgstr "Hudyat" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Umugnay" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Hindi pinayagan ang pagpapatala." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Hindi isang tanggap na kodigo ng paanyaya." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Hindi pinayagan ang palayaw." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Ginagamit na ang palayaw. Sumubok ng iba." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "May kamalian sa pagpapatala ng tagagamit." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "May kamalian sa pag-ugnay ng tagagamit sa Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Hindi katanggap-tanggap na pangalan ng tagagamit o hudyat." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Mga katakdaan sa tulay ng Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" "Hindi katanggap-tanggap na susi ng tagaubos. Ang pinakamataas na haba ay " "255 mga panitik." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" "Hindi katanggap-tanggap na lihim ng tagaubos. Ang pinakamataas na haba ay " "255 mga panitik." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Mga katakdaan ng aplikasyong Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Susi ng tagaubos" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Susi ng tagaubos na itinalaga ng Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Lihim ng tagaubos" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Lihim ng tagaubos na itinalaga ng Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Paunawa: nakatakda ang isang pandaigdigang susi at lihim ng tagaubos." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Pinagmulan ng pagsasama" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Pangalan ng iyong aplikasyong Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Mga mapagpipilian" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Paganahin ang \"Lumagdang may Twitter\"" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "" "Pahintulutan ang mga tagagamit na lumagdang papasok sa pamamagitan ng " "kanilang mga katangian sa Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Paganahin ang pang-angkat ng Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -277,18 +363,66 @@ msgstr "" "kanilang mga kaibigang nasa Twitter. Nangangailangan ng kinakamay na " "pagsasaayos ng mga daemon." -msgid "Save Twitter settings" -msgstr "Sagipin ang mga katakdaan ng Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Mga katakdaan sa tulay ng Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Lumagda o magpatala na ginagamit ang Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Mga pagpipilian ng pagsasama ng Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Pagkakaayos ng tulay ng Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -297,15 +431,21 @@ msgstr "" "isang pagkakataon ng StatusNet sa Twitter." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Nakalagda na." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Paglagda sa Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Lumagda sa pamamagitan ng akawnt mo sa Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Lumagda sa pamamagitan ng Twitter" @@ -348,3 +488,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "Ulitin ang pag-tweet ng @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "magtakda ng isang hudyat" + +#~ msgid " first." +#~ msgstr "muna." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Hindi maikawing ang iyong akawnt ng Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Sagipin ang mga katakdaan ng Twitter" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 1740e748a0..ca8c40e03f 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Twitter ayarları" @@ -31,109 +32,143 @@ msgstr "" "Güncellemelerinizi Twitter arkadaÅŸlarınızla paylaÅŸmak ve onların sizi takip " "edebilmesi için Twitter hesabınızla baÄŸlantı kurun." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Twitter hesabı" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "BaÄŸlı Twitter hesabı" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Hesabımın Twitter baÄŸlantısını kes." -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" -msgid "set a password" -msgstr "bir parola ayarla" - -msgid " first." -msgstr " ilk." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "BaÄŸlantıyı Kes" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "Tercihler" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Durum mesajlarımı otomatik olarak Twitter'a gönder." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "" +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "ArkadaÅŸlarımın zaman çizelgesini içeri aktar." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Ekle" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "Beklenmedik form gönderimi." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "" -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Twitter kullanıcısı silinemedi." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Twitter hesabı baÄŸlantısı kesildi." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Twitter tercihleri kaydedilemedi." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "Twitter tercihleriniz kaydedildi." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. #, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "EÄŸer lisansı kabul etmezseniz kayıt olamazsınız." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "Garip bir ÅŸeyler oldu." +#. TRANS: Server error displayed when linking to a Twitter account fails. #, fuzzy msgid "Could not link your Twitter account." msgstr "Twitter hesabınızla giriÅŸ yapın" -msgid "Couldn't link your Twitter account: oauth_token mismatch." -msgstr "" +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." +msgstr "Twitter hesabınızla giriÅŸ yapın" -msgid "Couldn't link your Twitter account." -msgstr "" - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "İlk defa %s'ye giriÅŸ yaptınız, Twitter hesabınızı yerel bir hesapla " "baÄŸlamamız gerekiyor. Yeni bir hesap oluÅŸturabilir ya da varolan bir " "hesabınızı kullanabilirsiniz." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Twitter Hesap Kurulumu" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "BaÄŸlantı seçenekleri" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -142,34 +177,45 @@ msgstr "" "Parola, e-posta adresi, anlık mesajlaÅŸma adresi ve telefon numarası gibi " "özel verilerim dışındaki tüm yazı ve dosyalarım %s dahilinde kullanılabilir." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Yeni hesap oluÅŸtur" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Bu kullanıcı adıyla yeni bir kullanıcı oluÅŸtur." +#. TRANS: Field label. msgid "New nickname" msgstr "Yeni kullanıcı adı" +#. TRANS: Field title for nickname field. #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" "1-64 tane küçük harf veya rakam, noktalama iÅŸaretlerine ve boÅŸluklara izin " "verilmez" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "OluÅŸtur" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Varolan hesaba baÄŸlan" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -177,115 +223,205 @@ msgstr "" "Halihazırda bir hesabınız varsa, Twitter hesabınızla baÄŸlantı kurmak için " "kullanıcı adı ve parolanızla giriÅŸ yapın." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Varolan kullanıcı adı" +#. TRANS: Field label. msgid "Password" msgstr "Parola" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "BaÄŸlan" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "Kayıt yapılmasına izin verilmiyor." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Geçerli bir davet kodu deÄŸil." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Bu kullanıcı adına izin verilmiyor." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Kullanıcı adı halihazırda kullanılıyor. BaÅŸka bir tane deneyin." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Kullanıcı kayıt hatası." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Twitter'a kullanıcı baÄŸlama hatası." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Twitter köprü ayarları" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Kullanıcı anahtarı" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Twitter tarafından atanan kullanıcı anahtarı" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "" -msgid "Consumer secret assigned by Twitter" -msgstr "" - -msgid "Note: a global consumer key and secret are set." +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." +msgstr "Twitter tarafından atanan kullanıcı anahtarı" + +#. TRANS: Form guide displayed when two required fields have already been provided. +msgid "Note: A global consumer key and secret are set." msgstr "" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Entegrasyon kaynağı" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Twitter uygulamanızın ismi" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Seçenekler" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +msgid "This allow users to login with their Twitter credentials." msgstr "" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "" -msgid "Save Twitter settings" -msgstr "Twitter ayarlarını kaydet" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Twitter köprü ayarları" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." msgstr "" +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." +msgstr "Kullanıcı kayıt hatası." + +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Twitter entegrasyon seçenekleri" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Twitter köprü yapılandırması" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." msgstr "" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Zaten giriÅŸ yapılmış." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Twitter GiriÅŸ" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Twitter hesabınızla giriÅŸ yapın" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "" @@ -317,3 +453,12 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "" + +#~ msgid "set a password" +#~ msgstr "bir parola ayarla" + +#~ msgid " first." +#~ msgstr " ilk." + +#~ msgid "Save Twitter settings" +#~ msgstr "Twitter ayarlarını kaydet" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 08622eae51..4bb0a83759 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\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" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter" @@ -32,27 +33,30 @@ msgstr "" "Підключіть ваш акаунт Twitter, щоб ділитиÑÑ Ð½Ð¾Ð²Ð¸Ð¼Ð¸ допиÑами з друзÑми в " "Twitter Ñ– навпаки." +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Ðкаунт Twitter" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "Під’єднаний акаунт Twitter" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "Від’єднати мій акаунт від Twitter" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "" "Якщо ви від’єднаєте Ñвій Twitter, то це унеможливить вхід до ÑиÑтеми у " "майбутньому! Будь лаÑка, " -msgid "set a password" -msgstr "вÑтановіть пароль" - -msgid " first." -msgstr " Ñпочатку." - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -61,83 +65,114 @@ msgstr "" "Зберегти ваш акаунт %1$s, але від’єднати його від Twitter. Ви можете " "викориÑтовувати пароль від %1$s Ð´Ð»Ñ Ð²Ñ…Ð¾Ð´Ñƒ на Ñайт." +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "Від’єднати" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "ÐалаштуваннÑ" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "Ðвтоматично переÑилати мої допиÑи на Twitter." +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "ÐадіÑлати локальні «@» відповіді на Twitter." +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "ПідпиÑатиÑÑŒ до моїх друзів з Twitter тут." +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "Імпортувати Ñтрічку допиÑів моїх друзів." +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "Додати" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "Виникли певні проблеми з токеном ÑеÑÑ–Ñ—. Спробуйте знов, будь лаÑка." +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "ÐеÑподіване предÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ„Ð¾Ñ€Ð¼Ð¸." +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "Ðе виÑвлено з’єднань з Twitter Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ." -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "Ðе вдаєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ кориÑтувача Twitter." +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Ðкаунт Twitter від’єднано." -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "Ðе можу зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter." +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter збережено." +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. msgid "You cannot register if you do not agree to the license." msgstr "Ви не зможете зареєÑтруватиÑÑŒ, Ñкщо не погодитеÑÑŒ з умовами ліцензії." +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "СталоÑÑ Ñ‰Ð¾ÑÑŒ незрозуміле." +#. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." msgstr "Ðе вдаєтьÑÑ Ð¿Ñ€Ð¸Ð²â€™Ñзати ваш акаунт Twitter." -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Ðе вдаєтьÑÑ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ð¸ ваш акаунт Twitter: невідповідніÑть oauth_token." -msgid "Couldn't link your Twitter account." -msgstr "Ðе вдаєтьÑÑ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ð¸ ваш акаунт Twitter." - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "Ви вперше увійшли до Ñайту %s, отже ми муÑимо приєднати ваш акаунт Twitter " "до акаунту на даному Ñайті. Ви маєте можливіÑть Ñтворити новий акаунт або " "викориÑтати такий, що вже Ñ–Ñнує, Ñкщо він у Ð²Ð°Ñ Ñ”." +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð°ÐºÐ°ÑƒÐ½Ñ‚Ñƒ за допомогою Twitter" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "Опції з’єднаннÑ" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -146,33 +181,44 @@ msgstr "" "Мої допиÑи Ñ– файли доÑтупні на умовах %s, окрім цих приватних даних: пароль, " "електронна адреÑа, адреÑа IM, телефонний номер." +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "Створити новий акаунт" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "Створити нового кориÑтувача з цим нікнеймом." +#. TRANS: Field label. msgid "New nickname" msgstr "Ðовий нікнейм" +#. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1-64 Ñ€Ñдкові літери Ñ– цифри, ніÑкої пунктуації або інтервалів." +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "Пошта" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" "ВикориÑтовуєтьÑÑ Ð»Ð¸ÑˆÐµ Ð´Ð»Ñ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½ÑŒ, оголошень та Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ " "паролÑ." +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "Створити" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "Приєднати акаунт, Ñкий вже Ñ–Ñнує" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." @@ -180,85 +226,125 @@ msgstr "" "Якщо ви вже маєте акаунт, увійдіть з вашим ім’Ñм кориÑтувача та паролем, аби " "приєднати Ñ—Ñ… до Twitter." +#. TRANS: Field label. msgid "Existing nickname" msgstr "Ðікнейм, Ñкий вже Ñ–Ñнує" +#. TRANS: Field label. msgid "Password" msgstr "Пароль" +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "Під’єднати" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "РеєÑтрацію не дозволено." +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "Це не дійÑний код запрошеннÑ." +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "Ðікнейм не допуÑкаєтьÑÑ." +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже викориÑтовуєтьÑÑ. Спробуйте інший." +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "Помилка при реєÑтрації кориÑтувача." +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "Помилка при підключенні кориÑтувача до Twitter." +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "ÐедійÑне Ñ–Ð¼â€™Ñ Ð°Ð±Ð¾ пароль." +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ñ–Ñтка з Twitter" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ðевірний ключ Ñпоживача. МакÑимальна довжина — 255 Ñимволів." -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ðевірний Ñекретний код Ñпоживача. МакÑимальна довжина — 255 Ñимволів." +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÑƒ Ð´Ð»Ñ Twitter" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Ключ Ñпоживача" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Ключ Ñпоживача, що він був наданий ÑервіÑом Twitter" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Секретний код Ñпоживача" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Секретний код Ñпоживача, що він був наданий ÑервіÑом Twitter" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "Примітка: глобальний ключ Ñпоживача та Ñекретний код вÑтановлено." +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Джерело об’єднаннÑ" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "Ðазва вашого додатку Ð´Ð»Ñ Twitter" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "Параметри" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "Увімкнути «Увійти з допомогою Twitter»" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "" "Дозволити кориÑтувачам входити на Ñайт, викориÑтовуючи Ð¿Ð¾Ð²Ð½Ð¾Ð²Ð°Ð¶ÐµÐ½Ð½Ñ Twitter" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "Увімкнути імпорт з Twitter" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." @@ -266,18 +352,66 @@ msgstr "" "Дозволити кориÑтувачам імпортувати їхні Ñтрічки допиÑів з Twitter. Це " "вимагає ручної наÑтройки процеÑів типу «daemon»." -msgid "Save Twitter settings" -msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ñ–Ñтка з Twitter" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "Увійти або зареєÑтруватиÑÑŒ з Twitter" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Параметри інтеграції з Twitter" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ñ–Ñтка з Twitter" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -285,15 +419,21 @@ msgstr "" "Додаток TwitterBridge дозволÑÑ” інтегрувати StatusNet-ÑуміÑний Ñайт з Twitter, вÑтановлюючи так званий «міÑток»." +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "Тепер ви увійшли." +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Вхід Twitter" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "Увійти за допомогою акаунту Twitter" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "Увійти з акаунтом Twitter" @@ -336,3 +476,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "вÑтановіть пароль" + +#~ msgid " first." +#~ msgstr " Ñпочатку." + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Ðе вдаєтьÑÑ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ð¸ ваш акаунт Twitter." + +#~ msgid "Save Twitter settings" +#~ msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 2429ec366a..323d0cd371 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,19 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:38+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\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" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Title for page with Twitter integration settings. msgid "Twitter settings" msgstr "Twitter 设置" @@ -33,108 +34,142 @@ msgid "" msgstr "" "å…³è”ä½ çš„ Twitter å¸å·å¹¶ä¸Žä½ çš„ Twitter 好å‹åˆ†äº«ä½ çš„æ›´æ–°å’ŒæŸ¥çœ‹å¥½å‹çš„æ›´æ–°ã€‚" +#. TRANS: Fieldset legend. msgid "Twitter account" msgstr "Twitter å¸å·" +#. TRANS: Form note when a Twitter account has been connected. msgid "Connected Twitter account" msgstr "已关è”çš„ Twitter å¸å·" +#. TRANS: Fieldset legend. msgid "Disconnect my account from Twitter" msgstr "å–æ¶ˆæˆ‘çš„å¸å·ä¸Ž Twitter 的关è”" -msgid "Disconnecting your Twitter could make it impossible to log in! Please " +#. TRANS: Form guide. %s is a URL to the password settings. +#. TRANS: This message contains a Markdown link in the form [description](link). +#, fuzzy, php-format +msgid "" +"Disconnecting your Twitter account could make it impossible to log in! " +"Please [set a password](%s) first." msgstr "å–æ¶ˆå…³è”ä½ çš„ Twitter å¸å·å’Œèƒ½ä¼šå¯¼è‡´æ— æ³•登录ï¼è¯·" -msgid "set a password" -msgstr "设置一个密ç " - -msgid " first." -msgstr "先。" - -#. TRANS: %1$s is the current website name. +#. TRANS: Form instructions. %s is a URL to the password settings. +#. TRANS: %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "ä¿ç•™ä½ çš„ %1$s å¸å·å¹¶å–æ¶ˆå…³è” Twitter。你å¯ä»¥ä½¿ç”¨ä½ çš„ %1$s å¯†ç æ¥ç™»å½•。" +#. TRANS: Button text for disconnecting a Twitter account. +#, fuzzy +msgctxt "BUTTON" msgid "Disconnect" msgstr "å–æ¶ˆå…³è”" +#. TRANS: Fieldset legend. msgid "Preferences" msgstr "傿•°è®¾ç½®" +#. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." msgstr "自动将我的消æ¯å‘é€åˆ° Twitter。" +#. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." msgstr "将本地的“@â€å›žå¤å‘é€åˆ° Twitter。" +#. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." msgstr "关注我在这里的 Twitter 好å‹ã€‚" +#. TRANS: Checkbox label. msgid "Import my friends timeline." msgstr "导入我好å‹çš„æ—¶é—´çº¿ã€‚" +#. TRANS: Button text for saving Twitter integration settings. +#. TRANS: Button text for saving the administrative Twitter bridge settings. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "ä¿å­˜" +#. TRANS: Button text for adding Twitter integration. +#, fuzzy +msgctxt "BUTTON" msgid "Add" msgstr "添加" +#. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." msgstr "ä½ çš„ session token 出现了一个问题,请é‡è¯•。" +#. TRANS: Client error displayed when the submitted form contains unexpected data. msgid "Unexpected form submission." msgstr "æœªé¢„æ–™çš„è¡¨å•æäº¤ã€‚" +#. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. msgid "No Twitter connection to remove." msgstr "没有å¯ä»¥ç§»é™¤çš„Twitter连接。" -msgid "Couldn't remove Twitter user." +#. TRANS: Server error displayed when trying to remove a connected Twitter account fails. +#, fuzzy +msgid "Could not remove Twitter user." msgstr "无法删除 Twitter 用户。" +#. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "已喿¶ˆ Twitter å¸å·å…³è”。" -msgid "Couldn't save Twitter preferences." +#. TRANS: Server error displayed when saving Twitter integration preferences fails. +#, fuzzy +msgid "Could not save Twitter preferences." msgstr "无法ä¿å­˜ Twitter 傿•°è®¾ç½®ã€‚" +#. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." msgstr "å·²ä¿å­˜ Twitter 傿•°è®¾ç½®ã€‚" +#. TRANS: Form validation error displayed when the checkbox to agree to the license has not been checked. #, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "ä½ å¿…é¡»åŒæ„许å¯åè®®æ‰èƒ½æ³¨å†Œã€‚" +#. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." msgstr "å‘生了很诡异的事情。" +#. TRANS: Server error displayed when linking to a Twitter account fails. #, fuzzy msgid "Could not link your Twitter account." msgstr "无法连接你的 Twitter å¸å·ã€‚" -msgid "Couldn't link your Twitter account: oauth_token mismatch." +#. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. +#, fuzzy +msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "无法连接你的 Twitter å¸å·ï¼šoauth_token ä¸ç¬¦ã€‚" -msgid "Couldn't link your Twitter account." -msgstr "无法连接你的 Twitter å¸å·ã€‚" - -#, php-format +#. TRANS: Page instruction. %s is the StatusNet sitename. +#, fuzzy, php-format msgid "" -"This is the first time you've logged into %s so we must connect your Twitter " -"account to a local account. You can either create a new account, or connect " -"with your existing account, if you have one." +"This is the first time you have logged into %s so we must connect your " +"Twitter account to a local account. You can either create a new account, or " +"connect with your existing account, if you have one." msgstr "" "这是你第一次登录到 %s,我们需è¦å°†ä½ çš„ Twitter å¸å·ä¸Žä¸€ä¸ªæœ¬åœ°çš„å¸å·å…³è”。你å¯" "以新建一个å¸å·ï¼Œæˆ–者使用你在本站已有的å¸å·ã€‚" +#. TRANS: Page title. msgid "Twitter Account Setup" msgstr "Twitter å¸å·è®¾ç½®" +#. TRANS: Fieldset legend. msgid "Connection options" msgstr "连接选项" +#. TRANS: Text for license agreement checkbox. +#. TRANS: %s is the license as configured for the StatusNet site. #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -143,132 +178,231 @@ msgstr "" "我的文字和文件在%s下æä¾›ï¼Œé™¤äº†å¦‚下éšç§å†…容:密ç ã€ç”µå­é‚®ä»¶åœ°å€ã€IM 地å€å’Œç”µè¯" "å·ç ã€‚" +#. TRANS: Fieldset legend. msgid "Create new account" msgstr "åˆ›å»ºæ–°å¸æˆ·" +#. TRANS: Sub form introduction text. msgid "Create a new user with this nickname." msgstr "ä»¥æ­¤æ˜µç§°åˆ›å»ºæ–°å¸æˆ·" +#. TRANS: Field label. msgid "New nickname" msgstr "新昵称" +#. TRANS: Field title for nickname field. #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "1 到 64 个å°å†™å­—æ¯æˆ–数字,ä¸åŒ…嫿 ‡ç‚¹æˆ–空格" +#. TRANS: Field label. msgctxt "LABEL" msgid "Email" msgstr "" +#. TRANS: Field title for e-mail address field. msgid "Used only for updates, announcements, and password recovery" msgstr "" +#. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. +#, fuzzy +msgctxt "BUTTON" msgid "Create" msgstr "创建" +#. TRANS: Fieldset legend. msgid "Connect existing account" msgstr "å…³è”现有账å·" +#. TRANS: Sub form introduction text. msgid "" "If you already have an account, login with your username and password to " "connect it to your Twitter account." msgstr "如果你已有å¸å·ï¼Œè¯·è¾“入用户å和密ç ç™»å½•并将其与你的 Twitter è´¦å·å…³è”。" +#. TRANS: Field label. msgid "Existing nickname" msgstr "已存在的昵称" +#. TRANS: Field label. msgid "Password" msgstr "密ç " +#. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. +#, fuzzy +msgctxt "BUTTON" msgid "Connect" msgstr "å…³è”" +#. TRANS: Client error displayed when trying to create a new user while creating new users is not allowed. msgid "Registration not allowed." msgstr "ä¸å…许注册。" +#. TRANS: Client error displayed when trying to create a new user with an invalid invitation code. msgid "Not a valid invitation code." msgstr "无效的邀请ç ã€‚" +#. TRANS: Client error displayed when trying to create a new user with an invalid username. msgid "Nickname not allowed." msgstr "昵称ä¸è¢«å…许。" +#. TRANS: Client error displayed when trying to create a new user with a username that is already in use. msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,æ¢ä¸€ä¸ªå§ã€‚" +#. TRANS: Server error displayed when creating a new user has failed. msgid "Error registering user." msgstr "注册用户出错。" +#. TRANS: Server error displayed when connecting a user to a Twitter user has failed. +#. TRANS: Server error displayed connecting a user to a Twitter user has failed. msgid "Error connecting user to Twitter." msgstr "å…³è”用户到 Twitter 出错。" +#. TRANS: Form validation error displayed when connecting an existing user to a Twitter user fails because +#. TRANS: the provided username and/or password are incorrect. msgid "Invalid username or password." msgstr "ç”¨æˆ·åæˆ–密ç ä¸æ­£ç¡®ã€‚" +#. TRANS: Page title for Twitter administration panel. +#, fuzzy +msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" +#. TRANS: Instructions for Twitter bridge administration page. msgid "Twitter bridge settings" msgstr "Twitter bridge 设置" -msgid "Invalid consumer key. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer key is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "无效的 consumer key。最大长度为 255 字符。" -msgid "Invalid consumer secret. Max length is 255 characters." +#. TRANS: Client error displayed when a consumer secret is invalid because it is too long. +#, fuzzy +msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "无效的 consumer secret。最大长度为 255 字符。" +#. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" msgstr "Twitter 应用设置" +#. TRANS: Field label for Twitter assigned consumer key. msgid "Consumer key" msgstr "Consumer key" -msgid "Consumer key assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer key. +#, fuzzy +msgid "The consumer key assigned by Twitter." msgstr "Twitter 分é…çš„ consumer key" +#. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Consumer secret" -msgid "Consumer secret assigned by Twitter" +#. TRANS: Field title for Twitter assigned consumer secret. +#, fuzzy +msgid "The consumer secret assigned by Twitter." msgstr "Twitter 分é…çš„ consumer secret" -msgid "Note: a global consumer key and secret are set." +#. TRANS: Form guide displayed when two required fields have already been provided. +#, fuzzy +msgid "Note: A global consumer key and secret are set." msgstr "注æ„:已设置了一个全局的 consumer key å’Œ secret。" +#. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "æ•´åˆæ¥æº" -msgid "Name of your Twitter application" +#. TRANS: Field title for Twitter application name. +#, fuzzy +msgid "The name of your Twitter application." msgstr "ä½ çš„ Twitter 应用åç§°" +#. TRANS: Fieldset legend for Twitter integration options. msgid "Options" msgstr "选项" +#. TRANS: Checkbox label for global setting. msgid "Enable \"Sign-in with Twitter\"" msgstr "å¯ç”¨ “使用 Twitter 登录â€" -msgid "Allow users to login with their Twitter credentials" +#. TRANS: Checkbox title. +#, fuzzy +msgid "This allow users to login with their Twitter credentials." msgstr "å…许用户使用他们的 Twitter å¸å·ç™»å½•。" +#. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" msgstr "å¯ç”¨ Twitter 导入" +#. TRANS: Checkbox title for global setting. msgid "" "Allow users to import their Twitter friends' timelines. Requires daemons to " "be manually configured." msgstr "å…许用户导入他们 Twitter 好å‹çš„æ—¶é—´çº¿ã€‚éœ€è¦æ‰‹åŠ¨è®¾ç½®åŽå°è¿›ç¨‹ã€‚" -msgid "Save Twitter settings" -msgstr "ä¿å­˜ Twitter 设置" +#. TRANS: Button title for saving the administrative Twitter bridge settings. +#, fuzzy +msgid "Save the Twitter bridge settings." +msgstr "Twitter bridge 设置" -msgid "Login or register using Twitter" +#. TRANS: Server exception thrown when an invalid URL scheme is detected. +msgid "Invalid URL scheme for HTTP stream reader." +msgstr "" + +#. TRANS: Exception thrown when input from an inexpected socket is encountered. +msgid "Got input from unexpected socket!" +msgstr "" + +#. TRANS: Exception thrown when an invalid state is encountered in handleLine. +#. TRANS: %s is the invalid state. +#, php-format +msgid "Invalid state in handleLine: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line is encountered. +#. TRANS: %s is the invalid line. +#, php-format +msgid "Invalid HTTP response line: %s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response line part is encountered. +#. TRANS: %1$s is the chunk, %2$s is the line. +#, php-format +msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." +msgstr "" + +#. TRANS: Exception thrown when an invalid response code is encountered. +#. TRANS: %1$s is the response code, %2$s is the line. +#, php-format +msgid "Bad HTTP response code %1$s: %2$s." +msgstr "" + +#. TRANS: Menu item in login navigation. +#. TRANS: Menu item in connection settings navigation. +#, fuzzy +msgctxt "MENU" +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Title for menu item in login navigation. +#, fuzzy +msgid "Login or register using Twitter." msgstr "使用 Twitter 登录或注册" +#. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Twitter æ•´åˆé€‰é¡¹" +msgid "Twitter" +msgstr "Twitter" + msgid "Twitter bridge configuration" msgstr "Twitter bridge 设置" +#. TRANS: Plugin description. msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." @@ -276,15 +410,21 @@ msgstr "" "Twitter \"bridge\" 是个å¯ä»¥è®© StatusNet 账户与 Twitter æ•´åˆçš„æ’ä»¶ã€‚" +#. TRANS: Client error displayed when trying to log in using Twitter while already logged in to StatusNet. msgid "Already logged in." msgstr "已登录。" +#. TRANS: Title for login using Twitter page. +#, fuzzy +msgctxt "TITLE" msgid "Twitter Login" msgstr "Twitter 登录" +#. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" msgstr "使用你的 Twitter å¸å·ç™»å½•" +#. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" msgstr "使用 Twitter 登录" @@ -325,3 +465,15 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" + +#~ msgid "set a password" +#~ msgstr "设置一个密ç " + +#~ msgid " first." +#~ msgstr "先。" + +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "无法连接你的 Twitter å¸å·ã€‚" + +#~ msgid "Save Twitter settings" +#~ msgstr "ä¿å­˜ Twitter 设置" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 1d26c64681..bb538a35c9 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,6 +50,7 @@ msgstr "" msgid "Clear" msgstr "" +#. TRANS: Form description for clearing flags from a profile. #: clearflagform.php:88 msgid "Clear all flags" msgstr "" @@ -59,24 +60,25 @@ msgstr "" msgid "Not logged in." msgstr "" -#: adminprofileflag.php:89 +#. TRANS: Error message displayed when trying to review profile flags while not authorised. +#: adminprofileflag.php:90 msgid "You cannot review profile flags." msgstr "" #. TRANS: Title for page with a list of profiles that were flagged for review. -#: adminprofileflag.php:126 +#: adminprofileflag.php:127 msgid "Flagged profiles" msgstr "" #. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). -#: adminprofileflag.php:243 +#: adminprofileflag.php:244 msgid "Moderate" msgstr "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. -#: adminprofileflag.php:389 +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. +#: adminprofileflag.php:390 #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -85,15 +87,16 @@ msgstr[1] "" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. -#: adminprofileflag.php:393 +#: adminprofileflag.php:394 #, php-format msgid "Flagged by %s" msgstr "" #. TRANS: Server exception given when flags could not be cleared. +#. TRANS: %s is a profile nickname. #: clearflag.php:105 #, php-format -msgid "Couldn't clear flags for profile \"%s\"." +msgid "Could not clear flags for profile \"%s\"." msgstr "" #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -107,7 +110,8 @@ msgid "Cleared" msgstr "" #. TRANS: Server exception. -#: User_flag_profile.php:160 +#. TRANS: %d is a profile ID (number). +#: User_flag_profile.php:161 #, php-format -msgid "Couldn't flag profile \"%d\" for review." +msgid "Could not flag profile \"%d\" for review." msgstr "" diff --git a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po index 5549c9c49f..8b74948fcb 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:57+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "" msgid "Clear" msgstr "امسح" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "امسح كل الأعلام" @@ -57,6 +58,7 @@ msgstr "امسح كل الأعلام" msgid "Not logged in." msgstr "لست والجًا." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "" @@ -70,7 +72,7 @@ msgstr "راقب" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -88,8 +90,9 @@ msgid "Flagged by %s" msgstr "" #. TRANS: Server exception given when flags could not be cleared. +#. TRANS: %s is a profile nickname. #, php-format -msgid "Couldn't clear flags for profile \"%s\"." +msgid "Could not clear flags for profile \"%s\"." msgstr "" #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -101,6 +104,7 @@ msgid "Cleared" msgstr "" #. TRANS: Server exception. +#. TRANS: %d is a profile ID (number). #, php-format -msgid "Couldn't flag profile \"%d\" for review." +msgid "Could not flag profile \"%d\" for review." msgstr "" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 7b370cb143..111ba578e7 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:57+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Senyala el perfil per revisar." msgid "Clear" msgstr "Esborra" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Esborra tots els senyals" @@ -57,6 +58,7 @@ msgstr "Esborra tots els senyals" msgid "Not logged in." msgstr "" +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "" @@ -70,7 +72,7 @@ msgstr "Modera" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Senyalat per %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "No s'han pogut esborrar els senyals del perfil «%s»." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -97,6 +100,7 @@ msgid "Cleared" msgstr "S'ha esborrat" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "No s'ha pogut senyalar el perfil «%d» per revisar." diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index 8cd153ecd9..4e9f14b169 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -51,6 +51,7 @@ msgstr "Profil zur Überprüfung markieren." msgid "Clear" msgstr "Löschen" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Alle Markierungen löschen" @@ -58,6 +59,7 @@ msgstr "Alle Markierungen löschen" msgid "Not logged in." msgstr "Nicht angemeldet." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Du kannst die Profilflags nicht überprüfen." @@ -71,7 +73,7 @@ msgstr "Moderieren" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -85,8 +87,9 @@ msgid "Flagged by %s" msgstr "Durch %s markiert" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Konnte Markierung für Profil \"%s\" nicht entfernen." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -98,6 +101,7 @@ msgid "Cleared" msgstr "Gelöscht" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Konnte Profil „%d“ nicht zur Überprüfung flaggen." diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 77d68a73be..80f9d1cc0c 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Marquer le profil pour vérification." msgid "Clear" msgstr "Effacer" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Effacer tous les marquages" @@ -57,6 +58,7 @@ msgstr "Effacer tous les marquages" msgid "Not logged in." msgstr "Non connecté." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Vous ne pouvez pas examiner les drapeaux de profil." @@ -70,7 +72,7 @@ msgstr "Modérer" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Marqué par %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Impossible de supprimer les marquages pour le profil « %s »." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -97,6 +100,7 @@ msgid "Cleared" msgstr "Effacé" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Impossible de marquer le profil « %d » pour vérification." diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index c7e9cb296e..af4f730991 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -49,6 +49,7 @@ msgstr "Marcar profilo pro revision." msgid "Clear" msgstr "Rader" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Rader tote le marcas" @@ -56,6 +57,7 @@ msgstr "Rader tote le marcas" msgid "Not logged in." msgstr "Tu non ha aperite un session." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Tu non pote revider marcationes de profilo." @@ -69,7 +71,7 @@ msgstr "Moderar" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -83,8 +85,9 @@ msgid "Flagged by %s" msgstr "Marcate per %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Non poteva rader marcas pro profilo \"%s\"." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -96,6 +99,7 @@ msgid "Cleared" msgstr "Radite" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Non poteva marcar profilo \"%d\" pro revision." diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 6506c54aea..940188b86a 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Означи профил за преглед." msgid "Clear" msgstr "ОтÑтрани" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "ОтÑтрани ги Ñите ознаки" @@ -57,6 +58,7 @@ msgstr "ОтÑтрани ги Ñите ознаки" msgid "Not logged in." msgstr "Ðе Ñте најавени." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Ðе можете да прегледувате профилни знаменца." @@ -70,7 +72,7 @@ msgstr "Модерирај" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Означено од %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Ðе можев да ги отÑтранам ознаките за профилот „%s“." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -97,6 +100,7 @@ msgid "Cleared" msgstr "ОтÑтрането" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Ðе можев да го означам профилот „%d“ за преглед." diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 6c52727a0e..96d1a2ee9a 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Profiel voor controle markeren" msgid "Clear" msgstr "Wissen" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Alle markeringen wissen" @@ -57,6 +58,7 @@ msgstr "Alle markeringen wissen" msgid "Not logged in." msgstr "Niet aangemeld." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "U kunt gemarkeerde profielen niet controleren." @@ -70,7 +72,7 @@ msgstr "Modereren" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Gemarkeerd door %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "" "Het was niet mogelijk de markeringen van het profiel \"%s\" te verwijderen." @@ -98,6 +101,7 @@ msgid "Cleared" msgstr "Verwijderd" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Het was niet mogelijk het profiel \"%d\" voor controle te markeren." diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 8b7fca67bb..0d9826ff9f 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Sinalizar perfil para análise." msgid "Clear" msgstr "Limpar" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Limpar todas as sinalizações" @@ -57,6 +58,7 @@ msgstr "Limpar todas as sinalizações" msgid "Not logged in." msgstr "" +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "" @@ -70,7 +72,7 @@ msgstr "Moderar" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Sinalizado por %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Não foi possível limpar as sinalizações do perfil \"%s\"." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -97,6 +100,7 @@ msgid "Cleared" msgstr "Limpas" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Não foi possível sinalizar o perfil \"%d\" para análise." diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 85a7981ccd..9a3185dbf6 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -51,6 +51,7 @@ msgstr "Профиль помечен Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра" msgid "Clear" msgstr "ОчиÑтить" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "ОчиÑтить вÑе флаги" @@ -58,6 +59,7 @@ msgstr "ОчиÑтить вÑе флаги" msgid "Not logged in." msgstr "" +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "" @@ -71,7 +73,7 @@ msgstr "Модерировать" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -86,8 +88,9 @@ msgid "Flagged by %s" msgstr "Отмечено %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Ðе Ñнимать отметки Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ %s" #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -99,6 +102,7 @@ msgid "Cleared" msgstr "СнÑто" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Ðевозможно отметить профиль %d Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра." diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index b425ca4bdc..ed0ac50ae4 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:40+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -50,6 +50,7 @@ msgstr "Balangkas ng watawat na susuriing muli." msgid "Clear" msgstr "Hawiin" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "Hawiin ang lahat ng mga watawat" @@ -57,6 +58,7 @@ msgstr "Hawiin ang lahat ng mga watawat" msgid "Not logged in." msgstr "Hindi nakalagda." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Hindi ka maaaring magsuring muli ng mga watawat ng balangkas." @@ -70,7 +72,7 @@ msgstr "Katamtaman" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -84,8 +86,9 @@ msgid "Flagged by %s" msgstr "Iwinatawat ni %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Hindi mahawi ang mga watawat para sa balangkas na \"%s\"." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -97,7 +100,8 @@ msgid "Cleared" msgstr "Nahawi na" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "" "Hindi maiwatawat ang watawat ng balangkas na \"%d\" para sa muling pagsusuri." diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index 39638a8761..db85975d36 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 09:58:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -51,6 +51,7 @@ msgstr "Відмітити профіль Ð´Ð»Ñ Ñ€Ð¾Ð·Ð³Ð»Ñду." msgid "Clear" msgstr "ЗнÑти" +#. TRANS: Form description for clearing flags from a profile. msgid "Clear all flags" msgstr "ЗнÑти вÑÑ– позначки" @@ -58,6 +59,7 @@ msgstr "ЗнÑти вÑÑ– позначки" msgid "Not logged in." msgstr "Ðе увійшли." +#. TRANS: Error message displayed when trying to review profile flags while not authorised. msgid "You cannot review profile flags." msgstr "Ви не можете переглÑнути профілі позначених кориÑтувачів." @@ -71,7 +73,7 @@ msgstr "Модерувати" #. TRANS: Message displayed on a profile if it has been flagged. #. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. -#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for plural. #, php-format msgid "Flagged by %1$s and %2$d other" msgid_plural "Flagged by %1$s and %2$d others" @@ -86,8 +88,9 @@ msgid "Flagged by %s" msgstr "Відмічено %s" #. TRANS: Server exception given when flags could not be cleared. -#, php-format -msgid "Couldn't clear flags for profile \"%s\"." +#. TRANS: %s is a profile nickname. +#, fuzzy, php-format +msgid "Could not clear flags for profile \"%s\"." msgstr "Ðе можу знÑти позначки Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»ÑŽ «%s»." #. TRANS: Title for AJAX form to indicated that flags were removed. @@ -99,6 +102,7 @@ msgid "Cleared" msgstr "ЗнÑто" #. TRANS: Server exception. -#, php-format -msgid "Couldn't flag profile \"%d\" for review." +#. TRANS: %d is a profile ID (number). +#, fuzzy, php-format +msgid "Could not flag profile \"%d\" for review." msgstr "Ðе вдалоÑÑ Ð²Ñ–Ð´Ð¼Ñ–Ñ‚Ð¸Ñ‚Ð¸ профіль «%d» Ð´Ð»Ñ Ñ€Ð¾Ð·Ð³Ð»Ñду." diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index e99e011838..cb96213933 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,19 +8,29 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: UserLimitPlugin.php:75 +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#: UserLimitPlugin.php:74 #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" -#: UserLimitPlugin.php:90 +#. TRANS: Plugin description. +#: UserLimitPlugin.php:92 msgid "Limit the number of users who can register." msgstr "" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index 544e235245..789fc06972 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Bevenniñ an niver a implijerien a c'hall en em enskrivañ" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 802a2a76d5..c4c46d7194 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -10,22 +10,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Registrierung fehlgeschlagen; maximale Anzahl von Benutzern (%d) erreicht." +msgstr[1] "" "Registrierung fehlgeschlagen; maximale Anzahl von Benutzern (%d) erreicht." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Beschränkung der Anzahl von Benutzern, die sich registrieren können." diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 0878bcc4f8..e2eeacb37f 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limitarla cantidad de usuarios que pueden registrarse." diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index b14c30a00c..ffe81ec542 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,21 +9,29 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "محدودکردن تعداد کاربرانی Ú©Ù‡ می‌توانید ثبت نام کنند." diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index 40a7d2e1bb..dbd898e3b4 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Rajoita niiden käyttäjien lukumäärää, jotka voivat rekisteröityä." diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index a1c29136e3..716b3adf13 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -10,23 +10,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Impossible de s’enregistrer ; le nombre maximum d’utilisateurs (%d) a été " +"atteint." +msgstr[1] "" "Impossible de s’enregistrer ; le nombre maximum d’utilisateurs (%d) a été " "atteint." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limiter le nombre d’utilisateurs qui peuvent s’inscrire." diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index d556135bbd..fef3baac5c 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limitar o número de usuarios que se poden rexistrar." diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 83f707c8b3..26da217ce4 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "הגבלת מספר ×”×ž×©×ª×ž×©×™× ×©×™×›×•×œ×™× ×œ×”×™×¨×©×." diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 7a28ca125f..2604970351 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,23 +9,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Impossibile crear conto; le numero maxime de usatores (%d) ha essite " +"attingite." +msgstr[1] "" "Impossibile crear conto; le numero maxime de usatores (%d) ha essite " "attingite." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limitar le numero de usatores que pote registrar se." diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 8fdbfbb9e2..91900b49a9 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,21 +9,29 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Batasi jumlah pengguna yang boleh mendaftar." diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 1515bbb5ae..ca2606fc83 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:41+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "D'Zuel vun de Benotzer, déi sech registréiere kënnen, limitéieren." diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index e5f0c0f85f..fd66904d41 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,22 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " "0) ? 1 : 2 );\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Ierobežotais lietotÄju skaits, kuri var reÄ£istrÄ“ties." diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index dae6d34d6c..cf01fa4524 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,23 +9,34 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"РегиÑтрацијата не може да Ñе изврши. ДоÑтигнат е макÑималниот број на " +"кориÑници (%d)." +msgstr[1] "" "РегиÑтрацијата не може да Ñе изврши. ДоÑтигнат е макÑималниот број на " "кориÑници (%d)." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Ограничување на бројот на кориÑници што можат да Ñе региÑтрираат." diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index 2564c358c6..a02ce33202 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,21 +9,29 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "Tidak boleh berdaftar; bilangan pengguna maksimum (%d) dicapai." +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "Tidak boleh berdaftar; bilangan pengguna maksimum (%d) dicapai." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Hadkan jumlah pengguna yang boleh berdaftar." diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 33a48e828d..914c65d1e4 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Begrens antallet brukere som kan registrere seg." diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 34e0a81ee9..4f2013291a 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,22 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Registreren is niet mogelijk. Het maximale aantal gebruikers (%d) is bereikt." +msgstr[1] "" "Registreren is niet mogelijk. Het maximale aantal gebruikers (%d) is bereikt." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limiteert het aantal gebruikers dat kan registreren." diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 648ef94113..82ad582441 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,21 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limitar o número de utilizadores que se podem registar." diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index bcef30af97..3deaa935ed 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,22 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +msgstr[1] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Limitar o número de usuários que podem se registrar." diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index 8310f3a981..71fb015b2f 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,24 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userlimit\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" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ðµ удалаÑÑŒ. ДоÑтигнуто предельное чиÑло пользователей (%d)." +msgstr[1] "" +"РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ðµ удалаÑÑŒ. ДоÑтигнуто предельное чиÑло пользователей (%d)." +msgstr[2] "" "РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ðµ удалаÑÑŒ. ДоÑтигнуто предельное чиÑло пользователей (%d)." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "" "Ограничение количеÑтва пользователей, которые могут зарегиÑтрироватьÑÑ." diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index da544d5d7b..76db34be48 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,22 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Hindi maipatala; naabot na ang pinakamataas na bilang ng mga tagagamit (%d)." +msgstr[1] "" "Hindi maipatala; naabot na ang pinakamataas na bilang ng mga tagagamit (%d)." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Hangganan ng bilang ng mga tagagamit na makakapagpatala." diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index e3f76f1b10..55e3096001 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,21 +9,29 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). #, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "Kayıt olabilecek kullanıcı sayısını sınırla." diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index a7f9692940..ef8ff0ce2c 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,24 +9,38 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:42+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\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" -#, php-format -msgid "Cannot register; maximum number of users (%d) reached." -msgstr "" +#. TRANS: Error message given if creating a new user is not possible because a limit has been reached. +#. TRANS: %d is the user limit (also available for plural). +#, fuzzy, php-format +msgid "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgid_plural "" +"Cannot register because the maximum number of users (%d) for this site was " +"reached." +msgstr[0] "" +"Ðе вдаєтьÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати; макÑимально можливу кількіÑть кориÑтувачів (%d) " +"вже зареєÑтровано." +msgstr[1] "" +"Ðе вдаєтьÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати; макÑимально можливу кількіÑть кориÑтувачів (%d) " +"вже зареєÑтровано." +msgstr[2] "" "Ðе вдаєтьÑÑ Ð·Ð°Ñ€ÐµÑ”Ñтрувати; макÑимально можливу кількіÑть кориÑтувачів (%d) " "вже зареєÑтровано." +#. TRANS: Plugin description. msgid "Limit the number of users who can register." msgstr "ÐžÐ±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÑ–Ð»ÑŒÐºÐ¾Ñті кориÑтувачів, котрі можуть зареєÑтруватиÑÑ." diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 8810031aaa..88873064be 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,25 +16,37 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: WikiHashtagsPlugin.php:84 +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. +#: WikiHashtagsPlugin.php:83 #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "" +#. TRANS: Link description for editing an article on WikiHashTags. #: WikiHashtagsPlugin.php:85 msgid "Edit" msgstr "" -#: WikiHashtagsPlugin.php:87 +#. TRANS: Link title for viewing the GFDL. +#: WikiHashtagsPlugin.php:88 msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" -#: WikiHashtagsPlugin.php:93 +#. TRANS: Link description for viewing the GFDL. +#: WikiHashtagsPlugin.php:91 +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. +#: WikiHashtagsPlugin.php:97 #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "" -#: WikiHashtagsPlugin.php:110 +#. TRANS: Plugin description. +#: WikiHashtagsPlugin.php:115 msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index efebc6562d..b9638c96ec 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -10,33 +10,44 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Bearbeite den Artikel für #%s auf WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Bearbeiten" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" "Veröffentlicht unter den Bedingungen der GNU Free Documentation License" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Beginnne den Artikel über #%s auf WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po index 7df5bc30db..eb7018b591 100644 --- a/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/fr/LC_MESSAGES/WikiHashtags.po @@ -10,32 +10,43 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Modifier" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 88cc08adda..afcd48a08f 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,33 +9,44 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Modificar le articulo pro #%s in WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Modificar" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" "Diffundite sub le conditiones del Licentia GNU pro Documentation Libere" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Crear le articulo pro #%s in WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index cd7c934f4c..c871fb137c 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,34 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Уредете ја Ñтатијата за #%s на WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Уреди" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" "Споделувањето подлежи на уÑловите на ГÐУ-овата лиценца за Ñлободна " "документација" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Започнете ја Ñтатијата за #%s на WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index 00527e4e41..98c50f77f8 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,32 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Sunting rencana untuk #%s di WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Sunting" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "Dikongsikan di bawah terma-terma Lesen Dokumentasi Bebas GNU" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Cipta rencana untuk #%s di WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 43d4c07ed4..50295402f8 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,32 +9,43 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Het artikel voor #%s op WikiHashtags bewerken" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Bewerken" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "Gedeeld onder de voorwaarden van de GNU Free Documentation License" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Het artikel voor #%s op WikiHashtags aanmaken" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index db724ecfd8..dd65f50c21 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,34 +9,45 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Baguhin ang artikulo para sa #%s na nasa WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Baguhin" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "" "Ibinabahagi sa ilalim ng mga pagsasaad ng Lisensiya ng Malayang " "Dokumentasyon ng GNU" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Simulan ang artikulo para sa #%s na nasa WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 34aa561940..24ce0c0318 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,33 +9,44 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:43+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\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" +#. TRANS: Link title for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be edited. #, php-format msgid "Edit the article for #%s on WikiHashtags" msgstr "Редагувати Ñтаттю про #%s на WikiHashtags" +#. TRANS: Link description for editing an article on WikiHashTags. msgid "Edit" msgstr "Змінити" +#. TRANS: Link title for viewing the GFDL. msgid "Shared under the terms of the GNU Free Documentation License" msgstr "РозміщуєтьÑÑ Ð½Ð° умовах GNU Free Documentation License" +#. TRANS: Link description for viewing the GFDL. +msgid "GNU FDL" +msgstr "" + +#. TRANS: Link description for editing an article on WikiHashTags. +#. TRANS: %s is the hash tag page to be created. #, php-format msgid "Start the article for #%s on WikiHashtags" msgstr "Почати нову Ñтаттю про #%s на WikiHashtags" +#. TRANS: Plugin description. msgid "" "Gets hashtag descriptions from WikiHashtags." diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index 58da19ab95..1800f77f60 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,18 +16,33 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: WikiHowProfilePlugin.php:59 +#. TRANS: Plugin description. +#: WikiHowProfilePlugin.php:60 msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." msgstr "" -#: WikiHowProfilePlugin.php:171 +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +#: WikiHowProfilePlugin.php:126 +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +#: WikiHowProfilePlugin.php:143 +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. +#: WikiHowProfilePlugin.php:176 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: WikiHowProfilePlugin.php:179 +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. +#: WikiHowProfilePlugin.php:186 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" diff --git a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po index 6c723c53f7..d63d7a56e3 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Holt Avatar- und andere Profilinformationen für WikiHow-Benutzer beim " "Aufsetzen eines Kontos über OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ungültige Avatar-URL %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Kann Avatar nicht von %s holen." diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index d57a3a1752..4fd0239761 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Récupère l’avatar et les autres informations de profil des utilisateurs " "WikiHow lorsqu’ils créent un compte via OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Adresse URL d’avatar « %s » invalide." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Impossible de récupérer l’avatar depuis « %s »." diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index 8630d258eb..e0e0943fe0 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Obtene le avatar e altere informationes de profilo pro usatores de WikiHow " "durante le creation de un conto via OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "URL de avatar %s invalide." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Incapace de obtener avatar ab %s." diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 99f7a95e44..785afa8e25 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Презема аватар и други профилни податоци за кориÑници на WikiHow при " "Ñоздавање на Ñметка преку OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ðеважечка URL-адреÑа на аватарот: %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Ðе можев да го преземам аватарот од %s." diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index d514606f2b..c758b938f9 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Mengambil avatar dan maklumat profil yang lain untuk pengguna WikiHow " "apabila membuka akaun melalui OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "URL avatar %s tidak sah." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Avatar tidak dapat diambil dari %s." diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index a8ee2cee70..4c3a390784 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Haalt avatar- en andere gegevens op voor WikiHow-gebruikers die een " "gebruiker aanmaken via OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ongeldige avatar-URL %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Het was niet mogelijk om de avatar op te halen van %s." diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index cc4ad64445..7820f88149 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\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" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -29,10 +30,22 @@ msgstr "" "Запрашивает аватару и прочую информацию из Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ WikiHow при " "Ñоздании учётной запиÑи Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ðеверный URL-Ð°Ð´Ñ€ÐµÑ Ð°Ð²Ð°Ñ‚Ð°Ñ€Ñ‹ %s" +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Ðе удаётÑÑ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ аватару из %s." diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 25bb6c3099..74637f3718 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "Dumarampot ng abatar at ibang kabatiran ng balangkas para sa mga tagagamit " "ng WikiHow kapag nagtatalaga ng isang akawnt sa pamamagitan ng OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Hindi tanggap na URL ng abatar ang %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Hindi nagawang damputin ang huwaran mula sa %s." diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index d6b487a645..c9207bf2f7 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -28,10 +29,22 @@ msgstr "" "OpenID aracılığıyla hesap oluÅŸturan WikiHow kullanıcıları için kullanıcı " "resimlerini ve diÄŸer profil bilgilerini alır." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Geçersiz kullanıcı resmi baÄŸlantısı %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "%s'ten kullanıcı resmi alınamıyor." diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index c778e66f4c..c4c7d74b99 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\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" +#. TRANS: Plugin description. msgid "" "Fetches avatar and other profile information for WikiHow users when setting " "up an account via OpenID." @@ -29,10 +30,22 @@ msgstr "" "Запитує аватар та іншу Ñупутню інформацію з WikiHow Ð´Ð»Ñ ÐºÐ¾Ñ€Ð¸Ñтувачів, котрі " "Ñтворюють акаунти через OpenID." +#. TRANS: Exception thrown when fetching a WikiHow profile page fails. +msgid "WikiHow profile page fetch failed." +msgstr "" + +#. TRANS: Exception thrown when parsing a WikiHow profile page fails. +msgid "HTML parse failure during check for WikiHow avatar." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ðевірна URL-адреÑа аватари %s." +#. TRANS: Exception thrown when fetching an avatar from a URL fails. +#. TRANS: %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Ðеможливо завантажити аватару з %s." diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index 19fc950565..2e1897084e 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: XCachePlugin.php:120 +#. TRANS: Plugin description. +#: XCachePlugin.php:117 msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po index b381d33d2c..d67c78772e 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index a6869064ec..a64d32264d 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index ab978ebbf8..15f1ccb877 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index 59648a06f1..86a132b134 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index c80b3222bc..012139d819 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index 8feb446403..2fd965a343 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 8927e26532..c1d3b24e0d 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:44+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 611e885b0e..2d4f87966a 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index e8d6ef62fc..3010789bad 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 5823fd2ab1..3f87b2cdb3 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index 92fc31e83c..b9f8c0cc5b 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index a9cdd37b39..ac80f7f8e5 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 424a31275c..f45ca4b45d 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 2a94842766..fa4987bf13 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 2c80617d53..caf67a47f1 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index ee8ec3d6b7..d155007b1d 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index 38683cdfe9..e110590427 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\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" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 0e69d251ef..21de10ee5d 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 9c14059a61..7bedf41f95 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 3b299d1c65..2b025315a3 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:45+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:55+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\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" +#. TRANS: Plugin description. msgid "" "Use the XCache variable cache to " "cache query results." diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index b6196fe83c..ceb9c8df10 100644 --- a/plugins/Xmpp/locale/Xmpp.pot +++ b/plugins/Xmpp/locale/Xmpp.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,21 +16,87 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: xmppmanager.php:168 xmppmanager.php:207 +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. +#: xmppmanager.php:167 xmppmanager.php:207 msgid "Send me a message to post a notice" msgstr "" +#. TRANS: Plugin display name. #: XmppPlugin.php:62 msgid "XMPP/Jabber/GTalk" msgstr "" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +#: XmppPlugin.php:123 +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +#: XmppPlugin.php:132 +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +#: XmppPlugin.php:140 +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#: XmppPlugin.php:145 +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +#: XmppPlugin.php:151 +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#: XmppPlugin.php:156 +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#: XmppPlugin.php:167 +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. -#: XmppPlugin.php:359 +#: XmppPlugin.php:368 #, php-format msgid "[%s]" msgstr "" -#: XmppPlugin.php:430 +#. TRANS: Exception thrown when the plugin configuration is incorrect. +#: XmppPlugin.php:406 +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +#: XmppPlugin.php:410 +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +#: XmppPlugin.php:414 +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +#: XmppPlugin.php:418 +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. +#: XmppPlugin.php:444 msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ca/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ca/LC_MESSAGES/Xmpp.po index c6167c8feb..91b05993d4 100644 --- a/plugins/Xmpp/locale/ca/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ca/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Envia'm un missatge per a publicar un avís" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po index c24fa9bda7..b1f7b91e37 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -10,29 +10,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Sende mir eine Nachricht, um eine Nachricht zu erstellen" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/fr/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/fr/LC_MESSAGES/Xmpp.po index bde5f99e2c..f89a37b182 100644 --- a/plugins/Xmpp/locale/fr/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/fr/LC_MESSAGES/Xmpp.po @@ -10,29 +10,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "M’envoyer un message pour afficher un avis." +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index ed67e53c3d..3589da9e53 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Inviar me un message pro publicar un nota" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 543aa258b1..ba564844d3 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "ИÑпрати ми порака за да објавам забелешка" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po index d29131c2ac..5c2a1d04b6 100644 --- a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Hantarkan pesanan kepada saya untuk mengirim notis" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index a3f46720f0..ee05b1994a 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Mij een bericht sturen om een mededeling te verzenden" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/Google Talk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po index 6daa9b63dc..69568f4e29 100644 --- a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Envia-me uma mensagem para postar uma notícia" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po index 6d3972ac72..f1006df471 100644 --- a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po index 0973a17526..992cd4d8ea 100644 --- a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po @@ -9,29 +9,84 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Padalhan ako ng isang mensahe upang makapagpaskil ng isang pabatid" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po index ee9907731c..2bbf330f68 100644 --- a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po @@ -9,30 +9,85 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:46+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:46:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\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" +#. TRANS: Presence announcement for XMPP. +#. TRANS: Message for XMPP reconnect. msgid "Send me a message to post a notice" msgstr "Ðадішліть мені повідомленнÑ, щоб опублікувати допиÑ" +#. TRANS: Plugin display name. msgid "XMPP/Jabber/GTalk" msgstr "XMPP/Jabber/GTalk" +#. TRANS: Exception thrown when using too many @ signs in a Jabber ID. +msgid "Invalid JID: too many @s." +msgstr "" + +#. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. +msgid "Invalid JID: @ but no node" +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber ID (>1023). +msgid "Invalid JID: node too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber ID. +#. TRANS: %s is the invalid Jabber ID. +#, php-format +msgid "Invalid JID node \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using too long a Jabber domain (>1023). +msgid "Invalid JID: domain too long." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber domain name. +#. TRANS: %s is the invalid domain name. +#, php-format +msgid "Invalid JID domain name \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when using an invalid Jabber resource. +#. TRANS: %s is the invalid resource. +#, php-format +msgid "Invalid JID resource \"%s\"." +msgstr "" + +#. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. #, php-format msgid "[%s]" msgstr "[%s]" +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a server in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a port in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a user in the configuration." +msgstr "" + +#. TRANS: Exception thrown when the plugin configuration is incorrect. +msgid "You must specify a password in the configuration." +msgstr "" + +#. TRANS: Plugin description. msgid "" "The XMPP plugin allows users to send and receive notices over the XMPP/" "Jabber network." diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 406ecdc49f..ecdb108a05 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index c931b99687..da754cdd52 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:49+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index 34a4b4e02d..0bb00432b3 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 3c450167a8..246faa2ae8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 6afe55062c..f5126b42cd 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 1d9d10bd03..cb6143dca0 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 361da4ceb9..58faeb18f2 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po index e70aa60934..debf016f74 100644 --- a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index dad8349629..57402fb8de 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index 6ba5b5cf82..d192c0c029 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index f5c4206570..5388f6b4da 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 12a2be1d51..597a413d91 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:08+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 7f25d810bc..c1bf18f014 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 18:54+0000\n" -"PO-Revision-Date: 2011-06-05 18:57:50+0000\n" +"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"PO-Revision-Date: 2011-06-18 15:58:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-27 13:31:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89517); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From 47d0c198e1d4fd66871cd340734e7540f8daf898 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:11:12 +0200 Subject: [PATCH 05/31] Fix typo in comment. --- actions/all.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/all.php b/actions/all.php index 2e53691636..3deaea52f9 100644 --- a/actions/all.php +++ b/actions/all.php @@ -145,7 +145,7 @@ class AllAction extends ProfileAction $message .= sprintf(_('You can try to [nudge %1$s](../%2$s) from their profile or [post something to them](%%%%action.newnotice%%%%?status_textarea=%3$s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); } } else { - // TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. + // TRANS: Encouragement displayed on empty timeline user pages for anonymous users. // TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to them.'), $this->user->nickname); } From 36e07218e983193f758858cea95545f87b6f2351 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:15:31 +0200 Subject: [PATCH 06/31] Remove double tag in comment. --- actions/editpeopletag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/editpeopletag.php b/actions/editpeopletag.php index 00d1fc3a77..b2dedc890f 100644 --- a/actions/editpeopletag.php +++ b/actions/editpeopletag.php @@ -293,7 +293,7 @@ class EditpeopletagAction extends Action if (!$result) { common_log_db_error($this->group, 'UPDATE', __FILE__); - // TRANS: TRANS: Server error displayed when updating a list fails. + // TRANS: Server error displayed when updating a list fails. $this->serverError(_('Could not update list.')); } From c2ab4af804c1b40e7c68ce46e689686fa846ce5a Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:30:35 +0200 Subject: [PATCH 07/31] Fix incorrect tag (missing colon). --- lib/messageform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/messageform.php b/lib/messageform.php index 80e7716cda..acd30e3b38 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -141,7 +141,7 @@ class MessageForm extends Form unset($mutual_users); if (count($mutual) == 1) { - // TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. + // TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. $mutual[0] = _('No mutual subscribers.'); } From 26a92b28014685ba477888a27a49195b8e077b75 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:45:37 +0200 Subject: [PATCH 08/31] Hopefully fix TRANS message not getting picked up by xgettext. --- lib/pluginlist.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pluginlist.php b/lib/pluginlist.php index 0bd1a15355..51c02aa245 100644 --- a/lib/pluginlist.php +++ b/lib/pluginlist.php @@ -192,8 +192,7 @@ class PluginListItem extends Widget } else { return array('name' => $this->plugin, // TRANS: Plugin description for a disabled plugin. - 'rawdescription' => _m('plugin-description', - '(Plugin descriptions unavailable when disabled.)')); + 'rawdescription' => _m('plugin-description','(The plugin description is unavailable when a plugin has been disabled.)')); } } From a0c80bb478b0efd505467ab20356a98aab74cf60 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:49:33 +0200 Subject: [PATCH 09/31] Use _() instead of _m() as there is no context or plural. --- scripts/update_ostatus_profiles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_ostatus_profiles.php b/scripts/update_ostatus_profiles.php index 0d56423f58..bca136bbbc 100644 --- a/scripts/update_ostatus_profiles.php +++ b/scripts/update_ostatus_profiles.php @@ -133,7 +133,7 @@ class LooseOstatusProfile extends Ostatus_profile if (!$response->isOk()) { // TRANS: Exception. %s is a profile URL. - throw new Exception(sprintf(_m('Could not reach profile page %s.'),$profile_url)); + throw new Exception(sprintf(_('Could not reach profile page %s.'),$profile_url)); } // Check if we have a non-canonical URL From 9272fcd3ab240b4242fdad75254be7f4ca641374 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 11:54:10 +0200 Subject: [PATCH 10/31] Add translator documentation. --- plugins/TabFocus/TabFocusPlugin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/TabFocus/TabFocusPlugin.php b/plugins/TabFocus/TabFocusPlugin.php index 1b1d1c2b0a..58f3d06b11 100644 --- a/plugins/TabFocus/TabFocusPlugin.php +++ b/plugins/TabFocus/TabFocusPlugin.php @@ -51,6 +51,7 @@ class TabFocusPlugin extends Plugin 'author' => 'Craig Andrews and Paul Irish', 'homepage' => 'http://status.net/wiki/Plugin:TabFocus', 'rawdescription' => + // TRANS: Plugin description. _m('TabFocus changes the notice form behavior so that, while in the text area, pressing the tab key focuses the "Send" button, matching the behavior of Twitter.')); return true; } From 46d9df2f8a864898ab49b8ca32b58066a390dcb6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 12:07:59 +0200 Subject: [PATCH 11/31] Update translator documentation. Remove superfluous whitespace. --- .../SubscriptionThrottlePlugin.php | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php index e898ce9ae0..829219af20 100644 --- a/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php +++ b/plugins/SubscriptionThrottle/SubscriptionThrottlePlugin.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class SubscriptionThrottlePlugin extends Plugin { public $subLimits = array(86400 => 100, @@ -61,7 +60,6 @@ class SubscriptionThrottlePlugin extends Plugin * * @return boolean hook value */ - function onStartSubscribe($user, $other) { foreach ($this->subLimits as $seconds => $limit) { @@ -71,7 +69,8 @@ class SubscriptionThrottlePlugin extends Plugin $subtime = strtotime($sub->created); $now = time(); if ($now - $subtime < $seconds) { - throw new Exception(_m("Too many subscriptions. Take a break and try again later.")); + // TRANS: Exception thrown when subscribing too quickly. + throw new Exception(_m('Too many subscriptions. Take a break and try again later.')); } } } @@ -87,7 +86,6 @@ class SubscriptionThrottlePlugin extends Plugin * * @return boolean hook value */ - function onStartJoinGroup($group, $user) { foreach ($this->groupLimits as $seconds => $limit) { @@ -97,7 +95,8 @@ class SubscriptionThrottlePlugin extends Plugin $jointime = strtotime($mem->created); $now = time(); if ($now - $jointime < $seconds) { - throw new Exception(_m("Too many memberships. Take a break and try again later.")); + // TRANS: Exception thrown when joing groups too quickly. + throw new Exception(_m('Too many memberships. Take a break and try again later.')); } } } @@ -113,7 +112,6 @@ class SubscriptionThrottlePlugin extends Plugin * * @return Subscription a subscription or null */ - private function _getNthSub($user, $n) { $sub = new Subscription(); @@ -137,7 +135,6 @@ class SubscriptionThrottlePlugin extends Plugin * * @return Group_member a membership or null */ - private function _getNthMem($user, $n) { $mem = new Group_member(); @@ -160,7 +157,6 @@ class SubscriptionThrottlePlugin extends Plugin * * @return boolean hook value */ - function onPluginVersion(&$versions) { $versions[] = array('name' => 'SubscriptionThrottle', @@ -168,8 +164,8 @@ class SubscriptionThrottlePlugin extends Plugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:SubscriptionThrottle', 'rawdescription' => + // TRANS: Plugin description. _m('Configurable limits for subscriptions and group memberships.')); return true; } } - From 46546ce985a2409fe2ca5874c7d3bfbd6d7615b1 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 12:12:47 +0200 Subject: [PATCH 12/31] Add translator documentation. --- actions/newapplication.php | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/newapplication.php b/actions/newapplication.php index 7c0a6551b2..23525ef321 100644 --- a/actions/newapplication.php +++ b/actions/newapplication.php @@ -295,6 +295,7 @@ class NewApplicationAction extends Action $app->uploadLogo(); } catch (Exception $e) { $app->query('ROLLBACK'); + // TRANS: Form validation error messages displayed when uploading an invalid application logo. $this->showForm(_('Invalid image.')); return; } From 2f3bec5a43e6a1d2b2b1910fd63fa484dd7c7318 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 12:21:12 +0200 Subject: [PATCH 13/31] Fix i18n issues. Cannot use a PHP variable in a gettext messages. Needs to be replaced. Whitespace updates. --- .../EmailReminder/lib/userinvitereminderhandler.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/plugins/EmailReminder/lib/userinvitereminderhandler.php b/plugins/EmailReminder/lib/userinvitereminderhandler.php index c4acecc62f..5e5c672641 100644 --- a/plugins/EmailReminder/lib/userinvitereminderhandler.php +++ b/plugins/EmailReminder/lib/userinvitereminderhandler.php @@ -25,6 +25,7 @@ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ + if (!defined('STATUSNET')) { exit(1); } @@ -69,7 +70,7 @@ class UserInviteReminderHandler extends UserReminderHandler { { $invDate = strtotime($invitation->created); $now = strtotime('now'); - + // Days since first invitation was sent $days = ($now - $invDate) / 86499; // 60*60*24 = 86499 @@ -79,7 +80,8 @@ class UserInviteReminderHandler extends UserReminderHandler { case ($days > 1 && $days < 2): if (Email_reminder::needsReminder(self::INVITE_REMINDER, $invitation, 1)) { common_log(LOG_INFO, "Sending one day invitation reminder to {$invitation->address}", __FILE__); - $subject = _m("Reminder - You have been invited to join {$siteName}!"); + // TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. + $subject = sprintf(_m('Reminder - You have been invited to join %s!'),$siteName); return EmailReminderPlugin::sendReminder( self::INVITE_REMINDER, $invitation, @@ -92,7 +94,8 @@ class UserInviteReminderHandler extends UserReminderHandler { case ($days > 3 && $days < 4): if (Email_reminder::needsReminder(self::INVITE_REMINDER, $invitation, 3)) { common_log(LOG_INFO, "Sending three day invitation reminder to {$invitation->address}", __FILE__); - $subject = _m("Final reminder - you have been invited to join {$siteName}!"); + // TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. + $subject = sprintf(_m('Final reminder - you have been invited to join %s!'),$siteName); return EmailReminderPlugin::sendReminder( self::INVITE_REMINDER, $invitation, @@ -102,9 +105,8 @@ class UserInviteReminderHandler extends UserReminderHandler { } else { return true; } - break; + break; } return true; } - } From 10600579e0e582f90cdc7bfd81cac88181697106 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 12:23:14 +0200 Subject: [PATCH 14/31] Update translator documentation. Whitespace updates. --- plugins/EmailReminder/EmailReminderPlugin.php | 2 +- plugins/EmailReminder/classes/Email_reminder.php | 2 +- .../lib/userconfirmregreminderhandler.php | 12 +++++++----- plugins/EmailReminder/lib/userreminderhandler.php | 3 +-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/plugins/EmailReminder/EmailReminderPlugin.php b/plugins/EmailReminder/EmailReminderPlugin.php index 0bb10921b0..b2fc02d2e8 100644 --- a/plugins/EmailReminder/EmailReminderPlugin.php +++ b/plugins/EmailReminder/EmailReminderPlugin.php @@ -201,9 +201,9 @@ class EmailReminderPlugin extends Plugin 'version' => STATUSNET_VERSION, 'author' => 'Zach Copley', 'homepage' => 'http://status.net/wiki/Plugin:EmailReminder', + // TRANS: Plugin description. 'rawdescription' => _m('Send email reminders for various things.') ); return true; } - } diff --git a/plugins/EmailReminder/classes/Email_reminder.php b/plugins/EmailReminder/classes/Email_reminder.php index 2a82e6c4d8..c462e726aa 100644 --- a/plugins/EmailReminder/classes/Email_reminder.php +++ b/plugins/EmailReminder/classes/Email_reminder.php @@ -48,7 +48,6 @@ class Email_reminder extends Managed_DataObject * @param mixed $v Value to lookup * * @return QnA_Answer object found, or null for no hits - * */ function staticGet($k, $v=null) { @@ -97,6 +96,7 @@ class Email_reminder extends Managed_DataObject if (empty($result)) { common_log_db_error($reminder, 'INSERT', __FILE__); throw new ServerException( + // TRANS: Server exception thrown when a reminder record could not be inserted into the database. _m('Database error inserting reminder record.') ); } diff --git a/plugins/EmailReminder/lib/userconfirmregreminderhandler.php b/plugins/EmailReminder/lib/userconfirmregreminderhandler.php index 5f1bbd62d9..eda93a33d5 100644 --- a/plugins/EmailReminder/lib/userconfirmregreminderhandler.php +++ b/plugins/EmailReminder/lib/userconfirmregreminderhandler.php @@ -1,5 +1,4 @@ 1 && $days < 2): if (Email_reminder::needsReminder(self::REGISTER_REMINDER, $confirm, 1)) { common_log(LOG_INFO, "Sending one day registration confirmation reminder to {$confirm->address}", __FILE__); - $subject = _m("Reminder - please confirm your registration!"); + // TRANS: Subject for reminder e-mail. + $subject = _m('Reminder - please confirm your registration!'); return EmailReminderPlugin::sendReminder( self::REGISTER_REMINDER, $confirm, @@ -94,7 +95,8 @@ class UserConfirmRegReminderHandler extends UserReminderHandler { case ($days > 3 && $days < 4): if (Email_reminder::needsReminder(self::REGISTER_REMINDER, $confirm, 3)) { common_log(LOG_INFO, "Sending three day registration confirmation reminder to {$confirm->address}", __FILE__); - $subject = _m("Second reminder - please confirm your registration!"); + // TRANS: Subject for reminder e-mail. + $subject = _m('Second reminder - please confirm your registration!'); return EmailReminderPlugin::sendReminder( self::REGISTER_REMINDER, $confirm, @@ -108,7 +110,8 @@ class UserConfirmRegReminderHandler extends UserReminderHandler { case ($days > 7 && $days < 8): if (Email_reminder::needsReminder(self::REGISTER_REMINDER, $confirm, 7)) { common_log(LOG_INFO, "Sending one week registration confirmation reminder to {$confirm->address}", __FILE__); - $subject = _m("Final reminder - please confirm your registration!"); + // TRANS: Subject for reminder e-mail. + $subject = _m('Final reminder - please confirm your registration!'); return EmailReminderPlugin::sendReminder( self::REGISTER_REMINDER, $confirm, @@ -122,5 +125,4 @@ class UserConfirmRegReminderHandler extends UserReminderHandler { } return true; } - } diff --git a/plugins/EmailReminder/lib/userreminderhandler.php b/plugins/EmailReminder/lib/userreminderhandler.php index 22f498762b..e9d38a00a7 100644 --- a/plugins/EmailReminder/lib/userreminderhandler.php +++ b/plugins/EmailReminder/lib/userreminderhandler.php @@ -1,5 +1,4 @@ Date: Sun, 19 Jun 2011 12:31:36 +0200 Subject: [PATCH 15/31] Add missing translator documentation. --- plugins/TwitterBridge/TwitterBridgePlugin.php | 4 +++- plugins/TwitterBridge/twittersettings.php | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index 754dabd780..6ac742f22f 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -303,8 +303,10 @@ class TwitterBridgePlugin extends Plugin $nav->out->menuItem( common_local_url('twitteradminpanel'), + // TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. _m('Twitter'), - _m('Twitter bridge configuration'), + // TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. + _m('Twitter bridge configuration page.'), $action_name == 'twitteradminpanel', 'nav_twitter_admin_panel' ); diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index 4264d2c4ca..d972203e9c 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -66,6 +66,7 @@ class TwittersettingsAction extends ProfileSettingsAction function getInstructions() { + // TRANS: Instructions for page with Twitter integration settings. return _m('Connect your Twitter account to share your updates ' . 'with your Twitter friends and vice-versa.'); } From 42b28547d563fe455a102df0d05aca7a59ca6651 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 13:20:34 +0200 Subject: [PATCH 16/31] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 212 +----- locale/bg/LC_MESSAGES/statusnet.po | 189 +----- locale/br/LC_MESSAGES/statusnet.po | 201 +----- locale/ca/LC_MESSAGES/statusnet.po | 226 +------ locale/cs/LC_MESSAGES/statusnet.po | 224 +------ locale/de/LC_MESSAGES/statusnet.po | 233 +------ locale/en_GB/LC_MESSAGES/statusnet.po | 207 +----- locale/eo/LC_MESSAGES/statusnet.po | 229 +------ locale/es/LC_MESSAGES/statusnet.po | 225 +------ locale/eu/LC_MESSAGES/statusnet.po | 628 +++++++----------- locale/fa/LC_MESSAGES/statusnet.po | 222 +------ locale/fi/LC_MESSAGES/statusnet.po | 205 +----- locale/fr/LC_MESSAGES/statusnet.po | 231 +------ locale/fur/LC_MESSAGES/statusnet.po | 144 +--- locale/gl/LC_MESSAGES/statusnet.po | 236 +------ locale/he/LC_MESSAGES/statusnet.po | 107 +-- locale/hsb/LC_MESSAGES/statusnet.po | 210 +----- locale/hu/LC_MESSAGES/statusnet.po | 199 +----- locale/ia/LC_MESSAGES/statusnet.po | 229 +------ locale/it/LC_MESSAGES/statusnet.po | 230 +------ locale/ja/LC_MESSAGES/statusnet.po | 217 +----- locale/ka/LC_MESSAGES/statusnet.po | 221 +----- locale/ko/LC_MESSAGES/statusnet.po | 223 +------ locale/mk/LC_MESSAGES/statusnet.po | 262 +------- locale/ml/LC_MESSAGES/statusnet.po | 193 +----- locale/nb/LC_MESSAGES/statusnet.po | 236 +------ locale/nl/LC_MESSAGES/statusnet.po | 260 +------- locale/pl/LC_MESSAGES/statusnet.po | 228 +------ locale/pt/LC_MESSAGES/statusnet.po | 221 +----- locale/pt_BR/LC_MESSAGES/statusnet.po | 230 +------ locale/ru/LC_MESSAGES/statusnet.po | 227 +------ locale/statusnet.pot | 17 +- locale/sv/LC_MESSAGES/statusnet.po | 226 +------ locale/te/LC_MESSAGES/statusnet.po | 203 +----- locale/tl/LC_MESSAGES/statusnet.po | 231 +------ locale/uk/LC_MESSAGES/statusnet.po | 229 +------ locale/zh_CN/LC_MESSAGES/statusnet.po | 217 +----- .../de/LC_MESSAGES/EmailRegistration.po | 14 +- .../hu/LC_MESSAGES/EmailRegistration.po | 20 +- .../ia/LC_MESSAGES/EmailRegistration.po | 14 +- .../mk/LC_MESSAGES/EmailRegistration.po | 14 +- .../nl/LC_MESSAGES/EmailRegistration.po | 14 +- .../tl/LC_MESSAGES/EmailRegistration.po | 14 +- .../uk/LC_MESSAGES/EmailRegistration.po | 14 +- .../EmailReminder/locale/EmailReminder.pot | 27 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 52 ++ .../locale/nl/LC_MESSAGES/EmailReminder.po | 54 ++ .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 13 +- .../OpenID/locale/mk/LC_MESSAGES/OpenID.po | 16 +- .../OpenID/locale/nl/LC_MESSAGES/OpenID.po | 16 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 10 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 28 + .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 26 + .../locale/de/LC_MESSAGES/SubMirror.po | 11 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 11 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 11 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 20 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 18 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 11 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 11 +- .../locale/SubscriptionThrottle.pot | 11 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 9 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 9 +- plugins/TabFocus/locale/TabFocus.pot | 5 +- .../locale/br/LC_MESSAGES/TabFocus.po | 7 +- .../locale/de/LC_MESSAGES/TabFocus.po | 7 +- .../locale/es/LC_MESSAGES/TabFocus.po | 7 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 7 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/he/LC_MESSAGES/TabFocus.po | 7 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 7 +- .../locale/id/LC_MESSAGES/TabFocus.po | 7 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 7 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 7 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 7 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 7 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 22 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 20 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 10 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 10 +- .../TwitterBridge/locale/TwitterBridge.pot | 55 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 86 +-- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 23 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 76 +-- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 23 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 26 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 12 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 12 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 18 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 10 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 12 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 12 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 30 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 30 +- 114 files changed, 1374 insertions(+), 8194 deletions(-) create mode 100644 plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po create mode 100644 plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po create mode 100644 plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index a27b0eaf9b..47382fa802 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:56:59+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:34+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -296,7 +296,7 @@ msgstr "" "يمكن أن تحاول [تنبيه %1$s](../%2$s) من ملÙÙ‡ الشخصي أو [مراسلته عن أمر ما](%%%" "%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2086,7 +2086,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "تعذّر تحديث المستخدم." @@ -3129,6 +3129,7 @@ msgstr "مصدر عنوان الرابط ليس صحيحا." msgid "Could not create application." msgstr "لم يمكن إنشاء التطبيق." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "صورة غير صالحة." @@ -5414,7 +5415,6 @@ msgstr "" "Ù†ÙØ³Ù‡Ø§ مجددًا" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "الشعار" @@ -8634,7 +8634,7 @@ msgstr "أرسل إشعارًا مباشرًا" msgid "Select recipient:" msgstr "اختر وسمًا لترشيحه" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "غير مشترك!" @@ -9106,8 +9106,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9897,195 +9899,3 @@ msgstr "ليس عنوان بريد صالح." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "لم يمكن Ø­ÙØ¸ الملÙ." - -#~ msgid "Unable to save your design settings." -#~ msgstr "تعذّر Ø­ÙØ¸ إعدادات تصميمك." - -#~ msgid "Could not update your design." -#~ msgstr "تعذّر تحديث تصميمك." - -#~ msgid "Design" -#~ msgstr "التصميم" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "إعدادات تصميم موقع ستاسنت هذا" - -#~ msgid "Theme not available: %s." -#~ msgstr "السمة غير Ù…ØªÙˆÙØ±Ø©: %s" - -#~ msgid "Change logo" -#~ msgstr "غيّر الشعار" - -#~ msgid "Change theme" -#~ msgstr "غيّر السمة" - -#~ msgid "Site theme" -#~ msgstr "سمة الموقع" - -#~ msgid "Theme for the site." -#~ msgstr "سمة الموقع." - -#~ msgid "Custom theme" -#~ msgstr "سمة مخصصة" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "يمكنك Ø±ÙØ¹ سمة ستاتس نت على هيأة أرشي٠.ZIP." - -#~ msgid "Change background image" -#~ msgstr "تغيير صورة الخلÙية" - -#~ msgid "Background" -#~ msgstr "الخلÙية" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "بإمكانك Ø±ÙØ¹ صورة خلÙية للموقع. أقصى حجم للمل٠هو %1$s." - -#~ msgid "On" -#~ msgstr "مكّن" - -#~ msgid "Off" -#~ msgstr "عطّل" - -#~ msgid "Turn background image on or off." -#~ msgstr "مكّن صورة الخلÙية أو عطّلها." - -#~ msgid "Tile background image" -#~ msgstr "كرّر صورة الخلÙية" - -#~ msgid "Change colors" -#~ msgstr "غيّر الألوان" - -#~ msgid "Content" -#~ msgstr "المحتوى" - -#~ msgid "Sidebar" -#~ msgstr "الشريط الجانبي" - -#~ msgid "Text" -#~ msgstr "النص" - -#~ msgid "Links" -#~ msgstr "وصلات" - -#~ msgid "Advanced" -#~ msgstr "متقدم" - -#~ msgid "Custom CSS" -#~ msgstr "CSS مخصصة" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "استخدم المبدئية" - -#~ msgid "Restore default designs." -#~ msgstr "استعد التصاميم المبدئية." - -#~ msgid "Reset back to default." -#~ msgstr "ارجع إلى المبدئيات." - -#~ msgid "Save design." -#~ msgstr "Ø§Ø­ÙØ¸ التصميم." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "يجب أن تلج Ù„ØªÙØ¹Ø¯Ù‘Ù„ المجموعات." - -#~ msgid "Group design" -#~ msgstr "تصميم المجموعة" - -#, fuzzy -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." - -#~ msgid "Unable to update your design settings." -#~ msgstr "!تعذّر تحديث إعدادات تصميمك." - -#~ msgid "Design preferences saved." -#~ msgstr "Ø­ÙÙØ¸Øª ØªÙØ¶ÙŠÙ„ات التصميم." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "لا ترسل رسالة إلى Ù†ÙØ³ÙƒØŒ قلها Ù„Ù†ÙØ³Ùƒ ÙÙŠ سرك بدلًا من ذلك." - -#~ msgid "Backgrounds" -#~ msgstr "الخلÙيات" - -#~ msgid "Server for backgrounds." -#~ msgstr "خادوم الخلÙيات." - -#~ msgid "Web path to backgrounds." -#~ msgstr "مسار الشبكة للصور الخلÙية." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "الدليل الذي Ùيه الخلÙيات." - -#~ msgid "Profile design" -#~ msgstr "تصميم المل٠الشخصي" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "خصّص أسلوب عرض ملÙÙƒ بصورة خلÙية ومخطط ألوان من اختيارك." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "استمتع بالنقانق!" - -#~ msgid "Design settings" -#~ msgstr "إعدادات التصميم" - -#~ msgid "View profile designs" -#~ msgstr "اعرض تصاميم المل٠الشخصي" - -#~ msgid "Show or hide profile designs." -#~ msgstr "أظهر أو أخÙ٠تصاميم Ø§Ù„Ù…Ù„ÙØ§Øª الشخصية." - -#~ msgid "Background file" -#~ msgstr "مل٠الخلÙية" - -#~ msgid "Unable to delete design setting." -#~ msgstr "تعذّر حذ٠إعدادات التصميم." - -#~ msgid "Design configuration" -#~ msgstr "ضبط التصميم" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "التصميم" - -#~ msgid "Change design" -#~ msgstr "غيّر التصميم" - -#~ msgid "Change colours" -#~ msgstr "تغيير الألوان" - -#~ msgid "Use defaults" -#~ msgstr "استخدم المبدئيات" - -#~ msgid "Upload file" -#~ msgstr "Ø§Ø±ÙØ¹ ملÙًا" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "تستطيع Ø±ÙØ¹ صورتك الشخصية. أقصى حجم للمل٠هو 2 Ù….ب." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "مكّن" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "عطّل" - -#~ msgid "Design defaults restored." -#~ msgstr "استعيدت مبدئيات التصميم." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "أض٠تصميما Ù„%s أو عدله" - -#~ msgid "Design your profile" -#~ msgstr "صمّم ملÙÙƒ الشخصي" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 7b3196068f..fa2bcb5a98 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:01+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:36+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -290,7 +290,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2128,7 +2128,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Грешка при обновÑване на потребителÑ." @@ -3202,6 +3202,7 @@ msgstr "Името е задължително." msgid "Could not create application." msgstr "Грешка при отбелÑзване като любима." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Ðеправилен размер." @@ -5545,7 +5546,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Изход" @@ -8767,7 +8767,7 @@ msgstr "Изпращане на прÑко Ñъобщеие" msgid "Select recipient:" msgstr "Изберете оператор" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Ðе Ñте абонирани!" @@ -9230,8 +9230,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10012,172 +10014,3 @@ msgstr "Ðеправилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Грешка при запазване на профила." - -#, fuzzy -#~ msgid "Unable to save your design settings." -#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#, fuzzy -#~ msgid "Could not update your design." -#~ msgstr "Грешка при обновÑване на потребителÑ." - -#~ msgid "Design" -#~ msgstr "Дизайн" - -#, fuzzy -#~ msgid "Theme not available: %s." -#~ msgstr "Страницата не е доÑтъпна във вида медиÑ, който приемате" - -#~ msgid "Change logo" -#~ msgstr "СмÑна на логото" - -#, fuzzy -#~ msgid "Change theme" -#~ msgstr "ПромÑна" - -#~ msgid "Site theme" -#~ msgstr "Път до Ñайта" - -#, fuzzy -#~ msgid "Theme for the site." -#~ msgstr "Излизане от Ñайта" - -#, fuzzy -#~ msgid "Custom theme" -#~ msgstr "Ðова бележка" - -#~ msgid "Change background image" -#~ msgstr "СмÑна на изображението за фон" - -#~ msgid "Background" -#~ msgstr "Фон" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Можете да качите лично изображение за фон. МакÑималната големина на файла " -#~ "е 2MB." - -#~ msgid "On" -#~ msgstr "Вкл." - -#~ msgid "Off" -#~ msgstr "Изкл." - -#, fuzzy -#~ msgid "Turn background image on or off." -#~ msgstr "СмÑна на изображението за фон" - -#, fuzzy -#~ msgid "Tile background image" -#~ msgstr "СмÑна на изображението за фон" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "СмÑна на цветовете" - -#~ msgid "Content" -#~ msgstr "Съдържание" - -#~ msgid "Sidebar" -#~ msgstr "Страничен панел" - -#~ msgid "Text" -#~ msgstr "ТекÑÑ‚" - -#~ msgid "Links" -#~ msgstr "Лиценз" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Запазване наÑтройките на Ñайта" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "За да редактирате група, трÑбва да Ñте влезли." - -#, fuzzy -#~ msgid "Group design" -#~ msgstr "Групи" - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#~ msgid "Design preferences saved." -#~ msgstr "ÐаÑтройките на е-поща Ñа запазени." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Ðе може да изпращате ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ Ñебе Ñи. По-добре Ñи го кажете на Ñебе " -#~ "Ñи тихичко." - -#~ msgid "Backgrounds" -#~ msgstr "Фонове" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Излизане от Ñайта" - -#, fuzzy -#~ msgid "Profile design" -#~ msgstr "ÐаÑтройки на профила" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Запазване наÑтройките на Ñайта" - -#~ msgid "View profile designs" -#~ msgstr "Редактиране на профила" - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Фон" - -#, fuzzy -#~ msgid "Unable to delete design setting." -#~ msgstr "Грешка при запиÑване наÑтройките за Twitter" - -#~ msgid "Design configuration" -#~ msgstr "ÐаÑтройка на оформлението" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "ВерÑиÑ" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Запазване наÑтройките на Ñайта" - -#~ msgid "Change colours" -#~ msgstr "СмÑна на цветовете" - -#~ msgid "Upload file" -#~ msgstr "Качване на файл" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Можете да качите лично изображение за фон. МакÑималната големина на файла " -#~ "е 2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Вкл." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Изкл." - -#, fuzzy -#~ msgid "Design your profile" -#~ msgstr "ПотребителÑки профил" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 025319189a..a31998c304 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:03+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -296,7 +296,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2108,7 +2108,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Dibosupl hizivaat an implijer." @@ -3166,6 +3166,7 @@ msgstr "Ezhomm 'zo eus ar vammenn URL." msgid "Could not create application." msgstr "N'eo ket posubl krouiñ ar poellad." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Ment direizh." @@ -5535,7 +5536,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8709,7 +8709,7 @@ msgstr "Kas ur gemennadenn war-eeun" msgid "Select recipient:" msgstr "Dibab un aotre-implijout" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Nann-koumanantet !" @@ -9169,8 +9169,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Gweredekaat" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9917,184 +9919,3 @@ msgstr "N'eo ket ur chomlec'h postel reizh." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Dibosupl eo enrollañ ar profil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." - -#~ msgid "Could not update your design." -#~ msgstr "Dibosupl eo hizivaat ho design." - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Theme not available: %s." -#~ msgstr "N'eus ket eus ar gaoz-se : %s." - -#~ msgid "Change logo" -#~ msgstr "Cheñch al logo" - -#~ msgid "Change theme" -#~ msgstr "Lakaat un dodenn all" - -#~ msgid "Site theme" -#~ msgstr "Dodenn al lec'hienn" - -#~ msgid "Theme for the site." -#~ msgstr "Dodenn evit al lec'hienn." - -#~ msgid "Custom theme" -#~ msgstr "Dodenn personelaet" - -#~ msgid "Change background image" -#~ msgstr "Kemmañ ar skeudenn foñs" - -#~ msgid "Background" -#~ msgstr "Background" - -#~ msgid "On" -#~ msgstr "Gweredekaet" - -#~ msgid "Off" -#~ msgstr "Diweredekaet" - -#~ msgid "Turn background image on or off." -#~ msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." - -#~ msgid "Tile background image" -#~ msgstr "Adober gant ar skeudenn drekleur" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "Kemmañ al livioù" - -#~ msgid "Content" -#~ msgstr "Endalc'h" - -#~ msgid "Sidebar" -#~ msgstr "Barenn kostez" - -#~ msgid "Text" -#~ msgstr "Testenn" - -#~ msgid "Links" -#~ msgstr "Liammoù" - -#~ msgid "Advanced" -#~ msgstr "Araokaet" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personelaet" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Implijout an talvoudoù dre ziouer" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Adlakaat an neuz dre ziouer." - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Adlakaat an arventennoù dre ziouer" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Enrollañ an design" - -#, fuzzy -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." - -#~ msgid "Group design" -#~ msgstr "Design ar strollad" - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ." - -#~ msgid "Design preferences saved." -#~ msgstr "Enrollet eo bet an arventennoù design." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en " -#~ "ho penn kentoc'h." - -#~ msgid "Backgrounds" -#~ msgstr "Backgroundoù" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Dodenn evit al lec'hienn." - -#~ msgid "Profile design" -#~ msgstr "Design ar profil" - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Bez plijadur gant da hotdog !" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Enrollañ arventennoù al lec'hienn" - -#, fuzzy -#~ msgid "View profile designs" -#~ msgstr "Design ar profil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Diskouez pe kuzhat designoù ar profil." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Background" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Dibosupl eo dilemel an arventennoù krouiñ." - -#~ msgid "Design configuration" -#~ msgstr "Kefluniadur ar c'hrouiñ" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Design" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Enrollañ an design" - -#~ msgid "Change colours" -#~ msgstr "Kemmañ al livioù" - -#~ msgid "Use defaults" -#~ msgstr "Implijout an talvoudoù dre ziouer" - -#~ msgid "Upload file" -#~ msgstr "Enporzhiañ ar restr" - -#, fuzzy -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Gweredekaet" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Diweredekaet" - -#, fuzzy -#~ msgid "Design defaults restored." -#~ msgstr "Enrollet eo bet an arventennoù design." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Ouzhpennañ pe kemmañ tres ar strollad %s" - -#~ msgid "Design your profile" -#~ msgstr "Krouit ho profil" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 0ca587aeca..9fa8009def 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:04+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -310,7 +310,7 @@ msgstr "" "Sigueu el primer en [enviar sobre aquest tema](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2120,7 +2120,7 @@ msgstr "" "En definir una etiqueta pública com a privada eliminarà permanentment totes " "les subscripcions que hi estan associades. Encara voleu continuar?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "No s'ha pogut actualitzar la llista." @@ -3174,6 +3174,7 @@ msgstr "URL d'origen requerida." msgid "Could not create application." msgstr "No s'ha pogut crear l'aplicació." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "La imatge no és vàlida." @@ -5542,7 +5543,6 @@ msgstr "" "de nou." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logotip" @@ -8758,7 +8758,7 @@ msgstr "Envia un avís directe" msgid "Select recipient:" msgstr "Seleccioneu el destinatari" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "No teniu subscriptors mutus." @@ -9187,8 +9187,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Habilita" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" "(Les descripcions dels connectors no són disponibles en ser inhabiitats.)" @@ -9929,208 +9932,3 @@ msgstr "Adreça de correu electrònic no vàlida." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "No s'ha pogut desar el perfil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "No s'han pogut desar els paràmetres de disseny." - -#~ msgid "Could not update your design." -#~ msgstr "No s'ha pogut actualitzar el vostre disseny." - -#~ msgid "Design" -#~ msgstr "Disseny" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Paràmetres de disseny d'aquest lloc StatusNet." - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema no disponible: %s." - -#~ msgid "Change logo" -#~ msgstr "Canvia el logotip" - -#~ msgid "Change theme" -#~ msgstr "Canvia el tema" - -#~ msgid "Site theme" -#~ msgstr "Tema del lloc" - -#~ msgid "Theme for the site." -#~ msgstr "Tema del lloc." - -#~ msgid "Custom theme" -#~ msgstr "Tema personalitzat" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP." - -#~ msgid "Change background image" -#~ msgstr "Canvia la imatge de fons" - -#~ msgid "Background" -#~ msgstr "Fons" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1" -#~ "$s." - -#~ msgid "On" -#~ msgstr "Activada" - -#~ msgid "Off" -#~ msgstr "Desactivada" - -#~ msgid "Turn background image on or off." -#~ msgstr "Activa o desactiva la imatge de fons." - -#~ msgid "Tile background image" -#~ msgstr "Posa en mosaic la imatge de fons" - -#~ msgid "Change colors" -#~ msgstr "Canvia els colors" - -#~ msgid "Content" -#~ msgstr "Contingut" - -#~ msgid "Sidebar" -#~ msgstr "Barra lateral" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Links" -#~ msgstr "Enllaços" - -#~ msgid "Advanced" -#~ msgstr "Avançat" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalitzat" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Utilitza els paràmetres per defecte" - -#~ msgid "Restore default designs." -#~ msgstr "Restaura els dissenys per defecte." - -#~ msgid "Reset back to default." -#~ msgstr "Torna a restaurar els paràmetres per defecte." - -#~ msgid "Save design." -#~ msgstr "Desa el disseny." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Heu d'iniciar una sessió per editar un grup." - -#~ msgid "Group design" -#~ msgstr "Disseny de grup" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalitzeu l'aspecte del vostre grup amb una imatge de fons i una " -#~ "paleta de colors de la vostra elecció." - -#~ msgid "Unable to update your design settings." -#~ msgstr "No s'han pogut actualitzar els paràmetres de disseny." - -#~ msgid "Design preferences saved." -#~ msgstr "S'han desat les preferències de disseny." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." - -#~ msgid "Backgrounds" -#~ msgstr "Fons" - -#~ msgid "Server for backgrounds." -#~ msgstr "Servidor de fons." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Camí web de fons." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Servidor de fons a pàgines SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Camí web de fons a pàgines SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Directori on es troben els fons." - -#~ msgid "Profile design" -#~ msgstr "Disseny del perfil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalitzeu l'aspecte del vostre perfil amb una imatge de fons o una " -#~ "paleta de colors de la vostra elecció." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Gaudiu de l'entrepà!" - -#~ msgid "Design settings" -#~ msgstr "Paràmetres de disseny" - -#~ msgid "View profile designs" -#~ msgstr "Visualitza els dissenys de perfil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Mostra o amaga els dissenys de perfil." - -#~ msgid "Background file" -#~ msgstr "Fitxer de fons" - -#~ msgid "Unable to delete design setting." -#~ msgstr "No s'ha pogut eliminar el paràmetre de disseny." - -#~ msgid "Design configuration" -#~ msgstr "Configuració del disseny" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Disseny" - -#~ msgid "Change design" -#~ msgstr "Canvia el disseny" - -#~ msgid "Change colours" -#~ msgstr "Canvia els colors" - -#~ msgid "Use defaults" -#~ msgstr "Utilitza els paràmetres per defecte" - -#~ msgid "Upload file" -#~ msgstr "Puja un fitxer" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Podeu pujar la vostra imatge de fons personal. La mida màxima del fitxer " -#~ "és 2MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Activada" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Desactivada" - -#~ msgid "Design defaults restored." -#~ msgstr "S'han restaurat els paràmetres de disseny per defecte." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Afegeix o edita el disseny de %s" - -#~ msgid "Design your profile" -#~ msgstr "Dissenyeu el vostre perfil" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index cf14dfa013..a467fc216d 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:06+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:39+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -298,7 +298,7 @@ msgstr "" "Můžete se pokusit uživatele [%1$s postrÄit](../%2$s) z jejich profilu nebo " "[jim nÄ›co poslat](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2165,7 +2165,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "NepodaÅ™ilo se aktualizovat nastavení uživatele" @@ -3243,6 +3243,7 @@ msgstr "Zdrojové URL je nutné." msgid "Could not create application." msgstr "Nelze vytvoÅ™it aplikaci." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Neplatná velikost" @@ -5683,9 +5684,8 @@ msgstr "" "Jak dlouho uživatel musí Äekat (v sekundách) než může poslat totéž znovu." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" -msgstr "Odhlásit se" +msgstr "Logo" #. TRANS: Field label for StatusNet site logo. msgid "Site logo" @@ -9006,7 +9006,7 @@ msgstr "PoÅ¡lete přímou zprávu" msgid "Select recipient:" msgstr "Vyberte operátora" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "NepÅ™ihlášen!" @@ -9474,8 +9474,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10265,205 +10267,3 @@ msgstr "Není platnou mailovou adresou." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "NepodaÅ™ilo se uložit profil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Nelze uložit vaÅ¡e nastavení designu." - -#~ msgid "Could not update your design." -#~ msgstr "Nelze uložit design." - -#~ msgid "Design" -#~ msgstr "Vzhled" - -#~ msgid "Theme not available: %s." -#~ msgstr "Téma není k dispozici: %s." - -#~ msgid "Change logo" -#~ msgstr "Změňte logo" - -#~ msgid "Change theme" -#~ msgstr "ZmÄ›nit téma" - -#~ msgid "Site theme" -#~ msgstr "Téma stránek" - -#~ msgid "Theme for the site." -#~ msgstr "Téma stránek" - -#~ msgid "Custom theme" -#~ msgstr "Vlastní téma" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv." - -#~ msgid "Change background image" -#~ msgstr "ZmÄ›nit obrázek na pozadí" - -#~ msgid "Background" -#~ msgstr "Pozadí" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1" -#~ "$s." - -#~ msgid "On" -#~ msgstr "zap." - -#~ msgid "Off" -#~ msgstr "vyp." - -#~ msgid "Turn background image on or off." -#~ msgstr "ZapnÄ›te nebů vypnÄ›te obrázek na pozadí." - -#~ msgid "Tile background image" -#~ msgstr "Dlaždicovat obrázek na pozadí" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "ZmÄ›nit barvy" - -#~ msgid "Content" -#~ msgstr "Obsah" - -#~ msgid "Sidebar" -#~ msgstr "BoÄní panel" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Links" -#~ msgstr "Odkazy" - -#~ msgid "Advanced" -#~ msgstr "Rozšířené" - -#~ msgid "Custom CSS" -#~ msgstr "Vlastní CSS" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Použít výchozí" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Obnovit výchozí vzhledy" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Reset zpÄ›t do výchozího" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Uložit vzhled" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "K úpravÄ› skupiny musíte být pÅ™ihlášen." - -#~ msgid "Group design" -#~ msgstr "Vzhled skupiny" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "PÅ™izpůsobit vzhled skupiny obrázkem na pozadí a barevnou paletou vaÅ¡eho " -#~ "výbÄ›ru." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Nelze uložit vaÅ¡e nastavení designu." - -#~ msgid "Design preferences saved." -#~ msgstr "Nastavení vzhledu uloženo." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Neposílejte si zprávu, potichu si ji pro sebe Å™eknÄ›te." - -#~ msgid "Backgrounds" -#~ msgstr "Pozadí" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Téma stránek" - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Cesta k adresáři locales" - -#~ msgid "Profile design" -#~ msgstr "Vzhled profilu" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "PÅ™izpůsobit vzhled vaÅ¡eho profilu obrázkem na pozadí a barevnou paletou " -#~ "vaÅ¡eho výbÄ›ru." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Užijte si svůj párek v rohlíku!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Uložit Nastavení webu" - -#~ msgid "View profile designs" -#~ msgstr "Zobrazit vzhledy profilu" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Zobrazit nebo skrýt vzhledy profilu." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Pozadí" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Nelze smazat nastavení vzhledu." - -#~ msgid "Design configuration" -#~ msgstr "Nastavení vzhledu" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Vzhled" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Uložit vzhled" - -#~ msgid "Change colours" -#~ msgstr "ZmÄ›nit barvy" - -#~ msgid "Use defaults" -#~ msgstr "Použít výchozí" - -#~ msgid "Upload file" -#~ msgstr "Nahrát soubor" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Můžete nahrát váš osobní obrázek na pozadí. Maximální velikost souboru je " -#~ "2 MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "zap." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "vyp." - -#~ msgid "Design defaults restored." -#~ msgstr "Obnoveno výchozí nastavení vzhledu." - -#~ msgid "Design your profile" -#~ msgstr "Změňte vzhled svého profilu" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index fb2f703fb5..c3c0fcb023 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:08+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -323,7 +323,7 @@ msgstr "" "Du kannst versuchen, [%1$s in seinem Profil einen Stups zu geben](../%2$s) " "oder [ihm etwas posten](%%%%action.newnotice%%%%?status_textarea=%s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2161,7 +2161,7 @@ msgstr "" "Das Markieren eines öffentlichen Tags entfernt dauerhaft alle existierenden " "diesbezüglichen Abonnements. Möchtest du trotzdem fortfahren?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Konnte Benutzerdaten nicht aktualisieren." @@ -3238,6 +3238,7 @@ msgstr "Quell-URL ist erforderlich." msgid "Could not create application." msgstr "Konnte das Programm nicht erstellen." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Ungültiges Bild" @@ -5690,7 +5691,6 @@ msgstr "" "abschicken kann (in Sekunden)." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -9022,7 +9022,7 @@ msgstr "Versende eine direkte Nachricht" msgid "Select recipient:" msgstr "Empfänger auswählen" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Nicht abonniert!" @@ -9490,8 +9490,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Aktivieren" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(Plugin Beschreibung nicht verfügbar wenn deaktiviert.)" #. TRANS: Menu item in primary navigation panel. @@ -10277,215 +10280,3 @@ msgstr "Ungültige E-Mail-Adresse." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Konnte Profil nicht speichern." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Konnte Design-Einstellungen nicht speichern." - -#~ msgid "Could not update your design." -#~ msgstr "Konnte Benutzerdesign nicht aktualisieren." - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Design-Einstellungen dieser StatusNet-Website" - -#~ msgid "Theme not available: %s." -#~ msgstr "Theme nicht verfügbar: %s" - -#~ msgid "Change logo" -#~ msgstr "Logo ändern" - -#~ msgid "Change theme" -#~ msgstr "Theme ändern" - -#~ msgid "Site theme" -#~ msgstr "Seitentheme" - -#~ msgid "Theme for the site." -#~ msgstr "Theme dieser Seite." - -#~ msgid "Custom theme" -#~ msgstr "Angepasster Skin" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen." - -#~ msgid "Change background image" -#~ msgstr "Hintergrundbild ändern" - -#~ msgid "Background" -#~ msgstr "Hintergrund" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Du kannst ein Hintergrundbild für deine Gruppe hochladen. Die maximale " -#~ "Dateigröße beträgt %1$s." - -#~ msgid "On" -#~ msgstr "An" - -#~ msgid "Off" -#~ msgstr "Aus" - -#~ msgid "Turn background image on or off." -#~ msgstr "Hintergrundbild ein- oder ausschalten." - -#~ msgid "Tile background image" -#~ msgstr "Hintergrundbild kacheln" - -#~ msgid "Change colors" -#~ msgstr "Farben ändern" - -#~ msgid "Content" -#~ msgstr "Inhalt" - -#~ msgid "Sidebar" -#~ msgstr "Seitenleiste" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Links" -#~ msgstr "Links" - -#~ msgid "Advanced" -#~ msgstr "Erweitert" - -#~ msgid "Custom CSS" -#~ msgstr "Eigene CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Standardeinstellungen benutzen" - -#~ msgid "Restore default designs." -#~ msgstr "Standarddesign wiederherstellen" - -#~ msgid "Reset back to default." -#~ msgstr "Standardeinstellungen wiederherstellen" - -#~ msgid "Save design." -#~ msgstr "Design speichern" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten." - -#~ msgid "Group design" -#~ msgstr "Gruppen-Design" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Stelle ein wie die Gruppenseite aussehen soll. Hintergrundbild und " -#~ "Farbpalette frei wählbar." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Konnte Twitter-Einstellungen nicht speichern." - -#~ msgid "Design preferences saved." -#~ msgstr "Design-Einstellungen gespeichert." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach " -#~ "leise." - -#~ msgid "Backgrounds" -#~ msgstr "Hintergrundbilder" - -#~ msgid "Server for backgrounds." -#~ msgstr "Server für Hintergründe." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Web-Pfad zu den Hintergründen." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Server für Hintergründe auf SSL-Seiten." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Web Pfad zu Hintergründen auf SSL-Seiten." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Verzeichnis, in dem sich die Hintergründe befinden." - -#~ msgid "Profile design" -#~ msgstr "Profil-Design-Einstellungen" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Stelle ein wie deine Profilseite aussehen soll. Hintergrundbild und " -#~ "Farbpalette sind frei wählbar." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Hab Spaß!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Website-Einstellungen speichern" - -#~ msgid "View profile designs" -#~ msgstr "Profil-Designs ansehen" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Profil-Designs anzeigen oder verstecken." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Hintergrund" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Konnte die Design-Einstellungen nicht löschen." - -#~ msgid "Design configuration" -#~ msgstr "Design-Konfiguration" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Design" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Design speichern" - -#~ msgid "Change colours" -#~ msgstr "Farben ändern" - -#~ msgid "Use defaults" -#~ msgstr "Standardeinstellungen benutzen" - -#~ msgid "Upload file" -#~ msgstr "Datei hochladen" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Du kannst dein persönliches Hintergrundbild hochladen. Die maximale " -#~ "Dateigröße ist 2 MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "An" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Aus" - -#~ msgid "Design defaults restored." -#~ msgstr "Standard-Design wieder hergestellt." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "%s-Design hinzufügen oder bearbeiten" - -#~ msgid "Design your profile" -#~ msgstr "Passe dein Profil an" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 6275b1325e..e31677e251 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:09+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:41+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -300,7 +300,7 @@ msgstr "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2153,7 +2153,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Could not update user." @@ -3225,6 +3225,7 @@ msgstr "Source URL is required." msgid "Could not create application." msgstr "Could not create application." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Invalid size." @@ -5620,7 +5621,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logout" @@ -8801,7 +8801,7 @@ msgstr "Send a direct notice" msgid "Select recipient:" msgstr "Select a carrier" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Not subscribed!" @@ -9264,8 +9264,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10035,190 +10037,3 @@ msgstr "Not a valid e-mail address." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Could not save profile." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Unable to save your design settings." - -#~ msgid "Could not update your design." -#~ msgstr "Could not update your design." - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Theme not available: %s." -#~ msgstr "Theme not available: %s." - -#~ msgid "Change logo" -#~ msgstr "Change logo" - -#~ msgid "Change theme" -#~ msgstr "Change theme" - -#~ msgid "Site theme" -#~ msgstr "Site theme" - -#~ msgid "Theme for the site." -#~ msgstr "Theme for the site." - -#~ msgid "Custom theme" -#~ msgstr "Custom theme" - -#~ msgid "Change background image" -#~ msgstr "Change background image" - -#~ msgid "Background" -#~ msgstr "Background" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." - -#~ msgid "On" -#~ msgstr "On" - -#~ msgid "Off" -#~ msgstr "Off" - -#~ msgid "Turn background image on or off." -#~ msgstr "Turn background image on or off." - -#~ msgid "Tile background image" -#~ msgstr "Tile background image" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "Change colours" - -#~ msgid "Content" -#~ msgstr "Content" - -#~ msgid "Sidebar" -#~ msgstr "Sidebar" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Links" -#~ msgstr "Links" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Use defaults" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Restore default designs" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Reset back to default" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Save design" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "You must be logged in to edit a group." - -#~ msgid "Group design" -#~ msgstr "Group design" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Customise the way your group looks with a background image and a colour " -#~ "palette of your choice." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Unable to save your design settings." - -#~ msgid "Design preferences saved." -#~ msgstr "Design preferences saved." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." - -#~ msgid "Backgrounds" -#~ msgstr "Backgrounds" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Server for themes" - -#~ msgid "Profile design" -#~ msgstr "Profile design" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Customise the way your profile looks with a background image and a colour " -#~ "palette of your choice." - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Save site settings" - -#~ msgid "View profile designs" -#~ msgstr "View profile designs" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Show or hide profile designs." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Background" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Unable to delete design setting." - -#~ msgid "Design configuration" -#~ msgstr "Design configuration" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Design" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Save design" - -#~ msgid "Change colours" -#~ msgstr "Change colours" - -#~ msgid "Use defaults" -#~ msgstr "Use defaults" - -#~ msgid "Upload file" -#~ msgstr "Upload file" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "On" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Off" - -#~ msgid "Design defaults restored." -#~ msgstr "Design defaults restored." - -#~ msgid "Design your profile" -#~ msgstr "Design your profile" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 1ada50db30..39dfea4fe6 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:11+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:43+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -297,7 +297,7 @@ msgstr "" "Vi povas provi [puÅeti %1$s](../%2$s) de lia profilo aÅ­ [afiÅi ion al li](%%" "%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2137,7 +2137,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Malsukcesis Äisdatigi uzanton" @@ -3201,6 +3201,7 @@ msgstr "Fonta URL bezonata." msgid "Could not create application." msgstr "Malsukcesis krei aplikaĵon." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Nevalida bildo." @@ -5590,7 +5591,6 @@ msgstr "" "Kiel longe devas uzantoj atendas (je sekundo) antaÅ­ afiÅi la saman refejo." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Emblemo" @@ -8876,7 +8876,7 @@ msgstr "Sendi rektan avizon" msgid "Select recipient:" msgstr "Elektu ricevonton:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Mankas abonantoj reciprokaj." @@ -9341,8 +9341,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10119,212 +10121,3 @@ msgstr "RetpoÅta adreso ne valida" #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Malsukcesis konservi la profilon." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Malsukcesis konservi vian desegnan agordon" - -#~ msgid "Could not update your design." -#~ msgstr "Malsukcesis Äisdatigi vian desegnon." - -#~ msgid "Design" -#~ msgstr "Aspekto" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Desegna agordo por ĉi tiu StatusNet-retejo" - -#~ msgid "Theme not available: %s." -#~ msgstr "Desegno ne havebla: %s." - -#~ msgid "Change logo" -#~ msgstr "ÅœanÄi emblemon" - -#~ msgid "Change theme" -#~ msgstr "ÅœanÄi desegnon" - -#~ msgid "Site theme" -#~ msgstr "Reteja desegno" - -#~ msgid "Theme for the site." -#~ msgstr "Desegno por la retejo" - -#~ msgid "Custom theme" -#~ msgstr "Propra desegno" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Vi povas alÅuti propran StatusNet-desegnon kiel .zip-dosiero" - -#~ msgid "Change background image" -#~ msgstr "ÅœanÄi fonbildon" - -#~ msgid "Background" -#~ msgstr "Fono" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Vi povas alÅuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s." - -#~ msgid "On" -#~ msgstr "En" - -#~ msgid "Off" -#~ msgstr "For" - -#~ msgid "Turn background image on or off." -#~ msgstr "Aktivigi aÅ­ senaktivigi fonbildon" - -#~ msgid "Tile background image" -#~ msgstr "Ripeti la fonbildon" - -#~ msgid "Change colors" -#~ msgstr "ÅœanÄi kolorojn" - -#~ msgid "Content" -#~ msgstr "Enhavo" - -#~ msgid "Sidebar" -#~ msgstr "Flanka strio" - -#~ msgid "Text" -#~ msgstr "Teksto" - -#~ msgid "Links" -#~ msgstr "Ligiloj" - -#~ msgid "Advanced" -#~ msgstr "Speciala" - -#~ msgid "Custom CSS" -#~ msgstr "Propra CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Uzi defaÅ­lton" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "RestaÅ­ri defaÅ­ltajn desegnojn" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "RedefaÅ­ltiÄi" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Savi desegnon" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Ensalutu por redakti grupon." - -#~ msgid "Group design" -#~ msgstr "Grupa desegno" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "Agordi kiel aspektu via grupo, per elekto de fonbildo kaj koloraro." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Malsukcesis konservi vian desegnan agordon" - -#~ msgid "Design preferences saved." -#~ msgstr "Desegna agordo konservita." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Ne sendu mesaÄon al vi mem! Simple suspiru anstataÅ­." - -#~ msgid "Backgrounds" -#~ msgstr "Fono" - -#~ msgid "Server for backgrounds." -#~ msgstr "Servilo por fonoj." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Retvojo al fonoj." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Servilo por fonoj en SSL-paÄoj." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Retvojo al fonoj en SSL-paÄoj." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Dosierujo kie fonoj estas." - -#~ msgid "Profile design" -#~ msgstr "Profila desegno" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Agodi kiel aspektu via profilo, per elekto de fonbildo kaj koloraro." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Äœuu vian kolbasobulkon!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Konservi retejan agordon" - -#~ msgid "View profile designs" -#~ msgstr "Vidi profilo-desegnon" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Montri aÅ­ kaÅi profilo-desegnon." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Fono" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Malsukcesas forigi desegnan agordon." - -#~ msgid "Design configuration" -#~ msgstr "Desegna agordo" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Desegno" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "ÅanÄi etoson" - -#~ msgid "Change colours" -#~ msgstr "ÅœanÄi kolorojn" - -#~ msgid "Use defaults" -#~ msgstr "Uzi defaÅ­lton" - -#~ msgid "Upload file" -#~ msgstr "AlÅuti dosieron" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Vi povas alÅuti vian propran fonbildon. La dosiera grandlimo estas 2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "En" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "For" - -#~ msgid "Design defaults restored." -#~ msgstr "Desegnaj defaÅ­ltoj konserviÄas." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Aldoni aÅ­ redakti desegnon de %s" - -#~ msgid "Design your profile" -#~ msgstr "Desegni vian profilon" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 857a7de775..da8825b514 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -22,17 +22,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:13+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -315,7 +315,7 @@ msgstr "" "Puedes intentar [dar un toque a %1$s](../%2$s) desde su perfil o [publicar " "algo a ellos](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2130,7 +2130,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "No se pudo actualizar la lista." @@ -3194,6 +3194,7 @@ msgstr "Se requiere el URL fuente." msgid "Could not create application." msgstr "No se pudo crear la aplicación." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Tamaño inválido." @@ -5628,7 +5629,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8959,7 +8959,7 @@ msgstr "Enviar un mensaje directo" msgid "Select recipient:" msgstr "Seleccione un operador móvil" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Sin suscripción mutua" @@ -9422,8 +9422,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Habilitado" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10203,208 +10205,3 @@ msgstr "Correo electrónico no válido" #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "No se pudo guardar el perfil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "No se pudo grabar tu configuración de diseño." - -#~ msgid "Could not update your design." -#~ msgstr "No se pudo actualizar tu diseño." - -#~ msgid "Design" -#~ msgstr "Diseño" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Configuración de diseño de este sitio de StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema no disponible: %s." - -#~ msgid "Change logo" -#~ msgstr "Cambiar logo" - -#~ msgid "Change theme" -#~ msgstr "Cambiar el tema" - -#~ msgid "Site theme" -#~ msgstr "Tema del sitio" - -#~ msgid "Theme for the site." -#~ msgstr "Tema para el sitio." - -#~ msgid "Custom theme" -#~ msgstr "Personalizar tema" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP." - -#~ msgid "Change background image" -#~ msgstr "Cambiar la imagen de fondo" - -#~ msgid "Background" -#~ msgstr "Fondo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Puedes subir una imagen de fondo para el sitio. El tamaño máximo de " -#~ "archivo es %1$s." - -#~ msgid "On" -#~ msgstr "Activar" - -#~ msgid "Off" -#~ msgstr "Desactivar" - -#~ msgid "Turn background image on or off." -#~ msgstr "Activar o desactivar la imagen de fondo." - -#~ msgid "Tile background image" -#~ msgstr "Imagen de fondo en mosaico" - -#~ msgid "Change colors" -#~ msgstr "Cambiar colores" - -#~ msgid "Content" -#~ msgstr "Contenido" - -#~ msgid "Sidebar" -#~ msgstr "Barra lateral" - -#~ msgid "Text" -#~ msgstr "Texto" - -#~ msgid "Links" -#~ msgstr "Vínculos" - -#~ msgid "Advanced" -#~ msgstr "Avanzado" - -#~ msgid "Custom CSS" -#~ msgstr "Personalizar CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Usar los valores predeterminados" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Restaurar los diseños predeterminados" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Volver a los valores predeterminados" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Guardar el diseño" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Debes estar conectado para editar un grupo." - -#~ msgid "Group design" -#~ msgstr "Diseño de grupo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de " -#~ "colores que prefieras." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "No se pudo actualizar tu configuración de diseño." - -#~ msgid "Design preferences saved." -#~ msgstr "Preferencias de diseño guardadas." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." - -#~ msgid "Backgrounds" -#~ msgstr "Fondos" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Tema para el sitio." - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Ruta del directorio de las configuraciones locales" - -#~ msgid "Profile design" -#~ msgstr "Diseño del perfil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personaliza la vista de tu perfil con una imagen de fondo y la paelta de " -#~ "colores que quieras." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "¡Disfruta de tu perrito caliente!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Guardar la configuración del sitio" - -#~ msgid "View profile designs" -#~ msgstr "Ver diseños de perfil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Ocultar o mostrar diseños de perfil." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Fondo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "No se puede eliminar la configuración de diseño." - -#~ msgid "Design configuration" -#~ msgstr "Configuración del diseño" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Diseño" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Guardar el diseño" - -#~ msgid "Change colours" -#~ msgstr "Cambiar colores" - -#~ msgid "Use defaults" -#~ msgstr "Utilizar los valores predeterminados" - -#~ msgid "Upload file" -#~ msgstr "Subir archivo" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Puedes subir tu imagen de fondo personal. El tamaño de archivo máximo " -#~ "permitido es 2 MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Activar" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Desactivar" - -#~ msgid "Design defaults restored." -#~ msgstr "Diseño predeterminado restaurado." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Añadir o modificar el diseño %s" - -#~ msgid "Design your profile" -#~ msgstr "Diseñar tu perfil" diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 85d2010535..1ebb47b7d9 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:13+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:45+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" @@ -291,7 +291,7 @@ msgstr "" "Saiatu: [zirikatu %1$s](../%2$s) bere profiletik edo [idatzi zerbait haiei](%" "%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -302,8 +302,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -"Zuk ere [kontu bat ireki] nahi duzu ?(%%%%action.register%%%%) eta zirikatu %" -"s edo beraien arbelan zerbait idatzi." +"Zergatik ez [kontu bat ireki](%%%%action.register%%%%) eta ondoren %s " +"zirikatu edo beraiei mezu bat bidali." #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -561,7 +561,7 @@ msgstr "Erabiltzaile izena ez da baliozkoa." #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. msgid "Homepage is not a valid URL." -msgstr "Hasiera Orria ez da URL zuzena." +msgstr "Hasiera Orrialdea ez da URL zuzena." #. TRANS: Client error in form for group creation. #. TRANS: API validation exception thrown when full name does not validate. @@ -665,7 +665,7 @@ msgstr "Administratzaileak talde horretan blokeatu egin zaitu." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr " %1$s erabiltzailea ezin da %2$s taldera batu." +msgstr "%1$s erabiltzailea ezin da %2$s taldera batu." #. TRANS: Server error displayed when trying to leave a group the user is not a member of. msgid "You are not a member of this group." @@ -909,7 +909,7 @@ msgstr "Eskatutako %s tokena kendu egin da." #. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. msgid "You have successfully authorized the application" -msgstr "Aplikazioa ondo baimendu duzu." +msgstr "Aplikazioa ondo baimendu duzu" #. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth. msgid "" @@ -1012,8 +1012,8 @@ msgstr "Mezuaren gurasoa ez da aurkitu." #, php-format msgid "Maximum notice size is %d character, including attachment URL." msgid_plural "Maximum notice size is %d characters, including attachment URL." -msgstr[0] "Hori luzeegia da. Mezuen luzeera gehienez karaktere %d da." -msgstr[1] "Hori luzeegia da. Mezuen luzeera gehienez %d karaktere dira." +msgstr[0] "Mezuen luzera gehienez karaktere %d da, URL eranskinak barne." +msgstr[1] "Mezuen luzera gehienez %d karaktere dira, URL eranskinak barne." #. TRANS: Client error displayed when requesting profiles of followers in an unsupported format. #. TRANS: Client error displayed when requesting IDs of followers in an unsupported format. @@ -1333,7 +1333,7 @@ msgstr "Batuera jarduerak bakarrik kideatu daitezke." #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. msgid "Unknown group." -msgstr "Talde ezezaguna" +msgstr "Talde ezezaguna." #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. msgid "Already a member." @@ -1549,7 +1549,7 @@ msgid "" msgstr "" "Ziur zaude erabiltzaile hau blokeatu nahi duzula? Ondoren, berak zurekiko " "duen harpidetza ezeztuko da, ezin izango zaitu etorkizunean idatzi eta ez " -"zaizkizu jakinaraziko bere @ erantzunak." +"zaizkizu jakinaraziko bere @-erantzunak." #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1664,7 +1664,7 @@ msgstr "Baieztapen kode hori ez da zuretzat!" #. TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim') #, php-format msgid "Unrecognized address type %s" -msgstr "%s helbide mota ez da ezagutzen." +msgstr "%s helbide mota ez da ezagutzen" #. TRANS: Client error for an already confirmed email/jabber/sms address. #. TRANS: Client error for an already confirmed IM address. @@ -1824,7 +1824,7 @@ msgstr "%s taldea ezin izan da ezabatu." #. TRANS: %s is the deleted group's name. #, php-format msgid "Deleted group %s" -msgstr "%s taldea ezabatu" +msgstr "%s taldea ezabatua" #. TRANS: Title of delete group page. #. TRANS: Form legend for deleting a group. @@ -1875,7 +1875,7 @@ msgstr "Ezabatu mezu hau." #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." -msgstr "You cannot delete users." +msgstr "Ezin dituzu erabiltzaleak ezabatu." #. TRANS: Client error displayed when trying to delete a non-local user. msgid "You can only delete local users." @@ -1979,7 +1979,7 @@ msgstr "Erakundea luzeegia da (gehienez 255 karaktere)." #. TRANS: Form validation error show when an organisation name has not been provided in the edit application form. #. TRANS: Form validation error show when an organisation name has not been provided in the new application form. msgid "Organization homepage is required." -msgstr "Erakundearen hasiera-orria derrigorrezkoa da." +msgstr "Erakundearen hasiera orrialdea derrigorrezkoa da." #. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form. #. TRANS: Validation error shown when providing too long a callback URL in the "New application" form. @@ -2008,7 +2008,7 @@ msgstr "Talde bat sortzeko saioa hasi behar duzu." #. TRANS: Form instructions for group edit form. msgid "Use this form to edit the group." -msgstr "Erabili inprimaki hau taldea aldatzeko." +msgstr "Erabili formulario hau taldea aldatzeko." #. TRANS: Group edit form validation error. #. TRANS: Group create form validation error. @@ -2078,13 +2078,13 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "" #. TRANS: Title for e-mail settings. msgid "Email settings" -msgstr "Posta elektronikoaren ezarpenak" +msgstr "Posta-e ezarpenak" #. TRANS: E-mail settings page instructions. #. TRANS: %%site.name%% is the name of the site. @@ -2095,11 +2095,11 @@ msgstr "Kudeatu nola jasoko duzun posta elektronikoa %%site.name%% gunetik." #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. msgid "Email address" -msgstr "Eposta helbidea" +msgstr "Posta-e helbidea" #. TRANS: Form note in e-mail settings form. msgid "Current confirmed email address." -msgstr "Berretsitako uneko helbide elektronikoa." +msgstr "Berretsitako uneko posta-e helbide." #. TRANS: Button label to remove a confirmed e-mail address. #. TRANS: Button label for removing a set sender e-mail address to post notices from. @@ -2125,7 +2125,7 @@ msgstr "" #. TRANS: Any other domain may be owned by a legitimate person or #. TRANS: organization. msgid "Email address, like \"UserName@example.org\"" -msgstr "Helbide elektronikoa, adibidez \"erabiltzailea@adibidea.org\"" +msgstr "Posta-e helbidea, adibidez \"erabiltzailea@adibidea.org\"" #. TRANS: Button label for adding an e-mail address in e-mail settings form. #. TRANS: Button label for adding an IM address in IM settings form. @@ -2142,7 +2142,7 @@ msgstr "Jasotzeko posta elektronikoa" #. TRANS: Checkbox label in e-mail preferences form. msgid "I want to post notices by email." -msgstr "Mezuak bidali nahi ditut posta elektroniko bitartez." +msgstr "Mezuak bidali nahi ditut posta-e bitartez." #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. @@ -2153,15 +2153,14 @@ msgstr "Bidali mezu elektronikoak helbide honetara mezu berriak argitaratzeko." #. TRANS: Instructions for incoming SMS e-mail address input form. msgid "Make a new email address for posting to; cancels the old one." msgstr "" -"Sortu bidalketetarako helbide elektroniko berria; zaharra bertan behera " -"uzten du." +"Sortu bidalketetarako posta-e helbide berria; zaharra bertan behera uzten du." #. TRANS: Instructions for incoming e-mail address input form. msgid "" "To send notices via email, we need to create a unique email address for you " "on this server:" msgstr "" -"Posta elektroniko bidez mezuak argitaratu ahal izateko, helbide elektroniko " +"Posta elektroniko bidez mezuak argitaratu ahal izateko, posta-e helbide " "bakarra sortu beharra daukagu zerbitzari honetan:" #. TRANS: Button label for adding an e-mail address to send notices from. @@ -2172,7 +2171,7 @@ msgstr "Berria" #. TRANS: Form legend for e-mail preferences form. msgid "Email preferences" -msgstr "Helbide elektronikoaren hobespenak" +msgstr "Posta-e hobespenak" #. TRANS: Checkbox label in e-mail preferences form. msgid "Send me notices of new subscriptions through email." @@ -2192,11 +2191,12 @@ msgstr "" #. TRANS: Checkbox label in e-mail preferences form. msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" -"Norbaitek @ erantzun bat bidaltzen didanean posta-e mezu bat jaso nahi dut." +"Norbaitek \"@-erantzun\" bat bidaltzen didanean posta-e mezu bat jaso nahi " +"dut." #. TRANS: Checkbox label in e-mail preferences form. msgid "Allow friends to nudge me and send me an email." -msgstr "Lagunak ni zirikatzen eta mezu elektronikoak bidaltzen baimendu." +msgstr "Lagunak ni zirikatzea eta mezu elektronikoak bidaltzea baimendu." #. TRANS: Checkbox label in e-mail preferences form. msgid "Publish a MicroID for my email address." @@ -2222,7 +2222,7 @@ msgstr "Posta-e helbidea okerra da." #. TRANS: Message given saving e-mail address that is already set. msgid "That is already your email address." -msgstr "" +msgstr "Dagoeneko hori da zure posta-e helbidea." #. TRANS: Message given saving e-mail address that is already set for another user. msgid "That email address already belongs to another user." @@ -2264,7 +2264,7 @@ msgstr "Posta-e baieztapena ezeztatua." #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. msgid "That is not your email address." -msgstr "Hau ez da zure posta-e helbidea.\"" +msgstr "Hori ez da zure posta-e helbidea." #. TRANS: Message given after successfully removing a registered e-mail address. msgid "The email address was removed." @@ -2272,7 +2272,7 @@ msgstr "Posta-e helbidea ezabatua izan da." #. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. msgid "No incoming email address." -msgstr "Ez dago sarrerako posta-e helbiderik." +msgstr "Ez dago jasotzeko posta-e helbiderik." #. TRANS: Server error thrown on database error removing incoming e-mail address. #. TRANS: Server error thrown on database error adding incoming e-mail address. @@ -2283,12 +2283,12 @@ msgstr "Ezin da erabiltzailearen erregistroa eguneratu." #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. msgid "Incoming email address removed." -msgstr "Sarrerako posta-e helbidea ezabatua." +msgstr "Jasotzeko posta-e helbidea ezabatua." #. TRANS: Message given after successfully adding an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. msgid "New incoming email address added." -msgstr "Sarrerako posta-e helbide berria gehitua." +msgstr "Jasotzeko posta-e helbide berria gehitua." #. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. msgid "This notice is already a favorite!" @@ -2772,13 +2772,13 @@ msgstr "BM helbidea kendu egin da." #. TRANS: %1$s is the user's nickname, %2$s is the page number. #, php-format msgid "Inbox for %1$s - page %2$d" -msgstr "%1$s(r)entzako sarrera-ontzia - %2$d. orrialdea" +msgstr "%1$s(r)en sarrera-ontzia - %2$d. orrialdea" #. TRANS: Title for the first page of the inbox page. #. TRANS: %s is the user's nickname. #, php-format msgid "Inbox for %s" -msgstr "%s(r)entzako sarrera-ontzia" +msgstr "%s(r)en sarrera-ontzia" #. TRANS: Instructions for user inbox page. msgid "This is your inbox, which lists your incoming private messages." @@ -2853,7 +2853,7 @@ msgstr "" msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Erabili inprimaki hau zure lagunak zerbitzu hau erabiltzera gonbidatzeko." +"Erabili formulario hau zure lagunak zerbitzu hau erabiltzera gonbidatzeko." #. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral #. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is @@ -2983,7 +2983,7 @@ msgstr "Lizentziarekin batera bistaratzeko irudiaren URLa." #. TRANS: Button title in the license admin panel. msgid "Save license settings." -msgstr "Gorde lizentzia-ezarpenak" +msgstr "Gorde lizentzia-ezarpenak." #. TRANS: Client error displayed when trying to log in while already logged in. #. TRANS: Client error displayed trying to use "one time password login" when already logged in. @@ -3037,7 +3037,7 @@ msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -"egurtasun arrazoiengatik, berridatzi zure erabiltzaile-izen eta pasahitza " +"Segurtasun arrazoiengatik, berridatzi zure erabiltzaile-izen eta pasahitza " "ezarpenak aldatu aurretik." #. TRANS: Form instructions on login page. @@ -3101,6 +3101,7 @@ msgstr "" msgid "Could not create application." msgstr "" +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "" @@ -3415,7 +3416,7 @@ msgstr "Gohiko pasahitz berbera." #. TRANS: Button text on page where to change password. msgctxt "BUTTON" msgid "Change" -msgstr "aldatu" +msgstr "Aldatu" #. TRANS: Form validation error on page where to change password. #. TRANS: Form validation error displayed when trying to register with too short a password. @@ -3537,7 +3538,7 @@ msgstr "SSL zerbitzaria" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL server for themes (default: SSL server)." -msgstr "Itxurentzako SSL zerbitzaria (lehenetsia: SSL zerbitzaria)" +msgstr "Itxurentzako SSL zerbitzaria (lehenetsia: SSL zerbitzaria)." #. TRANS: Field label in Paths admin panel. msgid "SSL path" @@ -3545,7 +3546,7 @@ msgstr "SSL bidea" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "Itxurentzako SSL bidea (lehenetsia: SSL bidea)" +msgstr "Itxurentzako SSL bidea (lehenetsia: /theme/)." #. TRANS: Field label in Paths admin panel. msgid "Directory" @@ -3639,7 +3640,7 @@ msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. msgid "Save paths" -msgstr "Bideak gorde." +msgstr "Gorde bideak" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3950,7 +3951,7 @@ msgstr "Webgunea" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. msgid "URL of your homepage, blog, or profile on another site." -msgstr "Zure webguneko, blogeko edo beste webgune bateko profileko URLa" +msgstr "Zure webguneko, blogeko edo beste webgune bateko profileko URLa." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the @@ -4423,12 +4424,12 @@ msgstr "" #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. msgctxt "PASSWORD" msgid "Confirm" -msgstr "" +msgstr "Baieztatu" #. TRANS: Field label on account registration page. msgctxt "LABEL" msgid "Email" -msgstr "" +msgstr "Posta-e" #. TRANS: Field title on account registration page. msgid "Used only for updates, announcements, and password recovery." @@ -5323,9 +5324,8 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" -msgstr "Logotipoa" +msgstr "" #. TRANS: Field label for StatusNet site logo. msgid "Site logo" @@ -5336,9 +5336,8 @@ msgid "SSL logo" msgstr "SSL logoa" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Gorde gunearen ezarpenak" +msgstr "" #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5532,7 +5531,7 @@ msgstr "Datu kapturak" #. TRANS: Dropdown title for snapshot method in admin panel for snapshots. msgid "When to send statistical data to status.net servers." -msgstr "Noiz bidali datu estatistikoak status.net-en zerbitzarietara" +msgstr "Noiz bidali datu estatistikoak status.net-en zerbitzarietara." #. TRANS: Input field label for snapshot frequency in admin panel for snapshots. msgid "Frequency" @@ -5552,7 +5551,7 @@ msgstr "URL honetara bidaliko dira kapturak." #. TRANS: Title for button to save snapshot settings. msgid "Save snapshot settings." -msgstr "Gorde gunearen ezarpenak" +msgstr "Gorde gunearen ezarpenak." #. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile. msgid "You are not subscribed to that profile." @@ -5843,7 +5842,7 @@ msgstr "Kudeatu bestelako aukera batzuk." #. TRANS: user's profile settings. This message has one space at the beginning. Use your #. TRANS: language's word separator here if it has one (most likely a single space). msgid " (free service)" -msgstr "(zerbitzu askea)" +msgstr " (zerbitzu askea)" #. TRANS: Default value for URL shortening settings. msgid "[none]" @@ -5964,7 +5963,7 @@ msgstr "Onartu erabiltzaileek beste erabiltzaile batzuk gonbidatzea." #. TRANS: Title for button to save user settings in user admin panel. msgid "Save user settings." -msgstr "Gorde erabiltzailearen ezarpenak" +msgstr "Gorde erabiltzailearen ezarpenak." #. TRANS: Page title. msgid "Authorize subscription" @@ -6566,7 +6565,7 @@ msgstr "Editatu" #. TRANS: Link title for link on user profile. msgid "Send a direct message to this user." -msgstr "Bidali mezu bat zuzenean erabiltzaile honi" +msgstr "Bidali mezu bat zuzenean erabiltzaile honi." #. TRANS: Link text for link on user profile. msgctxt "BUTTON" @@ -6687,7 +6686,7 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #, php-format msgid "Unknown verb: \"%s\"." -msgstr "Hizkuntza ezezaguna: \"%s\"" +msgstr "Hizkuntza ezezaguna: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6785,16 +6784,16 @@ msgstr "Etxea" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Home" -msgstr "" +msgstr "Etxea" #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" -msgstr "" +msgstr "Admin" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" -msgstr "" +msgstr "Gunearen oinarrizko ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" @@ -6808,34 +6807,34 @@ msgstr "Erabiltzailearen konfigurazioa" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "User" -msgstr "" +msgstr "Erabiltzailea" #. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" -msgstr "" +msgstr "Sarrera ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Access" -msgstr "" +msgstr "Sarrera" #. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" -msgstr "" +msgstr "Bide ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Paths" -msgstr "" +msgstr "Bideak" #. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" -msgstr "" +msgstr "Sesio ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "Sesioak" #. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" @@ -6844,34 +6843,34 @@ msgstr "Aldatu guneko oharra" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site notice" -msgstr "" +msgstr "Guneko mezua" #. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" -msgstr "" +msgstr "Kapturen ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "Kapturak" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "Ezarri guneko lizentzia" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "License" -msgstr "" +msgstr "Lizentzia" #. TRANS: Menu item title in administrator navigation panel. msgid "Plugins configuration" -msgstr "" +msgstr "Pluginen ezarpenak" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Plugins" -msgstr "" +msgstr "Pluginak" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." @@ -6948,12 +6947,12 @@ msgstr "Izena" #, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Deskribatu zure aplikazioa karaktere %dean" +msgstr[1] "Deskribatu zure aplikazioa %d karakteretan" #. TRANS: Form input field instructions. msgid "Describe your application" -msgstr "" +msgstr "Deskribatu zure aplikazioa" #. TRANS: Form input field label. #. TRANS: Text area label on group edit form; contains description of group. @@ -7000,11 +6999,11 @@ msgstr "" #. TRANS: Radio button label for access type. msgid "Read-only" -msgstr "" +msgstr "Irakurri bakarrik" #. TRANS: Radio button label for access type. msgid "Read-write" -msgstr "" +msgstr "Irakurri-idatzi" #. TRANS: Form guide. msgid "Default access for this application: read-only, or read-write" @@ -7012,7 +7011,7 @@ msgstr "" #. TRANS: Submit button title. msgid "Cancel" -msgstr "" +msgstr "Ezeztatu" #. TRANS: Submit button title. #. TRANS: Button text to save a list. @@ -7030,11 +7029,11 @@ msgstr "" #. TRANS: Application access type msgid "read-write" -msgstr "" +msgstr "irakurri-idatzi" #. TRANS: Application access type msgid "read-only" -msgstr "" +msgstr "irakurri bakarrik" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") #, php-format @@ -7050,7 +7049,7 @@ msgstr "" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" -msgstr "" +msgstr "Kendu" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." @@ -7081,11 +7080,11 @@ msgstr "" #. TRANS: Exception thrown when a password change fails. msgid "Password changing failed." -msgstr "" +msgstr "Pasahitz aldaketak huts egin du." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. msgid "Password changing is not allowed." -msgstr "" +msgstr "Pasahitz aldaketa ez dago baimendurik." #. TRANS: Title for the form to block a user. msgid "Block" @@ -7107,7 +7106,7 @@ msgstr "" #. TRANS: Title for command results. msgid "Command results" -msgstr "" +msgstr "Aginduaren emaitzak" #. TRANS: Title for command results. msgid "AJAX error" @@ -7116,11 +7115,11 @@ msgstr "" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" -msgstr "" +msgstr "Agindua burutua" #. TRANS: E-mail subject when a command has failed. msgid "Command failed" -msgstr "" +msgstr "Aginduak huts egin du" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. msgid "Notice with that id does not exist." @@ -7174,7 +7173,7 @@ msgstr "" #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." -msgstr "" +msgstr "Mezua gogoko bezala markatua." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. @@ -7239,26 +7238,26 @@ msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. #, php-format msgid "Fullname: %s" -msgstr "" +msgstr "Izen osoa: %s" #. TRANS: Whois output. %s is the location of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a location. #, php-format msgid "Location: %s" -msgstr "" +msgstr "Kokalekua: %s" #. TRANS: Whois output. %s is the homepage of the queried user. #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a homepage. #, php-format msgid "Homepage: %s" -msgstr "" +msgstr "Orrialde nagusia: %s" #. TRANS: Whois output. %s is the bio information of the queried user. #, php-format msgid "About: %s" -msgstr "" +msgstr "Honi buruz: %s" #. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server). #. TRANS: %s is a remote profile. @@ -7284,7 +7283,7 @@ msgstr "Ezin diozu mezurik bidali erabiltzaile honi." #. TRANS: Error text shown sending a direct message fails with an unknown reason. msgid "Error sending direct message." -msgstr "" +msgstr "Errorea zuzeneko mezua bidaltzean." #. TRANS: Message given having repeated a notice from another user. #. TRANS: %s is the name of the user for which the notice was repeated. @@ -7607,13 +7606,13 @@ msgstr "" #. TRANS: Menu item in local navigation menu. msgctxt "MENU" msgid "Groups" -msgstr "" +msgstr "Taldeak" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" msgid "Lists" -msgstr "" +msgstr "Zerrendak" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7622,7 +7621,7 @@ msgstr "Ezabatu" #. TRANS: Description of form for deleting a user. msgid "Delete this user" -msgstr "" +msgstr "Ezabatu erabiltzaile hau" #. TRANS: Exception. %s is an ID. #, php-format @@ -7676,12 +7675,12 @@ msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" -msgstr "" +msgstr "Jarioak" #. TRANS: List element on gallery action page to show all tags. msgctxt "TAGS" msgid "All" -msgstr "" +msgstr "Guztiak" #. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" @@ -7694,7 +7693,7 @@ msgstr "" #. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Eman \"%s\" rola erabiltzaile honi" #. TRANS: Button text for the form that will block a user from a group. msgctxt "BUTTON" @@ -7763,19 +7762,19 @@ msgstr "Taldea" #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "%s taldea" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "Kideak" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "%s taldeko kideak" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #. TRANS: %d is the number of pending members. @@ -7796,27 +7795,27 @@ msgstr "" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" msgid "Blocked" -msgstr "" +msgstr "Blokeatuta" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s erabiltzaile blokeatuta" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" -msgstr "" +msgstr "Admin" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "Editatu %s taldearen ezaugarriak" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" @@ -7828,7 +7827,7 @@ msgstr "Logotipoa" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "Gehitu edo aldatu %s(r)en logoa" #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" @@ -7877,7 +7876,7 @@ msgstr "" #. TRANS: Exception thrown when trying to resize an unknown file type. #. TRANS: Exception thrown when trying resize an unknown file type. msgid "Unknown file type" -msgstr "" +msgstr "Fitxategi mota ezezaguna" #. TRANS: Number of megabytes. %d is the number. #, php-format @@ -7916,7 +7915,7 @@ msgstr "" #. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." -msgstr "" +msgstr "Sarrera ontziko jatorri ezezaguna %d." #. TRANS: Server exception thrown trying to initialise an IM plugin without meeting all prerequisites. msgid "Queueing must be enabled to use IM plugins." @@ -7969,12 +7968,12 @@ msgstr "" #. TRANS: Button text for joining a group. msgctxt "BUTTON" msgid "Join" -msgstr "" +msgstr "Batu" #. TRANS: Button text on form to leave a group. msgctxt "BUTTON" msgid "Leave" -msgstr "" +msgstr "Utzi" #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8131,7 +8130,7 @@ msgstr "" #. TRANS: %s is the sending user's nickname. #, php-format msgid "New private message from %s" -msgstr "" +msgstr "%s(r)en mezu pribatu berria" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, @@ -8261,7 +8260,7 @@ msgstr "Sarrera-ontzia" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. msgid "Your incoming messages." -msgstr "" +msgstr "Jaso dituzun mezuak." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. msgctxt "MENU" @@ -8278,7 +8277,7 @@ msgstr "" #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." -msgstr "" +msgstr "Erregistratu gabeko erabiltzailea." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." @@ -8311,10 +8310,11 @@ msgstr "" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." msgstr "" +"Errore bat egon da fitxategia datubasean gordetzerakoan. Saiatau berriro." #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. msgid "File exceeds user's quota." -msgstr "" +msgstr "Fitxategiak erabiltzailearen kuota gainditu du." #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. @@ -8343,21 +8343,21 @@ msgstr "" #. TRANS: Form legend for direct notice. msgid "Send a direct notice" -msgstr "" +msgstr "Bidali zuzeneko mezua" #. TRANS: Label entry in drop-down selection box in direct-message inbox/outbox. #. TRANS: This is the default entry in the drop-down box, doubling as instructions #. TRANS: and a brake against accidental submissions with the first user in the list. msgid "Select recipient:" -msgstr "" +msgstr "Hartzailea aukeratu:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "" #. TRANS: Dropdown label in direct notice form. msgid "To" -msgstr "" +msgstr "Nori" #. TRANS: Button text for sending a direct notice. msgctxt "Send button for sending notice" @@ -8366,37 +8366,37 @@ msgstr "Bidali" #. TRANS: Header in message list. msgid "Messages" -msgstr "" +msgstr "Mezuak" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. msgid "from" -msgstr "" +msgstr "nork" #. TRANS: A possible notice source (web interface). msgctxt "SOURCE" msgid "web" -msgstr "" +msgstr "web" #. TRANS: A possible notice source (XMPP). msgctxt "SOURCE" msgid "xmpp" -msgstr "" +msgstr "xmpp" #. TRANS: A possible notice source (e-mail). msgctxt "SOURCE" msgid "mail" -msgstr "" +msgstr "mail" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "omb" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" msgid "api" -msgstr "" +msgstr "api" #. TRANS: Client exception thrown when no author for an activity was found. msgid "Cannot get author for activity." @@ -8436,23 +8436,23 @@ msgstr "" #. TRANS: Title for notice label. %s is the user's nickname. #, php-format msgid "What's up, %s?" -msgstr "" +msgstr "Zer berri, %s?" #. TRANS: Input label in notice form for adding an attachment. msgid "Attach" -msgstr "" +msgstr "Atxikitu" #. TRANS: Title for input field to attach a file to a notice. msgid "Attach a file." -msgstr "" +msgstr "Atxikitu fitxategi bat." #. TRANS: Field label to add location to a notice. msgid "Share my location" -msgstr "" +msgstr "Nire kokalekua zabaldu" #. TRANS: Text to not share location for a notice in notice form. msgid "Do not share my location" -msgstr "" +msgstr "Ez zabaldu nire kokalekua" #. TRANS: Timeout error text for location retrieval in notice form. msgid "" @@ -8500,40 +8500,40 @@ msgstr "" #. TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname. msgid "Repeated by" -msgstr "" +msgstr "Errepikatzailea" #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice" -msgstr "" +msgstr "Erantzun mezu hau" #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" -msgstr "" +msgstr "Erantzun" #. TRANS: Link title in notice list item to delete a notice. msgid "Delete this notice" -msgstr "" +msgstr "Ezabatu mezu hau" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." -msgstr "" +msgstr "Errepikatutako mezua." #. TRANS: Field label for notice text. msgid "Update your status..." -msgstr "" +msgstr "Zure egoera eguneratu..." #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" -msgstr "" +msgstr "Zirikatu erabiltzaile hau" #. TRANS: Button text to nudge/ping another user. msgctxt "BUTTON" msgid "Nudge" -msgstr "" +msgstr "Zirikatu" #. TRANS: Button title to nudge/ping another user. msgid "Send a nudge to this user." -msgstr "" +msgstr "Zirikatu erabiltzaile hau." #. TRANS: Exception thrown when creating a new profile fails in OAuth store. msgid "Error inserting new profile." @@ -8549,11 +8549,11 @@ msgstr "" #. TRANS: Exception thrown when a notice is denied because it has been sent before. msgid "Duplicate notice." -msgstr "" +msgstr "Bikoiztutako mezua." #. TRANS: Exception thrown when creating a new subscription fails in OAuth store. msgid "Could not insert new subscription." -msgstr "" +msgstr "Ezin izan da harpidetza berria gehitu." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. msgid "No oEmbed API endpoint available." @@ -8562,7 +8562,7 @@ msgstr "" #. TRANS: Field label for list. msgctxt "LABEL" msgid "List" -msgstr "" +msgstr "Zerrenda" #. TRANS: Field title for list. msgid "Change the list (letters, numbers, -, ., and _ are allowed)." @@ -8582,7 +8582,7 @@ msgstr[1] "" #. TRANS: Button title to delete a list. msgid "Delete this list." -msgstr "" +msgstr "Ezabatu zerrenda hau." #. TRANS: Header in list edit form. msgid "Add or remove people" @@ -8591,12 +8591,12 @@ msgstr "" #. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" -msgstr "" +msgstr "Bilatu" #. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "List" -msgstr "" +msgstr "Zerrenda" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. @@ -8607,13 +8607,13 @@ msgstr "" #. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Listed" -msgstr "" +msgstr "Zerrendatuta" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. msgctxt "MENU" msgid "Subscribers" -msgstr "" +msgstr "Harpidetuak" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. @@ -8624,7 +8624,7 @@ msgstr "" #. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" -msgstr "" +msgstr "Editatu" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. @@ -8634,7 +8634,7 @@ msgstr "" #. TRANS: Link description for link to list of users tagged with a tag. msgid "Tagged" -msgstr "" +msgstr "Etiketatuta" #. TRANS: Title for link to edit list settings. msgid "Edit list settings." @@ -8647,12 +8647,12 @@ msgstr "Aldatu" #. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" -msgstr "" +msgstr "Pribatua" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "List Subscriptions" -msgstr "" +msgstr "Harpidetzak zerrendatu" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. @@ -8692,21 +8692,21 @@ msgstr "" #. TRANS: Label in lists widget. msgctxt "LABEL" msgid "Your lists" -msgstr "" +msgstr "Zure zerrendak" #. TRANS: Fieldset legend in lists widget. msgctxt "LEGEND" msgid "Edit lists" -msgstr "" +msgstr "Editatu zerrendak" #. TRANS: Label in self tags widget. msgctxt "LABEL" msgid "Tags" -msgstr "" +msgstr "Etiketak" #. TRANS: Title for section contaning lists with the most subscribers. msgid "Popular lists" -msgstr "" +msgstr "Zerrenda arrakastasuak" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. @@ -8727,7 +8727,7 @@ msgstr "" #. TRANS: Title for page that displays lists a user has subscribed to. msgid "List subscriptions" -msgstr "" +msgstr "Zerrendatu harpidetzak" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -8738,7 +8738,7 @@ msgstr "Profila" #. TRANS: Menu item title in personal group navigation menu. msgid "Your profile" -msgstr "" +msgstr "Zure profila" #. TRANS: Menu item in personal group navigation menu. msgctxt "MENU" @@ -8753,12 +8753,12 @@ msgstr "Gogokoenak" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) msgctxt "FIXME" msgid "User" -msgstr "" +msgstr "Erabiltzailea" #. TRANS: Menu item in personal group navigation menu. msgctxt "MENU" msgid "Messages" -msgstr "" +msgstr "Mezuak" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -8766,20 +8766,22 @@ msgstr "Jaso dituzun mezuak" #. TRANS: Displayed as version information for a plugin if no version information was found. msgid "Unknown" -msgstr "" +msgstr "Ezezaguna" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Ezgaitu" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Gaitu" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -8802,11 +8804,11 @@ msgstr "Saioa itxi" #. TRANS: Menu item title in primary navigation panel. msgid "Logout from the site." -msgstr "" +msgstr "Saioa itxi gunean." #. TRANS: Menu item title in primary navigation panel. msgid "Login to the site." -msgstr "" +msgstr "Saioa hasi gunean." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8815,7 +8817,7 @@ msgstr "Bilatu" #. TRANS: Menu item title in primary navigation panel. msgid "Search the site." -msgstr "" +msgstr "Bilatu gunean." #. TRANS: H2 text for user subscription statistics. msgid "Following" @@ -8835,7 +8837,7 @@ msgstr "Partaidea noiztik" #. TRANS: Label for user statistics. msgid "Notices" -msgstr "" +msgstr "Mezuak" #. TRANS: Label for user statistics. #. TRANS: Average count of posts made per day since account registration. @@ -8848,7 +8850,7 @@ msgstr "Taldeak" #. TRANS: H2 text for user list membership statistics. msgid "Lists" -msgstr "" +msgstr "Zerrendak" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -8861,7 +8863,7 @@ msgstr "Erabiltzailearen taldeak" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "Recent tags" -msgstr "" +msgstr "Etiketa berriak" #. TRANS: Menu item title in search group navigation panel. msgid "Recent tags" @@ -8870,17 +8872,17 @@ msgstr "Etiketa berriak" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "Featured" -msgstr "" +msgstr "Bereizitakoa" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "Popular" -msgstr "" +msgstr "Arrakastatsua" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "Modako gaiak" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -8892,7 +8894,7 @@ msgstr "Ohar hau errepikatu?" #. TRANS: Button title to repeat a notice on notice repeat form. msgid "Repeat this notice." -msgstr "" +msgstr "Errepikatu mezu hau." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -8901,7 +8903,7 @@ msgstr "" #. TRANS: Client error on action trying to visit a non-existing page. msgid "Page not found." -msgstr "" +msgstr "Orrialdea ez da aurkitu." #. TRANS: Title of form to sandbox a user. msgctxt "TITLE" @@ -8914,7 +8916,7 @@ msgstr "" #. TRANS: Fieldset legend for the search form. msgid "Search site" -msgstr "" +msgstr "Guneak bilaketa" #. TRANS: Used as a field label for the field where one or more keywords #. TRANS: for searching can be entered. @@ -8951,24 +8953,24 @@ msgstr "" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "People" -msgstr "" +msgstr "Jendea" #. TRANS: Menu item title in search group navigation panel. msgid "Find people on this site" -msgstr "" +msgstr "Bilatu jendea gune honetan" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "Notices" -msgstr "" +msgstr "Mezuak" #. TRANS: Menu item title in search group navigation panel. msgid "Find content of notices" -msgstr "" +msgstr "Bilatu mezuen edukiak" #. TRANS: Menu item title in search group navigation panel. msgid "Find groups on this site" -msgstr "" +msgstr "Bilatu taldeak gune honetan" #. TRANS: Secondary navigation menu item leading to help on StatusNet. msgctxt "MENU" @@ -8978,38 +8980,38 @@ msgstr "Laguntza" #. TRANS: Secondary navigation menu item leading to text about StatusNet site. msgctxt "MENU" msgid "About" -msgstr "" +msgstr "Honi buruz" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. msgctxt "MENU" msgid "FAQ" -msgstr "" +msgstr "FAQ" #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" -msgstr "" +msgstr "TOS" #. TRANS: Secondary navigation menu item leading to privacy policy. msgctxt "MENU" msgid "Privacy" -msgstr "" +msgstr "Pribatutasuna" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. msgctxt "MENU" msgid "Source" -msgstr "" +msgstr "Iturria" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. msgctxt "MENU" msgid "Version" -msgstr "" +msgstr "Bertsioa" #. TRANS: Secondary navigation menu item leading to e-mail contact information on the #. TRANS: StatusNet site, where to report bugs, ... msgctxt "MENU" msgid "Contact" -msgstr "" +msgstr "Kontaktatu" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. msgctxt "MENU" @@ -9018,11 +9020,11 @@ msgstr "" #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" -msgstr "" +msgstr "Izenik gabeko atala" #. TRANS: Default "More..." title for section/sidebar widget. msgid "More..." -msgstr "" +msgstr "Gehiago..." #. TRANS: Header in settings navigation panel. msgctxt "HEADER" @@ -9036,25 +9038,25 @@ msgstr "" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Avatar" -msgstr "" +msgstr "Avatarra" #. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" -msgstr "" +msgstr "Igo avatar bat" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Password" -msgstr "" +msgstr "Pasahitza" #. TRANS: Menu item title in settings navigation panel. msgid "Change your password" -msgstr "" +msgstr "Aldatu zure pasahitza" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Email" -msgstr "" +msgstr "Posta-e" #. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" @@ -9063,29 +9065,29 @@ msgstr "" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "URL" -msgstr "" +msgstr "URL" #. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" -msgstr "" +msgstr "URL moztaileak" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "IM" -msgstr "" +msgstr "BM" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by instant messenger (IM)" -msgstr "" +msgstr "Bapateko mezularitza (BM) bidezko eguneraketak" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "SMS" -msgstr "" +msgstr "SMS" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" -msgstr "" +msgstr "SMS bidezko eguneraketak" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" @@ -9099,16 +9101,16 @@ msgstr "" #. TRANS: Title of form to silence a user. msgctxt "TITLE" msgid "Silence" -msgstr "" +msgstr "Isilik" #. TRANS: Description of form to silence a user. msgid "Silence this user" -msgstr "" +msgstr "Isilarazi erabiltzaile hau" #. TRANS: Menu item in local navigation menu. msgctxt "MENU" msgid "Subscriptions" -msgstr "" +msgstr "Harpidetzak" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. @@ -9120,7 +9122,7 @@ msgstr "" #. TRANS: %s is a user nickname. #, php-format msgid "People subscribed to %s." -msgstr "" +msgstr "%s(e)ra harpidetutako jendea." #. TRANS: Menu item in local navigation menu. #. TRANS: %d is the number of pending subscription requests. @@ -9149,13 +9151,13 @@ msgstr "" #. TRANS: Menu item in local navigation menu. msgctxt "MENU" msgid "Invite" -msgstr "" +msgstr "Gonbidatu" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is the StatusNet sitename. #, php-format msgid "Invite friends and colleagues to join you on %s." -msgstr "" +msgstr "Gonbidatu lagunak zurekin bat egitera %s(e)n." #. TRANS: Form of form to subscribe to a user. msgid "Subscribe to this user" @@ -9172,11 +9174,11 @@ msgstr "" #. TRANS: Content displayed in a tag cloud section if there are no tags. msgctxt "NOTAGS" msgid "None" -msgstr "" +msgstr "Ezer ez" #. TRANS: Server exception displayed if a theme name was invalid. msgid "Invalid theme name." -msgstr "" +msgstr "Okerreko itxura izena." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." @@ -9184,7 +9186,7 @@ msgstr "" #. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." -msgstr "" +msgstr "Itxuraren fitxategia falta da edo gaizki igo da." #. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. #. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. @@ -9193,7 +9195,7 @@ msgstr "" #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. msgid "Invalid theme: Bad directory structure." -msgstr "" +msgstr "Itxura okerra: direktorio egitura okerra du." #. TRANS: Client exception thrown when an uploaded theme is larger than the limit. #. TRANS: %d is the number of bytes of the uncompressed theme. @@ -9202,11 +9204,15 @@ msgid "Uploaded theme is too large; must be less than %d byte uncompressed." msgid_plural "" "Uploaded theme is too large; must be less than %d bytes uncompressed." msgstr[0] "" +"Igotako itxura handiegia da; erauzitako fitxategiaren tamaina byte %d baino " +"txikiagoa izan behar da." msgstr[1] "" +"Igotako itxura handiegia da; erauzitako fitxategiaren tamaina %d byte baino " +"txikiagoa izan behar da." #. TRANS: Server exception thrown when an uploaded theme is incomplete. msgid "Invalid theme archive: Missing file css/display.css" -msgstr "" +msgstr "Itxura fitxategi okerra: css/display.css fitxategia falta da" #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9222,7 +9228,7 @@ msgstr "" #. TRANS: %s is the file type that is not allowed. #, php-format msgid "Theme contains file of type \".%s\", which is not allowed." -msgstr "" +msgstr "Itxurak \".%s\" motako fitxategia du, onartzen ez dena." #. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." @@ -9231,20 +9237,20 @@ msgstr "" #. TRANS: Header for Notices section. msgctxt "HEADER" msgid "Notices" -msgstr "" +msgstr "Mezuak" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. #, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Erakutsi erantzuna" +msgstr[1] "Erakutsi %d erantzunok" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "Zu" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. @@ -9292,15 +9298,15 @@ msgstr[1] "" #. TRANS: Form legend. #, php-format msgid "Search and list people" -msgstr "" +msgstr "Bilatu eta zerrendatu jendea" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "Guztia" #. TRANS: Dropdown option for searching in profiles. msgid "Fullname" -msgstr "" +msgstr "Izen osoa" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" @@ -9345,11 +9351,11 @@ msgstr "" #. TRANS: Label for drop-down of potential addressees. msgctxt "LABEL" msgid "To:" -msgstr "" +msgstr "Nori:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private?" -msgstr "" +msgstr "Pribatua?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. #, php-format @@ -9471,182 +9477,34 @@ msgid "Getting backup from file '%s'." msgstr "" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "Etiketa baliogabea: \"%s\"." +msgstr "" #. TRANS: Server exception. %s is a URI. -#, fuzzy, php-format +#, php-format msgid "Tried to update avatar for unsaved remote profile %s." -msgstr "Errorea urruneko profila eguneratzean." +msgstr "" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "Ezin izan da etiketa gorde." +msgstr "" #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "Ezin izan da profila gorde." +msgstr "" #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "Taldearen jarioa ezin izan da sortu - %s" +msgstr "" #. TRANS: Exception. -#, fuzzy msgid "Not a valid webfinger address." -msgstr "Posta-e helbidea okerra da." +msgstr "" -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "Ezin izan da profila gorde." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Ezinezkoa izan da zure diseinu ezarpenak gordetzea." - -#~ msgid "Could not update your design." -#~ msgstr "Zure diseinua ezin da eguneratu." - -#~ msgid "Design" -#~ msgstr "Diseinua" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "StaturNet gune honentzako diseinu ezarpenak" - -#~ msgid "Theme not available: %s." -#~ msgstr "%s itxura ez dago eskuragai." - -#~ msgid "Change logo" -#~ msgstr "Logoa aldatu" - -#~ msgid "Change theme" -#~ msgstr "Itxura aldatu" - -#~ msgid "Site theme" -#~ msgstr "Guneko itxura" - -#~ msgid "Theme for the site." -#~ msgstr "Gunearentzako itxura" - -#~ msgid "Custom theme" -#~ msgstr "Itxura pertsonalizatua" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr ".ZIP fitxategi bat igo dezakezu zure itxurarakin" - -#~ msgid "Change background image" -#~ msgstr "Aldatu atzeko planoko irudia" - -#~ msgid "Background" -#~ msgstr "Atzeko planoa" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Gunearen atzeko planorako irudi bat igo dezakezu. Fitxategiaren " -#~ "gehienezko tamaina %1$s da." - -#~ msgid "On" -#~ msgstr "Gaitu" - -#~ msgid "Off" -#~ msgstr "Ezgaitu" - -#~ msgid "Turn background image on or off." -#~ msgstr "Gaitu edo ezgaitu atzeko planoko irudia." - -#~ msgid "Tile background image" -#~ msgstr "Egin mosaikoa atzeko planoko irudiarekin" - -#~ msgid "Change colors" -#~ msgstr "Aldatu koloreak" - -#~ msgid "Content" -#~ msgstr "Edukia" - -#~ msgid "Sidebar" -#~ msgstr "Albo-barra" - -#~ msgid "Text" -#~ msgstr "Testua" - -#~ msgid "Links" -#~ msgstr "Estekak" - -#~ msgid "Advanced" -#~ msgstr "Aurreratua" - -#~ msgid "Custom CSS" -#~ msgstr "CSS pertsonalizatua" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Erabili lehenetsiak" - -#~ msgid "Restore default designs." -#~ msgstr "Berrezarri diseinu lehenetsia." - -#~ msgid "Reset back to default." -#~ msgstr "Berrezarri lehenetsiak." - -#~ msgid "Save design." -#~ msgstr "Gorde diseinua." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Saioa hasi behar duzu talde bat editatzeko." - -#~ msgid "Group design" -#~ msgstr "Taldearen diseinua" - -#~ msgid "Unable to update your design settings." -#~ msgstr "Ezinezkoa izan da zure diseinu ezarpenak eguneratzea." - -#~ msgid "Design preferences saved." -#~ msgstr "Diseinu-hobespenak gordeta." - -#~ msgid "Backgrounds" -#~ msgstr "Behekoak" - -#~ msgid "Server for backgrounds." -#~ msgstr "Behekoen zerbitzaria." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Behekoen web bidea." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "SSL orrialdetako behekoen zerbitzaria." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "SSL orrialdetako behekoen web bidea." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Behekoak gordetzen diren direktorioa." - -#~ msgid "Profile design" -#~ msgstr "Profilaren diseinua" - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Gozatu zure taloa!" - -#~ msgid "Design settings" -#~ msgstr "Diseinu ezarpenak " - -#~ msgid "View profile designs" -#~ msgstr "Ikusi profilaren diseinuak" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Erakutsi ala ezkutatu profilaren diseinuak." - -#~ msgid "Unable to delete design setting." -#~ msgstr "Ezin dira diseinuko ezarpenak ezabatu." - -#~ msgid "Design configuration" -#~ msgstr "Diseinuaren konfigurazioa" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Diseinua" +msgstr "" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index ba76aef3be..d6ab6df565 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:15+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:47+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,9 +29,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -304,7 +304,7 @@ msgstr "" "اولین کسی باشید Ú©Ù‡ در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام Ù…ÛŒâ€ŒÙØ±Ø³ØªØ¯." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2140,7 +2140,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." @@ -3213,6 +3213,7 @@ msgstr "نشانی اینترنتی منبع مورد نیاز است." msgid "Could not create application." msgstr "نمی‌توان برنامه را ساخت." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "اندازه نادرست است." @@ -5648,7 +5649,6 @@ msgstr "" "Ú†Ù‡ مدت کاربران باید منتظر بمانند (به ثانیه) تا همان چیز را دوباره Ø¨ÙØ±Ø³ØªÙ†Ø¯." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "خروج" @@ -8936,7 +8936,7 @@ msgstr "ÙØ±Ø³ØªØ§Ø¯Ù† یک پیام مستقیم" msgid "Select recipient:" msgstr "یک اپراتور را انتخاب کنید" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "تایید نشده!" @@ -9400,8 +9400,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10171,205 +10173,3 @@ msgstr "یک نشانی پست الکترونیکی معتبر نیست." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "نمی‌توان نمایه را ذخیره کرد." - -#~ msgid "Unable to save your design settings." -#~ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." - -#~ msgid "Could not update your design." -#~ msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد." - -#~ msgid "Design" -#~ msgstr "طرح" - -#~ msgid "Theme not available: %s." -#~ msgstr "پوسته در دسترس نیست: %s." - -#~ msgid "Change logo" -#~ msgstr "تغییر نشان" - -#~ msgid "Change theme" -#~ msgstr "تغییر پوسته" - -#~ msgid "Site theme" -#~ msgstr "پوستهٔ وب‌گاه" - -#~ msgid "Theme for the site." -#~ msgstr "پوسته برای وب‌گاه" - -#~ msgid "Custom theme" -#~ msgstr "پوستهٔ اختصاصی" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "شما می‌توانید یک پوستهٔ اختصاصی StatusNet را به‌عنوان یک آرشیو .ZIP بارگذاری " -#~ "کنید." - -#~ msgid "Change background image" -#~ msgstr "تغییر تصویر پیش‌زمینه" - -#~ msgid "Background" -#~ msgstr "پیش‌زمینه" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "شما می‌توانید یک تصویر پیش‌زمینه را برای وب‌گاه بارگذاری کنید. بیشینهٔ اندازهٔ " -#~ "پرونده %1 $s است." - -#~ msgid "On" -#~ msgstr "روشن" - -#~ msgid "Off" -#~ msgstr "خاموش" - -#~ msgid "Turn background image on or off." -#~ msgstr "تصویر پیش‌زمینه را ÙØ¹Ø§Ù„ یا ØºÛŒØ±ÙØ¹Ø§Ù„ کنید." - -#~ msgid "Tile background image" -#~ msgstr "تصویر پیش‌زمینهٔ موزاییکی" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "تغییر رنگ‌ها" - -#~ msgid "Content" -#~ msgstr "محتوا" - -#~ msgid "Sidebar" -#~ msgstr "ستون کناری" - -#~ msgid "Text" -#~ msgstr "متن" - -#~ msgid "Links" -#~ msgstr "پیوندها" - -#~ msgid "Advanced" -#~ msgstr "Ù¾ÛŒØ´Ø±ÙØªÙ‡" - -#~ msgid "Custom CSS" -#~ msgstr "CSS اختصاصی" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "بازگرداندن طرح‌های Ù¾ÛŒØ´â€ŒÙØ±Ø¶" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "برگشت به حالت پیش گزیده" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "ذخیره‌کردن طرح" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "برای ویرایش گروه باید وارد شوید." - -#~ msgid "Group design" -#~ msgstr "ظاهر گروه" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "ظاهر گروه را تغییر دهید تا شما را راضی کند." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." - -#~ msgid "Design preferences saved." -#~ msgstr "ترجیحات طرح ذخیره شد." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "یک پیام را به خودتان Ù†ÙØ±Ø³ØªÛŒØ¯Ø› در عوض آن را آهسته برای خود بگویید." - -#~ msgid "Backgrounds" -#~ msgstr "پس زمینه‌ها" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "پوسته برای وب‌گاه" - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "مسیر پوشه برای زبان‌های محلی" - -#~ msgid "Profile design" -#~ msgstr "طراحی نمایه" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "شیوهٔ نمایش نمایهٔ خود را با یک تصویر پیش‌زمینه Ùˆ یک رنگ از جعبهٔ رنگ‌ها به " -#~ "انتخاب خودتان Ø³ÙØ§Ø±Ø´ÛŒâ€ŒØ³Ø§Ø²ÛŒ کنید." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "از هات داگ خود لذت ببرید!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "ذخیرهٔ تنظیمات وب‌گاه" - -#~ msgid "View profile designs" -#~ msgstr "نمایش طراحی‌های نمایه" - -#~ msgid "Show or hide profile designs." -#~ msgstr "نمایش دادن یا پنهان کردن طراحی‌های نمایه." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "پیش‌زمینه" - -#~ msgid "Unable to delete design setting." -#~ msgstr "نمی توان تنظیمات طراحی شده را پاک کرد ." - -#~ msgid "Design configuration" -#~ msgstr "پیکربندی طرح" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "طرح" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "ذخیره‌کردن طرح" - -#~ msgid "Change colours" -#~ msgstr "تغییر رنگ‌ها" - -#~ msgid "Use defaults" -#~ msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÚ©Ø±Ø¯Ù† از Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§" - -#~ msgid "Upload file" -#~ msgstr "بارگذاری پرونده" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "شما می‌توانید تصویر پیش‌زمینهٔ شخصی خود را بارگذاری کنید. بیشینهٔ اندازهٔ " -#~ "پرونده Û² مگابایت است." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "روشن" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "خاموش" - -#~ msgid "Design defaults restored." -#~ msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€ŒÙ‡Ø§ÛŒ طراحی برگردانده شدند." - -#~ msgid "Design your profile" -#~ msgstr "نمایهٔ خود را طراحی کنید" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index e70521e0c2..4dc9b9abba 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:16+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:48+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -309,7 +309,7 @@ msgstr "" "Voit yrittää [nykäistä %1$s](../%2$s) heidän profiilinsa kautta tai [lähetä " "heille viesti](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2110,7 +2110,7 @@ msgstr "" "Julkisen tagin muuttaminen yksityiseksi poistaa pysyvästi siihen liittyvät " "tilaukset. Haluatko silti jatkaa?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Luettelon päivittäminen epäonnistui." @@ -3177,6 +3177,7 @@ msgstr "" msgid "Could not create application." msgstr "Ei voitu lisätä aliasta." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Virheellinen kuva." @@ -5563,7 +5564,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Kirjaudu ulos" @@ -8749,7 +8749,7 @@ msgstr "Lähetä suora viesti" msgid "Select recipient:" msgstr "Valitse vastaanottaja:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Ei ole tilattu!." @@ -9198,8 +9198,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Ota käyttöön" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(Liitännäinen ei ole käytössä.)" #. TRANS: Menu item in primary navigation panel. @@ -9968,187 +9971,3 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Profiilin tallennus epäonnistui." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Ulkoasun tallennus epäonnistui." - -#~ msgid "Could not update your design." -#~ msgstr "Ulkoasua ei voitu päivittää." - -#~ msgid "Design" -#~ msgstr "Ulkoasu" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Ulkoasuasetukset tälle StatusNet-sivustolle" - -#~ msgid "Theme not available: %s." -#~ msgstr "Teema ei ole käytettävissä: %s." - -#~ msgid "Change logo" -#~ msgstr "Vaihda väriä" - -#~ msgid "Change theme" -#~ msgstr "Teeman vaihto" - -#~ msgid "Site theme" -#~ msgstr "Sivuston teema" - -#~ msgid "Theme for the site." -#~ msgstr "Teema sivustolle." - -#~ msgid "Custom theme" -#~ msgstr "Mukautettu teema" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Voit ladata mukautetun StatusNet-teeman .ZIP-pakettina." - -#~ msgid "Change background image" -#~ msgstr "Vaihda tautakuva" - -#~ msgid "Background" -#~ msgstr "Tausta" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "Voit ladata ryhmälle taustakuvan. Enimmäiskoko on %1$s." - -#~ msgid "On" -#~ msgstr "On" - -#~ msgid "Off" -#~ msgstr "Off" - -#~ msgid "Turn background image on or off." -#~ msgstr "Kytke taustakuva päälle tai pois päältä." - -#~ msgid "Tile background image" -#~ msgstr "Taustakuvan toisto vierekkäin" - -#~ msgid "Change colors" -#~ msgstr "Vaihda värejä" - -#~ msgid "Content" -#~ msgstr "Sisältö" - -#~ msgid "Sidebar" -#~ msgstr "Sivupalkki" - -#~ msgid "Text" -#~ msgstr "Teksti" - -#~ msgid "Links" -#~ msgstr "Linkit" - -#~ msgid "Advanced" -#~ msgstr "Lisäasetukset" - -#~ msgid "Custom CSS" -#~ msgstr "Mukautettu CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Käytä oletusasetuksia" - -#~ msgid "Restore default designs." -#~ msgstr "Palauta oletusulkonäkö." - -#~ msgid "Reset back to default." -#~ msgstr "Palauta oletusulkoasu." - -#~ msgid "Save design." -#~ msgstr "Tallenna ulkoasu." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "" -#~ "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." - -#~ msgid "Group design" -#~ msgstr "Ryhmän ulkoasu" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "Mukauta ryhmäsi ulkonäköä taustakuvan ja väripaletin valinnalla." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Ulkoasun tallennus epäonnistui." - -#~ msgid "Design preferences saved." -#~ msgstr "Ulkoasuasetukset tallennettu." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." - -#~ msgid "Backgrounds" -#~ msgstr "Taustakuvat" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Kirjaudu ulos palvelusta" - -#~ msgid "Profile design" -#~ msgstr "Profiilin ulkoasu" - -#~ msgid "Design settings" -#~ msgstr "Ulkoasuasetukset" - -#, fuzzy -#~ msgid "View profile designs" -#~ msgstr "Näytä tai piillota profiilin ulkoasu." - -#~ msgid "Show or hide profile designs." -#~ msgstr "Näytä tai piillota profiilin ulkoasu." - -#~ msgid "Background file" -#~ msgstr "Taustakuvatiedosto" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Ulkoasun asetuksia ei voitu poistaa." - -#~ msgid "Design configuration" -#~ msgstr "Ulkoasun asetukset" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Ulkoasu" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Ryhmän ulkoasu" - -#~ msgid "Change colours" -#~ msgstr "Vaihda väriä" - -#~ msgid "Use defaults" -#~ msgstr "Käytä oletusasetuksia" - -#, fuzzy -#~ msgid "Upload file" -#~ msgstr "Lataa" - -#, fuzzy -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "On" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Off" - -#, fuzzy -#~ msgid "Design defaults restored." -#~ msgstr "Ulkoasuasetukset tallennettu." - -#, fuzzy -#~ msgid "Design your profile" -#~ msgstr "Käyttäjän profiili" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 595b145600..d793eaf32c 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:18+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -324,7 +324,7 @@ msgstr "" "profil ou [poster quelque chose à son intention](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2158,7 +2158,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Impossible de mettre à jour la liste." @@ -3235,6 +3235,7 @@ msgstr "L’URL source est requise." msgid "Could not create application." msgstr "Impossible de créer l’application." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Taille incorrecte." @@ -5664,7 +5665,6 @@ msgstr "" "la même chose de nouveau." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -9003,7 +9003,7 @@ msgstr "Envoyer un message direct" msgid "Select recipient:" msgstr "Sélectionner le destinataire :" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Aucun abonné réciproque." @@ -9468,8 +9468,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Activer" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10244,214 +10246,3 @@ msgstr "Adresse courriel invalide." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Impossible d’enregistrer le profil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Échec de la sauvegarde de vos paramètres de conception." - -#~ msgid "Could not update your design." -#~ msgstr "Impossible de mettre à jour votre conception." - -#~ msgid "Design" -#~ msgstr "Conception" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Paramètres de conception pour ce site StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Le thème n’est pas disponible : %s." - -#~ msgid "Change logo" -#~ msgstr "Modifier le logo" - -#~ msgid "Change theme" -#~ msgstr "Modifier le thème" - -#~ msgid "Site theme" -#~ msgstr "Thème du site" - -#~ msgid "Theme for the site." -#~ msgstr "Thème pour le site." - -#~ msgid "Custom theme" -#~ msgstr "Thème personnalisé" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Vous pouvez importer un thème StatusNet personnalisé dans une archive ." -#~ "ZIP." - -#~ msgid "Change background image" -#~ msgstr "Changer l’image d’arrière plan" - -#~ msgid "Background" -#~ msgstr "Arrière plan" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Vous pouvez importer une image d’arrière plan pour ce site. La taille " -#~ "maximale du fichier est de %1$s." - -#~ msgid "On" -#~ msgstr "Activé" - -#~ msgid "Off" -#~ msgstr "Désactivé" - -#~ msgid "Turn background image on or off." -#~ msgstr "Activer ou désactiver l’image d’arrière plan." - -#~ msgid "Tile background image" -#~ msgstr "Répéter l’image d’arrière plan" - -#~ msgid "Change colors" -#~ msgstr "Modifier les couleurs" - -#~ msgid "Content" -#~ msgstr "Contenu" - -#~ msgid "Sidebar" -#~ msgstr "Barre latérale" - -#~ msgid "Text" -#~ msgstr "Texte" - -#~ msgid "Links" -#~ msgstr "Liens" - -#~ msgid "Advanced" -#~ msgstr "Avancé" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personnalisé" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Utiliser les valeurs par défaut" - -#~ msgid "Restore default designs." -#~ msgstr "Restaurer les conceptions par défaut." - -#~ msgid "Reset back to default." -#~ msgstr "Revenir aux valeurs par défaut." - -#~ msgid "Save design." -#~ msgstr "Sauvegarder la conception." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Vous devez ouvrir une session pour modifier un groupe." - -#~ msgid "Group design" -#~ msgstr "Conception du groupe" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personnalisez l’apparence de votre groupe avec une image d’arrière plan " -#~ "et une palette de couleurs de votre choix" - -#~ msgid "Unable to update your design settings." -#~ msgstr "Échec de la mise à jour de vos paramètres de conception." - -#~ msgid "Design preferences saved." -#~ msgstr "Préférences de conception enregistrées." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "N’envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." - -#~ msgid "Backgrounds" -#~ msgstr "Arrière plans" - -#~ msgid "Server for backgrounds." -#~ msgstr "Serveur pour les fonds d’écran." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Chemin d’accès Internet vers les fonds d’écran." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Serveur pour les fonds d’écran sur les pages SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Chemin d’accès Internet vers les fonds d’écran sur les pages SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Le répertoire où les fonds d’écran sont stockés." - -#~ msgid "Profile design" -#~ msgstr "Conception de profil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personnalisez l’apparence de votre profil avec une image d’arrière plan " -#~ "et une palette de couleurs de votre choix." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Bon appétit !" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Sauvegarder les paramètres du site" - -#~ msgid "View profile designs" -#~ msgstr "Afficher les conceptions de profils" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Afficher ou masquer les paramètres de conception." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Arrière plan" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Impossible de supprimer les paramètres de conception." - -#~ msgid "Design configuration" -#~ msgstr "Configuration de la conception" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Conception" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Sauvegarder la conception" - -#~ msgid "Change colours" -#~ msgstr "Modifier les couleurs" - -#~ msgid "Use defaults" -#~ msgstr "Utiliser les valeurs par défaut" - -#~ msgid "Upload file" -#~ msgstr "Importer un fichier" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Vous pouvez importer votre image d’arrière plan personnelle. La taille " -#~ "maximale du fichier est de 2 Mo." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Activé" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Désactivé" - -#~ msgid "Design defaults restored." -#~ msgstr "Les paramètre par défaut de la conception ont été restaurés." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Ajouter ou modifier l’apparence du groupe « %s »" - -#~ msgid "Design your profile" -#~ msgstr "Concevez votre profil" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 61c37fe2e2..4722d7b1c1 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:20+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:51+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -293,7 +293,7 @@ msgstr "" "Tu puedis provâ a [pocâ %1$s](../%2$s) dal so profîl o ben [mandâi un avîs](%" "%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2063,7 +2063,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "No si à podût inzornâ la liste." @@ -3092,6 +3092,7 @@ msgstr "" msgid "Could not create application." msgstr "" +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "La figure no je valide." @@ -8448,7 +8449,7 @@ msgstr "" msgid "Select recipient:" msgstr "Sielç il destinatari:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "" @@ -8877,8 +8878,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Ative" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9606,128 +9609,3 @@ msgstr "La direzion di pueste eletroniche no je valide." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "No si à podût salvâ il profîl." - -#~ msgid "Design" -#~ msgstr "Grafiche" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Impuestazions de grafiche par chest sît StatusNet" - -#~ msgid "Change logo" -#~ msgstr "Cambie il logo" - -#~ msgid "Change theme" -#~ msgstr "Cambie il teme" - -#~ msgid "Site theme" -#~ msgstr "Teme dal sît" - -#~ msgid "Theme for the site." -#~ msgstr "Teme pal sît." - -#~ msgid "Custom theme" -#~ msgstr "Teme personalizât" - -#~ msgid "Change background image" -#~ msgstr "Cambie la figure di sfont" - -#~ msgid "Background" -#~ msgstr "Sfont" - -#~ msgid "On" -#~ msgstr "Ativade" - -#~ msgid "Off" -#~ msgstr "Disativade" - -#~ msgid "Turn background image on or off." -#~ msgstr "Ative o disative la figure di sfont." - -#~ msgid "Tile background image" -#~ msgstr "Figure di sfont in stîl mosaic" - -#~ msgid "Change colors" -#~ msgstr "Cambie i colôrs" - -#~ msgid "Content" -#~ msgstr "Contignût" - -#~ msgid "Sidebar" -#~ msgstr "Bare in bande" - -#~ msgid "Text" -#~ msgstr "Test" - -#~ msgid "Links" -#~ msgstr "Leams" - -#~ msgid "Advanced" -#~ msgstr "Avançadis" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalizât" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Dopre i parametris predeterminâts" - -#~ msgid "Restore default designs." -#~ msgstr "Torne ae grafiche predeterminade." - -#~ msgid "Reset back to default." -#~ msgstr "Torne ai valôrs iniziâi." - -#~ msgid "Save design." -#~ msgstr "Salve la grafiche" - -#~ msgid "Group design" -#~ msgstr "Grafiche dal grup" - -#~ msgid "Design preferences saved." -#~ msgstr "Preferencis pe grafiche salvadis." - -#~ msgid "Backgrounds" -#~ msgstr "Sfonts" - -#~ msgid "Profile design" -#~ msgstr "Grafiche dal profîl" - -#~ msgid "Design settings" -#~ msgstr "Impuestazions grafichis" - -#~ msgid "View profile designs" -#~ msgstr "Cjale grafichis dai profîi" - -#~ msgid "Background file" -#~ msgstr "File dal sfont" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Grafiche" - -#~ msgid "Change design" -#~ msgstr "Cambie la grafiche" - -#~ msgid "Change colours" -#~ msgstr "Cambie i colôrs" - -#~ msgid "Use defaults" -#~ msgstr "Dopre valôrs predeterminâts" - -#~ msgid "Upload file" -#~ msgstr "Cjame sù un file" - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Ativade" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Disativade" - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Zonte o cambie la grafiche di %s" - -#~ msgid "Design your profile" -#~ msgstr "Disegne il to profîl" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 693f0f774e..784264a668 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:21+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:52+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -294,7 +294,7 @@ msgstr "" "[publicar algo dirixido a el ou ela](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2141,7 +2141,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Non se puido actualizar o usuario." @@ -3231,6 +3231,7 @@ msgstr "Necesítase o URL de orixe." msgid "Could not create application." msgstr "Non se puido crear a aplicación." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Tamaño non válido." @@ -5684,7 +5685,6 @@ msgstr "" "nota de novo." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logotipo" @@ -8747,7 +8747,7 @@ msgstr "Nova mensaxe privada de %s" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -8771,10 +8771,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Non responda a esta mensaxe, non lle chegará ao remitente.\n" -"\n" -"Atentamente,\n" -"%5$s" +"Non responda a este correo electrónico, non lle chegará ao remitente." #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -9024,7 +9021,7 @@ msgstr "Enviar unha nota directa" msgid "Select recipient:" msgstr "Seleccionar o destinatario:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Non está subscrito!" @@ -9475,8 +9472,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Activar" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10235,212 +10234,3 @@ msgstr "O enderezo de correo electrónico é incorrecto." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Non se puido gardar o perfil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Non se puido gardar a súa configuración de deseño." - -#~ msgid "Could not update your design." -#~ msgstr "Non se puido actualizar o seu deseño." - -#~ msgid "Design" -#~ msgstr "Deseño" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Configuración de deseño para este sitio StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "O tema visual non está dispoñible: %s." - -#~ msgid "Change logo" -#~ msgstr "Cambiar o logo" - -#~ msgid "Change theme" -#~ msgstr "Cambiar o tema visual" - -#~ msgid "Site theme" -#~ msgstr "Tema visual do sitio" - -#~ msgid "Theme for the site." -#~ msgstr "Tema visual para o sitio." - -#~ msgid "Custom theme" -#~ msgstr "Tema visual personalizado" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet" - -#~ msgid "Change background image" -#~ msgstr "Cambiar a imaxe de fondo" - -#~ msgid "Background" -#~ msgstr "Fondo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Pode cargar unha imaxe de fondo para o sitio. O tamaño máximo para o " -#~ "ficheiro é de %1$s." - -#~ msgid "On" -#~ msgstr "Activado" - -#~ msgid "Off" -#~ msgstr "Desactivado" - -#~ msgid "Turn background image on or off." -#~ msgstr "Activar ou desactivar a imaxe de fondo." - -#~ msgid "Tile background image" -#~ msgstr "Imaxe de fondo en mosaico" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "Cambiar as cores" - -#~ msgid "Content" -#~ msgstr "Contido" - -#~ msgid "Sidebar" -#~ msgstr "Barra lateral" - -#~ msgid "Text" -#~ msgstr "Texto" - -#~ msgid "Links" -#~ msgstr "Ligazóns" - -#~ msgid "Advanced" -#~ msgstr "Avanzado" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalizado" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Utilizar os valores por defecto" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Restaurar o deseño por defecto" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Volver ao deseño por defecto" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Gardar o deseño" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Ten que estar identificado para editar un grupo." - -#~ msgid "Group design" -#~ msgstr "Deseño do grupo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personaliza o aspecto do grupo cunha imaxe de fondo e unha paleta de " -#~ "cores da súa escolla." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Non se puido gardar a súa configuración de deseño." - -#~ msgid "Design preferences saved." -#~ msgstr "Gardáronse as preferencias de deseño." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Non se envíe unha mensaxe, limítese a pensar nela." - -#~ msgid "Backgrounds" -#~ msgstr "Fondos" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Tema visual para o sitio." - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Ruta do directorio das traducións" - -#~ msgid "Profile design" -#~ msgstr "Deseño do perfil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalice a aparencia do seu perfil cunha imaxe de fondo e unha paleta " -#~ "de cores escollida por vostede." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Bo proveito!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Gardar a configuración do sitio" - -#~ msgid "View profile designs" -#~ msgstr "Deseños visuais do perfil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Amosar ou agochar os deseños do perfil." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Fondo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Non se puido borrar a configuración do deseño." - -#~ msgid "Design configuration" -#~ msgstr "Configuración do deseño" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Deseño" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Gardar o deseño" - -#~ msgid "Change colours" -#~ msgstr "Cambiar as cores" - -#~ msgid "Use defaults" -#~ msgstr "Utilizar os valores por defecto" - -#~ msgid "Upload file" -#~ msgstr "Cargar un ficheiro" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Pode cargar a súa imaxe de fondo persoal. O ficheiro non pode ocupar máis " -#~ "de 2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Activado" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Desactivado" - -#~ msgid "Design defaults restored." -#~ msgstr "Restableceuse o deseño por defecto." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Engadir ou modificar o deseño de %s" - -#~ msgid "Design your profile" -#~ msgstr "Deseñe o seu perfil" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 2a77c7345a..740a173d11 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:23+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -294,7 +294,7 @@ msgstr "" "×פשר לנסות [לדחוף ×ת %1$s](../%2$s) מדף המשתמש ×©×œ×”× ×ו [לשלוח ×œ×”× ×ž×©×”×•](%%%%" "action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2048,7 +2048,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "" @@ -3052,6 +3052,7 @@ msgstr "" msgid "Could not create application." msgstr "שמירת הפרופיל נכשלה." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "תמונה ×œ× ×ª×§×™× ×”." @@ -5274,7 +5275,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "יצי××”" @@ -8293,7 +8293,7 @@ msgstr "" msgid "Select recipient:" msgstr "" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "" @@ -8720,8 +8720,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9445,90 +9447,3 @@ msgstr "כתובת דו×ר ×לקטרוני ×œ× ×ª×§×™× ×”." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "שמירת הפרופיל נכשלה." - -#~ msgid "Unable to save your design settings." -#~ msgstr "×œ× × ×™×ª×Ÿ לשמור ×ת הגדרות העיצוב שלך." - -#~ msgid "Could not update your design." -#~ msgstr "עדכון העיצוב נכשל." - -#~ msgid "Theme not available: %s." -#~ msgstr "ערכת × ×•×©× ×œ× ×–×ž×™× ×”: %s." - -#~ msgid "Change logo" -#~ msgstr "שנה" - -#~ msgid "Change theme" -#~ msgstr "שינוי ערכת נוש×" - -#~ msgid "Site theme" -#~ msgstr "ערכת × ×•×©× ×œ×תר" - -#~ msgid "Custom theme" -#~ msgstr "ערכת × ×•×©× ×ž×•×ª×מת ×ישית" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "×פשר להעלות תמונת רקע ל×תר. גודל התמונה המרבי ×”×•× %1$s." - -#~ msgid "On" -#~ msgstr "מופעל" - -#~ msgid "Off" -#~ msgstr "כבוי" - -#~ msgid "Content" -#~ msgstr "תוכן" - -#~ msgid "Sidebar" -#~ msgstr "סרגל צד" - -#~ msgid "Text" -#~ msgstr "טקסט" - -#~ msgid "Links" -#~ msgstr "קישורי×" - -#~ msgid "Advanced" -#~ msgstr "מתקד×" - -#~ msgid "Custom CSS" -#~ msgstr "CSS מות×× ×ישית" - -#~ msgid "Save design." -#~ msgstr "שמירת עיצוב." - -#~ msgid "Group design" -#~ msgstr "עיצוב קבוצה." - -#~ msgid "Design preferences saved." -#~ msgstr "העדפות העיצוב נשמרו." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "×ל תשלח לעצמך הודעה; פשוט ×מור ×ת ×–×” לעצמך בשקט." - -#~ msgid "Profile design" -#~ msgstr "עיצוב דף משתמש" - -#~ msgid "View profile designs" -#~ msgstr "הצגת עיצובי דף משתמש" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "עיצוב" - -#~ msgid "Change colours" -#~ msgstr "שינוי צבעי×" - -#~ msgid "Upload file" -#~ msgstr "העל×ת קובץ" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "×תה יכול להעלות תמונת רקע משלך. גודל הקובץ המרבי ×”×•× 2 מ״ב." - -#~ msgid "Design your profile" -#~ msgstr "עיצוב דף המשתמש שלך" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index f008048b8d..89ae0fef22 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:24+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:54+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -292,7 +292,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2080,7 +2080,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Wužiwar njeje so daÅ‚ aktualizować." @@ -3116,6 +3116,7 @@ msgstr "ŽórÅ‚owy URL je trÄ›bny." msgid "Could not create application." msgstr "Aplikacija njeda so wutworić." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "NjepÅ‚aćiwy wobraz." @@ -5390,7 +5391,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8553,7 +8553,7 @@ msgstr "Direktnu zdźělenku pósÅ‚ać" msgid "Select recipient:" msgstr "PÅ™ijimowarja wubrać:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Žani wzajomni abonenća." @@ -9012,8 +9012,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9799,193 +9801,3 @@ msgstr "NjepÅ‚aćiwa e-mejlowa adresa." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Profil njeje so skÅ‚adować daÅ‚." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Njeje móžno, designowe nastajenja skÅ‚adować." - -#~ msgid "Could not update your design." -#~ msgstr "Design njeda so aktualizować." - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Designowe nastajenja za tute sydÅ‚o StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Å at njesteji k dispoziciji: %s." - -#~ msgid "Change logo" -#~ msgstr "Logo zmÄ›nić" - -#~ msgid "Change theme" -#~ msgstr "Å at zmÄ›nić" - -#~ msgid "Site theme" -#~ msgstr "Å at sydÅ‚a" - -#~ msgid "Theme for the site." -#~ msgstr "Å at za sydÅ‚o." - -#~ msgid "Custom theme" -#~ msgstr "Swójski Å¡at" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "MóžeÅ¡ swójski Å¡at StatusNet jako .ZIP-archiw nahrać." - -#~ msgid "Change background image" -#~ msgstr "Pozadkowy wobraz zmÄ›nić" - -#~ msgid "Background" -#~ msgstr "Pozadk" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "MóžeÅ¡ pozadkowy wobraz za sydÅ‚o nahrać. Maksimalna datajowa wulkosć je %1" -#~ "$s." - -#~ msgid "On" -#~ msgstr "Zapinjeny" - -#~ msgid "Off" -#~ msgstr "Wupinjeny" - -#~ msgid "Turn background image on or off." -#~ msgstr "Pozadkowy wobraz zmóžnić abo znjemóžnić." - -#~ msgid "Tile background image" -#~ msgstr "Pozadkowy wobraz kachlicować" - -#~ msgid "Change colors" -#~ msgstr "Barby zmÄ›nić" - -#~ msgid "Content" -#~ msgstr "Wobsah" - -#~ msgid "Sidebar" -#~ msgstr "BóÄnica" - -#~ msgid "Text" -#~ msgstr "Tekst" - -#~ msgid "Links" -#~ msgstr "Wotkazy" - -#~ msgid "Advanced" -#~ msgstr "Rozšěrjeny" - -#~ msgid "Custom CSS" -#~ msgstr "Swójski CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Standardne hódnoty wužiwać" - -#~ msgid "Restore default designs." -#~ msgstr "Standardne designy wobnowić." - -#~ msgid "Reset back to default." -#~ msgstr "Na standard wróćo stajić." - -#~ msgid "Save design." -#~ msgstr "Design skÅ‚adować." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "DyrbiÅ¡ pÅ™izjewjeny być, zo by skupinu wobdźěłaÅ‚." - -#~ msgid "Group design" -#~ msgstr "Skupinski design" - -#~ msgid "Unable to update your design settings." -#~ msgstr "Njeje móžno, twoje designowe nastajenja aktualizować." - -#~ msgid "Design preferences saved." -#~ msgstr "Designowe nastajenja skÅ‚adowane." - -#~ msgid "Backgrounds" -#~ msgstr "Pozadki" - -#~ msgid "Server for backgrounds." -#~ msgstr "Serwer za pozadki." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Webšćežka k pozadkam." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Serwer za pozadki na SSL-stronach." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Webšćežka k pozadkam na SSL-stronach." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Zapis, hdźež pozadki su." - -#~ msgid "Profile design" -#~ msgstr "Profilowy design" - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Wjele wjesela!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "SydÅ‚owe nastajenja skÅ‚adować" - -#~ msgid "View profile designs" -#~ msgstr "Profilowe designy sej wobhladać" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Profilowe designy pokazać abo schować." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Pozadk" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Njeje móžno, designowe nastajenje zhaÅ¡eć." - -#~ msgid "Design configuration" -#~ msgstr "Designowa konfiguracija" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Design" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Design skÅ‚adować" - -#~ msgid "Change colours" -#~ msgstr "Barby zmÄ›nić" - -#~ msgid "Use defaults" -#~ msgstr "Standardne hódnoty wužiwać" - -#~ msgid "Upload file" -#~ msgstr "Dataju nahrać" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "MóžeÅ¡ swój wosobinski pozadkowy wobraz nahrać. Maksimalna datajowa " -#~ "wulkosć je 2 MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Zapinjeny" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Wupinjeny" - -#~ msgid "Design defaults restored." -#~ msgstr "Designowe standardne nastajenja wobnowjene." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Design skupiny %s pÅ™idać abo wobdźěłać" - -#~ msgid "Design your profile" -#~ msgstr "Twój profil wuhotować" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 271e0164ad..7cc064d69b 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:26+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:56+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -294,7 +294,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2126,7 +2126,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "" @@ -3187,6 +3187,7 @@ msgstr "Meg kell adnod forrás URL-t." msgid "Could not create application." msgstr "Nem sikerült létrehozni az alkalmazást." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Érvénytelen méret." @@ -8682,7 +8683,7 @@ msgstr "Küldjünk egy üzenetet közvetlenül" msgid "Select recipient:" msgstr "Válassz egy szolgáltatót" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Nem követed figyelemmel!" @@ -9125,8 +9126,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Engedélyezés" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(A kiegészítÅ‘k leírásai nem elérhetÅ‘ek, ha le vannak tiltva.)" #. TRANS: Menu item in primary navigation panel. @@ -9896,182 +9900,3 @@ msgstr "Érvénytelen email cím." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Nem sikerült menteni a profilt." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." - -#~ msgid "Could not update your design." -#~ msgstr "Nem sikerült frissíteni a megjelenítést." - -#~ msgid "Design" -#~ msgstr "Megjelenés" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "A StatusNet-oldal kinézetének beállítása" - -#~ msgid "Theme not available: %s." -#~ msgstr "A téma nem áll rendelkezésre: %s." - -#~ msgid "Change logo" -#~ msgstr "Logó megváltoztatása" - -#~ msgid "Change theme" -#~ msgstr "Téma megváltoztatása" - -#~ msgid "Site theme" -#~ msgstr "Webhely-téma" - -#~ msgid "Theme for the site." -#~ msgstr "A webhely témája." - -#~ msgid "Custom theme" -#~ msgstr "Egyéni téma" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Feltölthetsz egy egyedi StatusNet-témát ZIP archívumon keresztül." - -#~ msgid "Change background image" -#~ msgstr "Háttérkép megváltoztatása" - -#~ msgid "Background" -#~ msgstr "Háttér" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Feltölthetsz egy háttérképet az oldalnak. A fájl maximális mérete %1$s " -#~ "lehet." - -#~ msgid "On" -#~ msgstr "Be" - -#~ msgid "Off" -#~ msgstr "Ki" - -#~ msgid "Turn background image on or off." -#~ msgstr "Háttérkép be- vagy kikapcsolása." - -#~ msgid "Tile background image" -#~ msgstr "Háttérkép csempézése" - -#~ msgid "Change colors" -#~ msgstr "Színek módosítása" - -#~ msgid "Content" -#~ msgstr "Tartalom" - -#~ msgid "Sidebar" -#~ msgstr "Oldalsáv" - -#~ msgid "Text" -#~ msgstr "Szöveg" - -#~ msgid "Links" -#~ msgstr "Hivatkozások" - -#~ msgid "Advanced" -#~ msgstr "Haladó" - -#~ msgid "Custom CSS" -#~ msgstr "Egyedi CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Alapértelmezett beállítások használata" - -#~ msgid "Restore default designs." -#~ msgstr "Alapértelmezett beállítások használata" - -#~ msgid "Reset back to default." -#~ msgstr "Alapértelmezett beállítások visszaállítása" - -#~ msgid "Save design." -#~ msgstr "A kinézet mentése." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Csoport szerkesztéséhez be kell jelentkezned." - -#~ msgid "Group design" -#~ msgstr "A csoport megjelenése" - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid." - -#~ msgid "Design preferences saved." -#~ msgstr "Design beállítások elmentve." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Ne küldj üzenetet magadnak, helyette mondd el halkan." - -#~ msgid "Backgrounds" -#~ msgstr "Hátterek" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "A webhely témája." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Hátterek webes elérési útja." - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "A nyelvi fájlok elérési útvonala" - -#~ msgid "Profile design" -#~ msgstr "Profilterv" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Mentsük el a webhely beállításait" - -#~ msgid "View profile designs" -#~ msgstr "Profiltervek megtekintése" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Profiltervek megjelenítése vagy elrejtése" - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Háttér" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Nem sikerült törölni a megjelenés beállításait." - -#~ msgid "Design configuration" -#~ msgstr "A megjelenés beállításai" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Design mentése" - -#~ msgid "Change colours" -#~ msgstr "Színek megváltoztatása" - -#~ msgid "Use defaults" -#~ msgstr "Alapértelmezések használata" - -#~ msgid "Upload file" -#~ msgstr "Fájl feltöltése" - -#, fuzzy -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Be" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Ki" - -#~ msgid "Design your profile" -#~ msgstr "Profil tervezése" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 852f04dfea..d0b26f25f5 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:27+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -299,7 +299,7 @@ msgstr "" "Tu pote tentar [dar un pulsata a %1$s](../%2$s) in su profilo o [publicar un " "message a su attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2108,7 +2108,7 @@ msgstr "" "Si tu mitte un etiquetta public a private, tote le subscriptiones existente " "a illo essera permanentemente cancellate. Es tu secur de voler continuar?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Non poteva actualisar le lista." @@ -3157,6 +3157,7 @@ msgstr "Le URL de origine es requirite." msgid "Could not create application." msgstr "Non poteva crear application." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Imagine invalide." @@ -5517,7 +5518,6 @@ msgstr "" "publicar le mesme cosa de novo." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logotypo" @@ -8718,7 +8718,7 @@ msgstr "Inviar un nota directe" msgid "Select recipient:" msgstr "Selige destinatario:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Nulle subscriptores mutual." @@ -9147,8 +9147,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Activar" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(Le descriptiones de plug-ins non es disponibile si disactivate.)" #. TRANS: Menu item in primary navigation panel. @@ -9895,211 +9898,3 @@ msgstr "Adresse de e-mail invalide." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Non poteva salveguardar le profilo." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Impossibile salveguardar le configurationes del apparentia." - -#~ msgid "Could not update your design." -#~ msgstr "Non poteva actualisar le apparentia." - -#~ msgid "Design" -#~ msgstr "Apparentia" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Configuration del apparentia de iste sito StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Thema non disponibile: %s." - -#~ msgid "Change logo" -#~ msgstr "Cambiar logotypo" - -#~ msgid "Change theme" -#~ msgstr "Cambiar thema" - -#~ msgid "Site theme" -#~ msgstr "Thema del sito" - -#~ msgid "Theme for the site." -#~ msgstr "Le thema de apparentia pro le sito." - -#~ msgid "Custom theme" -#~ msgstr "Apparentia personalisate" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Es possibile incargar un apparentia personalisate de StatusNet in un " -#~ "archivo .ZIP." - -#~ msgid "Change background image" -#~ msgstr "Cambiar imagine de fundo" - -#~ msgid "Background" -#~ msgstr "Fundo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Tu pote incargar un imagine de fundo pro le sito. Le dimension maximal " -#~ "del file es %1$s." - -#~ msgid "On" -#~ msgstr "Active" - -#~ msgid "Off" -#~ msgstr "Non active" - -#~ msgid "Turn background image on or off." -#~ msgstr "Activar o disactivar le imagine de fundo." - -#~ msgid "Tile background image" -#~ msgstr "Tegular le imagine de fundo" - -#~ msgid "Change colors" -#~ msgstr "Cambiar colores" - -#~ msgid "Content" -#~ msgstr "Contento" - -#~ msgid "Sidebar" -#~ msgstr "Barra lateral" - -#~ msgid "Text" -#~ msgstr "Texto" - -#~ msgid "Links" -#~ msgstr "Ligamines" - -#~ msgid "Advanced" -#~ msgstr "Avantiate" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalisate" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Usar predefinitiones" - -#~ msgid "Restore default designs." -#~ msgstr "Restaurar apparentias predefinite." - -#~ msgid "Reset back to default." -#~ msgstr "Revenir al predefinitiones." - -#~ msgid "Save design." -#~ msgstr "Salveguardar apparentia." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Tu debe aperir un session pro modificar un gruppo." - -#~ msgid "Group design" -#~ msgstr "Apparentia del gruppo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalisa le apparentia de tu gruppo con un imagine de fundo e un " -#~ "paletta de colores de tu preferentia." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Impossibile actualisar le configurationes del apparentia." - -#~ msgid "Design preferences saved." -#~ msgstr "Preferentias de apparentia salveguardate." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Non invia un message a te mesme; il suffice susurrar lo discretemente." - -#~ msgid "Backgrounds" -#~ msgstr "Fundos" - -#~ msgid "Server for backgrounds." -#~ msgstr "Servitor pro fundos de schermo." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Cammino web verso fundos de schermo." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Servitor pro fundos de schermo in paginas SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Cammino web verso fundos de schermo in paginas SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Cammino a ubi se trova le fundos de schermo." - -#~ msgid "Profile design" -#~ msgstr "Apparentia del profilo" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalisa le apparentia de tu profilo con un imagine de fundo e un " -#~ "paletta de colores de tu preferentia." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Bon appetito!" - -#~ msgid "Design settings" -#~ msgstr "Configuration del apparentia" - -#~ msgid "View profile designs" -#~ msgstr "Vider apparentias de profilo" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Monstrar o celar apparentias de profilo." - -#~ msgid "Background file" -#~ msgstr "File de fundo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Impossibile deler configuration de apparentia." - -#~ msgid "Design configuration" -#~ msgstr "Configuration del apparentia" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Apparentia" - -#~ msgid "Change design" -#~ msgstr "Cambiar de apparentia" - -#~ msgid "Change colours" -#~ msgstr "Cambiar colores" - -#~ msgid "Use defaults" -#~ msgstr "Usar predefinitiones" - -#~ msgid "Upload file" -#~ msgstr "Incargar file" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Tu pote actualisar tu imagine de fundo personal. Le dimension maximal del " -#~ "file es 2MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Active" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Non active" - -#~ msgid "Design defaults restored." -#~ msgstr "Apparentia predefinite restaurate." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Adder o modificar apparentia de %s" - -#~ msgid "Design your profile" -#~ msgstr "Designar tu profilo" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 0511ad4a16..1acf09e4d9 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:29+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:58+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -300,7 +300,7 @@ msgstr "" "[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo " "argomento!" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2135,7 +2135,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Impossibile aggiornare l'utente." @@ -3222,6 +3222,7 @@ msgstr "L'URL sorgente è richiesto." msgid "Could not create application." msgstr "Impossibile creare l'applicazione." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Dimensione non valida." @@ -5641,7 +5642,6 @@ msgstr "" "nuovamente lo stesso messaggio" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8966,7 +8966,7 @@ msgstr "Invia un messaggio diretto" msgid "Select recipient:" msgstr "Seleziona licenza" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Nessun abbonato reciproco." @@ -9427,8 +9427,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10187,213 +10189,3 @@ msgstr "Non è un indirizzo email valido." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Impossibile salvare il profilo." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Impossibile salvare la impostazioni dell'aspetto." - -#~ msgid "Could not update your design." -#~ msgstr "Impossibile aggiornare l'aspetto." - -#~ msgid "Design" -#~ msgstr "Aspetto" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Impostazioni dell'aspetto per questo sito StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema non disponibile: %s." - -#~ msgid "Change logo" -#~ msgstr "Modifica logo" - -#~ msgid "Change theme" -#~ msgstr "Modifica tema" - -#~ msgid "Site theme" -#~ msgstr "Tema del sito" - -#~ msgid "Theme for the site." -#~ msgstr "Tema per questo sito." - -#~ msgid "Custom theme" -#~ msgstr "Tema personalizzato" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Puoi caricare un tema per StatusNet personalizzato come un file ZIP." - -#~ msgid "Change background image" -#~ msgstr "Modifica l'immagine di sfondo" - -#~ msgid "Background" -#~ msgstr "Sfondo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Puoi caricare un'immagine di sfondo per il sito. La dimensione massima " -#~ "del file è di %1$s." - -#~ msgid "On" -#~ msgstr "On" - -#~ msgid "Off" -#~ msgstr "Off" - -#~ msgid "Turn background image on or off." -#~ msgstr "Abilita o disabilita l'immagine di sfondo." - -#~ msgid "Tile background image" -#~ msgstr "Affianca l'immagine di sfondo" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "Modifica colori" - -#~ msgid "Content" -#~ msgstr "Contenuto" - -#~ msgid "Sidebar" -#~ msgstr "Barra laterale" - -#~ msgid "Text" -#~ msgstr "Testo" - -#~ msgid "Links" -#~ msgstr "Collegamenti" - -#~ msgid "Advanced" -#~ msgstr "Avanzate" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalizzato" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Usa predefiniti" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Ripristina i valori predefiniti" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Reimposta i valori predefiniti" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Salva aspetto" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Devi eseguire l'accesso per modificare un gruppo." - -#~ msgid "Group design" -#~ msgstr "Aspetto del gruppo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalizza l'aspetto del tuo gruppo con un'immagine di sfondo e dei " -#~ "colori personalizzati." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Impossibile salvare la impostazioni dell'aspetto." - -#~ msgid "Design preferences saved." -#~ msgstr "Preferenze dell'aspetto salvate." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." - -#~ msgid "Backgrounds" -#~ msgstr "Sfondi" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "Tema per questo sito." - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Percorso della directory alle localizzazioni" - -#~ msgid "Profile design" -#~ msgstr "Aspetto del profilo" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalizza l'aspetto del tuo profilo con un'immagine di sfondo e dei " -#~ "colori personalizzati." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Gustati il tuo hotdog!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Salva impostazioni" - -#~ msgid "View profile designs" -#~ msgstr "Visualizza aspetto" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Mostra o nasconde gli aspetti del profilo" - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Sfondo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Impossibile eliminare le impostazioni dell'aspetto." - -#~ msgid "Design configuration" -#~ msgstr "Configurazione aspetto" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Aspetto" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Salva aspetto" - -#~ msgid "Change colours" -#~ msgstr "Modifica colori" - -#~ msgid "Use defaults" -#~ msgstr "Usa predefiniti" - -#~ msgid "Upload file" -#~ msgstr "Carica file" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Puoi caricare la tua immagine di sfondo. La dimensione massima del file è " -#~ "di 2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "On" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Off" - -#~ msgid "Design defaults restored." -#~ msgstr "Valori predefiniti ripristinati." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Aggiungi o modifica l'aspetto di %s" - -#~ msgid "Design your profile" -#~ msgstr "Progetta il tuo profilo" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 6d621b126f..e937d90622 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:30+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:00+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -299,7 +299,7 @@ msgstr "" "最åˆã® [ã“ã®ãƒˆãƒ”ック投稿](%%%%action.newnotice%%%%?status_textarea=%s) ã‚’ã—ã¦" "ãã ã•ã„!" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2156,7 +2156,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "ユーザを更新ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" @@ -3242,6 +3242,7 @@ msgstr "ソースURLãŒå¿…è¦ã§ã™ã€‚" msgid "Could not create application." msgstr "アプリケーションを作æˆã§ãã¾ã›ã‚“。" +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "䏿­£ãªã‚µã‚¤ã‚ºã€‚" @@ -5685,7 +5686,6 @@ msgstr "" "ã„ã‹ã€‚" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "ロゴ" @@ -8971,7 +8971,7 @@ msgstr "直接ã¤ã¶ã‚„ãã‚’é€ã‚‹" msgid "Select recipient:" msgstr "ã‚­ãƒ£ãƒªã‚¢é¸æŠž" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "フォローã—ã¦ã„ã¾ã›ã‚“ï¼" @@ -9438,8 +9438,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10207,200 +10209,3 @@ msgstr "有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã§ã¯ã‚りã¾ã›ã‚“。" #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "プロフィールをä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" - -#~ msgid "Unable to save your design settings." -#~ msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" - -#~ msgid "Could not update your design." -#~ msgstr "デザインを更新ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" - -#~ msgid "Design" -#~ msgstr "デザイン" - -#~ msgid "Theme not available: %s." -#~ msgstr "IM ãŒåˆ©ç”¨ä¸å¯ã€‚" - -#~ msgid "Change logo" -#~ msgstr "ロゴã®å¤‰æ›´" - -#~ msgid "Change theme" -#~ msgstr "テーマ変更" - -#~ msgid "Site theme" -#~ msgstr "サイトテーマ" - -#~ msgid "Theme for the site." -#~ msgstr "サイトã®ãƒ†ãƒ¼ãƒž" - -#, fuzzy -#~ msgid "Custom theme" -#~ msgstr "サイトテーマ" - -#~ msgid "Change background image" -#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®å¤‰æ›´" - -#~ msgid "Background" -#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "ã“ã®ã‚µã‚¤ãƒˆç”¨ã«ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã‚’アップロードã§ãã¾ã™ã€‚最大ファイル" -#~ "サイズ㯠%1$s。" - -#~ msgid "On" -#~ msgstr "オン" - -#~ msgid "Off" -#~ msgstr "オフ" - -#~ msgid "Turn background image on or off." -#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã®ã‚ªãƒ³ã¾ãŸã¯ã‚ªãƒ•。" - -#~ msgid "Tile background image" -#~ msgstr "タイルãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "色ã®å¤‰æ›´" - -#~ msgid "Content" -#~ msgstr "内容" - -#~ msgid "Sidebar" -#~ msgstr "サイドãƒãƒ¼" - -#~ msgid "Text" -#~ msgstr "テキスト" - -#~ msgid "Links" -#~ msgstr "リンク" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "デフォルトを使用" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãƒ‡ã‚¶ã‚¤ãƒ³ã«æˆ»ã™ã€‚" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "デフォルトã¸ãƒªã‚»ãƒƒãƒˆã™ã‚‹" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "デザインã®ä¿å­˜" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "グループを編集ã™ã‚‹ã«ã¯ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã„ãªã‘れã°ãªã‚Šã¾ã›ã‚“。" - -#~ msgid "Group design" -#~ msgstr "グループデザイン" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "ã‚ãªãŸãŒé¸ã‚“ã ãƒ‘レットã®è‰²ã¨ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã‚¤ãƒ¡ãƒ¼ã‚¸ã§ã‚ãªãŸã®ã‚°ãƒ«ãƒ¼ãƒ—ã‚’ã‚«" -#~ "スタマイズã—ã¦ãã ã•ã„。" - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨­å®šã‚’ä¿å­˜ã§ãã¾ã›ã‚“。" - -#~ msgid "Design preferences saved." -#~ msgstr "デザイン設定ãŒä¿å­˜ã•れã¾ã—ãŸã€‚" - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "自分自身ã«ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’é€ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“; ã‹ã‚りã«ç‹¬ã‚Šè¨€ã‚’言ã„ã¾ã—ょã†ã€‚" - -#~ msgid "Backgrounds" -#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "サイトã®ãƒ†ãƒ¼ãƒž" - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "ロケールã¸ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ‘ス" - -#~ msgid "Profile design" -#~ msgstr "プロファイルデザイン" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "ã‚ãªãŸã®ãƒ—ロフィールãŒãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã¨ã‚ãªãŸã®é¸æŠžã®è‰²ã®ãƒ‘レットã§è¦‹" -#~ "る方法をカスタマイズã—ã¦ãã ã•ã„。" - -#, fuzzy -#~ msgid "Enjoy your hotdog!" -#~ msgstr "ã‚ãªãŸã®hotdogを楽ã—ã‚“ã§ãã ã•ã„!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "サイト設定ã®ä¿å­˜" - -#~ msgid "View profile designs" -#~ msgstr "プロファイルデザインを表示" - -#~ msgid "Show or hide profile designs." -#~ msgstr "プロファイルデザインã®è¡¨ç¤ºã¾ãŸã¯éžè¡¨ç¤º" - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰" - -#~ msgid "Unable to delete design setting." -#~ msgstr "デザイン設定を削除ã§ãã¾ã›ã‚“。" - -#~ msgid "Design configuration" -#~ msgstr "デザイン設定" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "デザイン" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "デザインã®ä¿å­˜" - -#~ msgid "Change colours" -#~ msgstr "色ã®å¤‰æ›´" - -#~ msgid "Use defaults" -#~ msgstr "デフォルトを使用" - -#~ msgid "Upload file" -#~ msgstr "ファイルアップロード" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "自分ã®ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ç”»åƒã‚’アップロードã§ãã¾ã™ã€‚最大ファイルサイズ㯠" -#~ "2MB ã§ã™ã€‚" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "オン" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "オフ" - -#~ msgid "Design defaults restored." -#~ msgstr "デフォルトã®ãƒ‡ã‚¶ã‚¤ãƒ³ã‚’回復。" - -#~ msgid "Design your profile" -#~ msgstr "ã‚ãªãŸã®ãƒ—ロファイルをデザイン" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 6e84d3a7c3..e33972f4d0 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:32+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:01+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -293,7 +293,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2132,7 +2132,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერ მáƒáƒ®áƒ”რხდáƒ." @@ -3209,6 +3209,7 @@ msgstr "წყáƒáƒ áƒáƒ¡ URL სáƒáƒ•áƒáƒšáƒ“ებულáƒáƒ." msgid "Could not create application." msgstr "áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ შექმნრვერ მáƒáƒ®áƒ”რხდáƒ." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "ზáƒáƒ›áƒ áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜áƒ." @@ -5604,9 +5605,8 @@ msgstr "" "რáƒáƒ›áƒ“ენი ხáƒáƒœáƒ˜ (წáƒáƒ›áƒ”ბში) უნდრელáƒáƒ“áƒáƒ¡ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელი რáƒáƒ› დáƒáƒžáƒáƒ¡áƒ¢áƒáƒ¡ ერთი დრიგივე." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" -msgstr "გáƒáƒ¡áƒ•ლáƒ" +msgstr "ლáƒáƒ’áƒ" #. TRANS: Field label for StatusNet site logo. msgid "Site logo" @@ -8892,7 +8892,7 @@ msgstr "გáƒáƒáƒ’ზáƒáƒ•ნე პირდáƒáƒžáƒ˜áƒ áƒ˜ შეტყრmsgid "Select recipient:" msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ áƒáƒžáƒ”რáƒáƒ¢áƒáƒ áƒ˜" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "áƒáƒ  გáƒáƒ¥áƒ•თ გáƒáƒ›áƒáƒ¬áƒ”რილი!" @@ -9355,8 +9355,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10127,202 +10129,3 @@ msgstr "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒ #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." - -#~ msgid "Unable to save your design settings." -#~ msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." - -#~ msgid "Could not update your design." -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერ მáƒáƒ®áƒ”რხდáƒ." - -#~ msgid "Design" -#~ msgstr "áƒáƒ› მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის წáƒáƒ¨áƒšáƒ" - -#~ msgid "Theme not available: %s." -#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ  áƒáƒ áƒ˜áƒ¡ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜ %s." - -#~ msgid "Change logo" -#~ msgstr "შეცვáƒáƒšáƒ” ლáƒáƒ’áƒ" - -#~ msgid "Change theme" -#~ msgstr "შეცვáƒáƒšáƒ” იერსáƒáƒ®áƒ”" - -#~ msgid "Site theme" -#~ msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ იერსáƒáƒ®áƒ”" - -#~ msgid "Theme for the site." -#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" - -#~ msgid "Custom theme" -#~ msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ იერსáƒáƒ®áƒ”" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ StatusNet–იერსáƒáƒ®áƒ” .ZIP áƒáƒ áƒ¥áƒ˜áƒ•ის სáƒáƒ®áƒ˜áƒ—." - -#~ msgid "Change background image" -#~ msgstr "შეცვáƒáƒšáƒ” ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" - -#~ msgid "Background" -#~ msgstr "ფáƒáƒœáƒ˜" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•უირთáƒáƒ— ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები " -#~ "ზáƒáƒ›áƒáƒ %1$s." - -#~ msgid "On" -#~ msgstr "ჩáƒáƒ áƒ—ვáƒ" - -#~ msgid "Off" -#~ msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" - -#~ msgid "Turn background image on or off." -#~ msgstr "ჩáƒáƒ áƒ—ე áƒáƒœ გáƒáƒ›áƒáƒ áƒ—ე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ის ფუნქციáƒ." - -#~ msgid "Tile background image" -#~ msgstr "გáƒáƒáƒ›áƒ áƒáƒ•ლე ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი" - -#, fuzzy -#~ msgid "Change colors" -#~ msgstr "შეცვáƒáƒšáƒ” ფერები" - -#~ msgid "Content" -#~ msgstr "შიგთáƒáƒ•სი" - -#~ msgid "Sidebar" -#~ msgstr "გვერდითი პáƒáƒœáƒ”ლი" - -#~ msgid "Text" -#~ msgstr "ტექსტი" - -#~ msgid "Links" -#~ msgstr "ბმულები" - -#~ msgid "Advanced" -#~ msgstr "მეტი პáƒáƒ áƒáƒ›áƒ”ტრები" - -#~ msgid "Custom CSS" -#~ msgstr "სáƒáƒ™áƒ£áƒ—áƒáƒ áƒ˜ CSS" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "დáƒáƒáƒ‘რუნე პირვáƒáƒœáƒ“ელი დიზáƒáƒ˜áƒœáƒ˜" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "პირვáƒáƒœáƒ“ელის პáƒáƒ áƒáƒ›áƒ”ტრების დáƒáƒ‘რუნებáƒ" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "ჯგუფის რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბისáƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ áƒáƒ•ტáƒáƒ áƒ˜áƒ–áƒáƒªáƒ˜áƒ." - -#~ msgid "Group design" -#~ msgstr "ჯგუფის დიზáƒáƒ˜áƒœáƒ˜" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი ჯგუფი ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრ" -#~ "ფერთრპáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "სáƒáƒ›áƒ¬áƒ£áƒ®áƒáƒ áƒáƒ“ თქვენი დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•რვერ მáƒáƒ®áƒ”რხდáƒ." - -#~ msgid "Design preferences saved." -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები შენáƒáƒ®áƒ£áƒšáƒ˜áƒ." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "ნუ გáƒáƒ£áƒ’ზáƒáƒ•ნი შეტყáƒáƒ‘ინებáƒáƒ¡ სáƒáƒ™áƒ£áƒ—áƒáƒ  თáƒáƒ•ს; უბრáƒáƒšáƒáƒ“ ჩუმáƒáƒ“ ჩáƒáƒ£áƒ©áƒ£áƒ áƒ©áƒ£áƒšáƒ”." - -#~ msgid "Backgrounds" -#~ msgstr "ფáƒáƒœáƒ”ბი" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "იერსáƒáƒ®áƒ” áƒáƒ› სáƒáƒ˜áƒ¢áƒ˜áƒ¡áƒ—ვის" - -#~ msgid "Profile design" -#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ˜" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ, რáƒáƒ’áƒáƒ  გნებáƒáƒ•თ გáƒáƒ›áƒáƒ˜áƒ§áƒ£áƒ áƒ”ბáƒáƒ“ეს თქვენი პრáƒáƒ¤áƒ˜áƒšáƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ისრდრ" -#~ "ფერთრპáƒáƒšáƒ˜áƒ¢áƒ áƒ˜áƒ¡ შეცვლით." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "ისიáƒáƒ›áƒáƒ•ნეთ ჰáƒáƒ— დáƒáƒ’ით!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების შენáƒáƒ®áƒ•áƒ" - -#~ msgid "View profile designs" -#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბის ნáƒáƒ®áƒ•áƒ" - -#~ msgid "Show or hide profile designs." -#~ msgstr "áƒáƒ©áƒ•ენე áƒáƒœ დáƒáƒ›áƒáƒšáƒ” პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ დიზáƒáƒ˜áƒœáƒ”ბი." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "ფáƒáƒœáƒ˜" - -#~ msgid "Unable to delete design setting." -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრების წáƒáƒ¨áƒšáƒ ვერ ხერხდებáƒ." - -#~ msgid "Design configuration" -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "შეინáƒáƒ®áƒ” დიზáƒáƒ˜áƒœáƒ˜" - -#~ msgid "Change colours" -#~ msgstr "შეცვáƒáƒšáƒ” ფერები" - -#~ msgid "Use defaults" -#~ msgstr "გáƒáƒ›áƒáƒ˜áƒ§áƒ”ნე პირვáƒáƒœáƒ“ელი მდგáƒáƒ›áƒáƒ áƒ”áƒáƒ‘áƒ" - -#~ msgid "Upload file" -#~ msgstr "ფáƒáƒ˜áƒšáƒ˜áƒ¡ áƒáƒ¢áƒ•ირთვáƒ" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "თქვენ შეგიძლიáƒáƒ— áƒáƒ¢áƒ•ირთáƒáƒ— პერსáƒáƒœáƒáƒšáƒ£áƒ áƒ˜ ფáƒáƒœáƒ£áƒ áƒ˜ სურáƒáƒ—ი. ფáƒáƒ˜áƒšáƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•ები " -#~ "ზáƒáƒ›áƒáƒ 2მბ." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "ჩáƒáƒ áƒ—ვáƒ" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "გáƒáƒ›áƒáƒ áƒ—ვáƒ" - -#~ msgid "Design defaults restored." -#~ msgstr "დიზáƒáƒ˜áƒœáƒ˜áƒ¡ პირველáƒáƒ“ი პáƒáƒ áƒáƒ›áƒ”ტრები დáƒáƒ‘რუნებულიáƒ." - -#~ msgid "Design your profile" -#~ msgstr "პრáƒáƒ¤áƒ˜áƒšáƒ˜áƒ¡ პáƒáƒ áƒáƒ›áƒ”ტრები" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index b522ce9f36..d893557262 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:34+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:02+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -298,7 +298,7 @@ msgstr "" "프로파ì¼ì—서 [%1$s ë‹˜ì„ ì°”ëŸ¬ 보거나](../%2$s) ë˜ëŠ” [ê·¸ ë¶„ì—게 뭔가 ê¸€ì„ ì¨ë³´" "세요](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2071,7 +2071,7 @@ msgstr "" "공개 태그를 비공개로 설정하면 ê¸°ì¡´ì˜ êµ¬ë…ì´ ëª¨ë‘ ì§€ì›Œì§‘ë‹ˆë‹¤. ê·¸ëž˜ë„ ê³„ì† í•˜ì‹œ" "겠습니까?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "리스트를 ì—…ë°ì´íŠ¸í•  수 없습니다." @@ -3099,6 +3099,7 @@ msgstr "소스 URLì´ í•„ìš”í•©ë‹ˆë‹¤." msgid "Could not create application." msgstr "ì‘ìš© í”„ë¡œê·¸ëž¨ì„ ìƒˆë¡œ 만들 수 없습니다." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "ìž˜ëª»ëœ ì´ë¯¸ì§€ìž…니다." @@ -5425,7 +5426,6 @@ msgstr "" "ê°™ì€ ë‚´ìš©ì„ ê¸€ì„ ë‹¤ì‹œ 올릴 수 ìžˆì„ ë•Œê¹Œì§€ 기다려야 하는 시간. (ì´ˆ 단위)" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "로고" @@ -8566,7 +8566,7 @@ msgstr "ì§ì ‘ 메시지 보내기" msgid "Select recipient:" msgstr "ìˆ˜ì‹ ìž ì„ íƒ:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "서로 구ë…한 ì‚¬ëžŒì´ ì—†ìŠµë‹ˆë‹¤." @@ -8993,8 +8993,11 @@ msgctxt "plugin" msgid "Enable" msgstr "사용" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(플러그ì¸ì„ 사용하지 않으면 ì„¤ëª…ì„ ë³¼ 수 없습니다.)" #. TRANS: Menu item in primary navigation panel. @@ -9725,205 +9728,3 @@ msgstr "올바른 ë©”ì¼ ì£¼ì†Œê°€ 아닙니다." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "í”„ë¡œí•„ì„ ì €ìž¥ í•  수 없습니다." - -#~ msgid "Unable to save your design settings." -#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í•  수 없습니다." - -#~ msgid "Could not update your design." -#~ msgstr "ë””ìžì¸ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." - -#~ msgid "Design" -#~ msgstr "ë””ìžì¸" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "ì´ StatusNet 사ì´íŠ¸ì˜ ë””ìžì¸ 설정" - -#~ msgid "Theme not available: %s." -#~ msgstr "테마가 없습니다: %s." - -#~ msgid "Change logo" -#~ msgstr "로고 바꾸기" - -#~ msgid "Change theme" -#~ msgstr "테마 바꾸기" - -#~ msgid "Site theme" -#~ msgstr "사ì´íЏ 테마" - -#~ msgid "Theme for the site." -#~ msgstr "사ì´íŠ¸ì— ëŒ€í•œ 테마" - -#~ msgid "Custom theme" -#~ msgstr "ì‚¬ìš©ìž ì§€ì • 테마" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "StatusNetì˜ ì‚¬ìš©ìž ì§€ì • 테마를 .ZIP ì••ì¶• 파ì¼ë¡œ 업로드할 수 있습니다." - -#~ msgid "Change background image" -#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ 바꾸기" - -#~ msgid "Background" -#~ msgstr "ë°°ê²½" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "사ì´íŠ¸ì˜ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” %1$s 입니다." - -#~ msgid "On" -#~ msgstr "켜기" - -#~ msgid "Off" -#~ msgstr "ë„기" - -#~ msgid "Turn background image on or off." -#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 켜거나 ë•니다." - -#~ msgid "Tile background image" -#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 반복 나열" - -#~ msgid "Change colors" -#~ msgstr "색 바꾸기" - -#~ msgid "Content" -#~ msgstr "ë‚´ìš©" - -#~ msgid "Sidebar" -#~ msgstr "가장ìžë¦¬ ì°½" - -#~ msgid "Text" -#~ msgstr "문ìž" - -#~ msgid "Links" -#~ msgstr "ë§í¬" - -#~ msgid "Advanced" -#~ msgstr "고급" - -#~ msgid "Custom CSS" -#~ msgstr "ì‚¬ìš©ìž ì •ì˜ CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "기본값 사용" - -#~ msgid "Restore default designs." -#~ msgstr "기본값 ë””ìžì¸ìœ¼ë¡œ ë˜ëŒë¦¬ê¸°." - -#~ msgid "Reset back to default." -#~ msgstr "기본값으로 초기화." - -#~ msgid "Save design." -#~ msgstr "ë””ìžì¸ 저장." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "ê·¸ë£¹ì„ íŽ¸ì§‘í•˜ë ¤ë©´ 로그ì¸í•´ì•¼ 합니다." - -#~ msgid "Group design" -#~ msgstr "그룹 ë””ìžì¸" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ ê·¸ë£¹ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." - -#~ msgid "Unable to update your design settings." -#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì—…ë°ì´íŠ¸í•  수 없습니다." - -#~ msgid "Design preferences saved." -#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì €ìž¥í–ˆìŠµë‹ˆë‹¤." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "ìžê¸° ìžì‹ ì—게 메시지를 ë³´ë‚´ì§€ 마세요. (혼ìžì„œ 조용히 ìžì‹ ì—게 ë§í•˜ëŠ” ê±´ ì–´" -#~ "떤가요?)" - -#~ msgid "Backgrounds" -#~ msgstr "ë°°ê²½" - -#~ msgid "Server for backgrounds." -#~ msgstr "ë°°ê²½ 서버." - -#~ msgid "Web path to backgrounds." -#~ msgstr "ë°°ê²½ì˜ ì›¹ 경로." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 서버." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "SSL 페ì´ì§€ì˜ ë°°ê²½ 웹 경로." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "ë°°ê²½ì´ ë“¤ì–´ 있는 디렉터리." - -#~ msgid "Profile design" -#~ msgstr "프로필 ë””ìžì¸" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "ë°°ê²½ ì´ë¯¸ì§€ì™€ 색 팔레트를 ì„ íƒí•´ì„œ í”„ë¡œí•„ì˜ ëª¨ì–‘ì„ ì„¤ì •í•©ë‹ˆë‹¤." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "í•«ë„ê·¸ 맛있게 드세요!" - -#~ msgid "Design settings" -#~ msgstr "ë””ìžì¸ 설정" - -#~ msgid "View profile designs" -#~ msgstr "프로필 ë””ìžì¸ 보기" - -#~ msgid "Show or hide profile designs." -#~ msgstr "프로필 ë””ìžì¸ ë³´ì´ê±°ë‚˜ ê°ì¶¥ë‹ˆë‹¤." - -#~ msgid "Background file" -#~ msgstr "ë°°ê²½ 파ì¼" - -#~ msgid "Unable to delete design setting." -#~ msgstr "ë””ìžì¸ ì„¤ì •ì„ ì‚­ì œí•  수 없습니다." - -#~ msgid "Design configuration" -#~ msgstr "ë””ìžì¸ 설정" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "ë””ìžì¸" - -#~ msgid "Change design" -#~ msgstr "ë””ìžì¸ 변경" - -#~ msgid "Change colours" -#~ msgstr "색 변경" - -#~ msgid "Use defaults" -#~ msgstr "기본값 사용" - -#~ msgid "Upload file" -#~ msgstr "íŒŒì¼ ì—…ë¡œë“œ" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "ê°œì¸ ë°°ê²½ ì´ë¯¸ì§€ë¥¼ 업로드할 수 있습니다. 최대 íŒŒì¼ í¬ê¸°ëŠ” 2MB입니다." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "켜기" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "ë„기" - -#~ msgid "Design defaults restored." -#~ msgstr "ë””ìžì¸ ê¸°ë³¸ê°’ì„ ë³µêµ¬í–ˆìŠµë‹ˆë‹¤." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "%s ë””ìžì¸ 추가 ë˜ëŠ” 편집" - -#~ msgid "Design your profile" -#~ msgstr "프로필 ë””ìžì¸" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index b7076cffee..25aaa27644 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:35+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -301,7 +301,7 @@ msgstr "" "Можете да го [подбуцнете кориÑникот %1$s](../%2$s) од неговиот профил или да " "[му иÑпратите нешто](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2108,7 +2108,7 @@ msgstr "" "Ðко намеÑтите јавна ознака како приватна, Ñо тоа трајно ќе ги избришете и " "Ñите нејзини поÑтоечки претплати. Дали Ñакате да продолжите?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Ðе можев да го подновам ÑпиÑокот." @@ -3165,6 +3165,7 @@ msgstr "Треба изворна URL-адреÑа." msgid "Could not create application." msgstr "Ðе можеше да Ñе Ñоздаде програмот." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Ðеважечка Ñлика." @@ -5508,10 +5509,9 @@ msgid "Default language" msgstr "ОÑновен јазик" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." -msgstr "Јазик на мрежното меÑто ако прелиÑтувачот не може да го препознае Ñам" +msgstr "Јазик на мрежното меÑто ако прелиÑтувачот не може да го препознае Ñам." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5537,7 +5537,6 @@ msgstr "" "да го објават иÑтото." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Лого" @@ -5550,9 +5549,8 @@ msgid "SSL logo" msgstr "SSL-лого" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Зачувај нагодувања на мреж. меÑто" +msgstr "Зачувај нагодувања на мреж. меÑто." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -8750,7 +8748,7 @@ msgstr "ИÑпрати непоÑредна забелешка" msgid "Select recipient:" msgstr "Оберете примач:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Ðема заемни претплатници." @@ -9179,8 +9177,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Овозможи" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(ОпиÑите на приклучоците не Ñе доÑтапни ако е оневозможено.)" #. TRANS: Menu item in primary navigation panel. @@ -9890,242 +9891,35 @@ msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "Ðе можам да ја прочитам URL-адреÑата на аватарот „%s“." +msgstr "Ðе можам да ја прочитам URL-адреÑата на аватарот %s." #. TRANS: Server exception. %s is a URI. -#, fuzzy, php-format +#, php-format msgid "Tried to update avatar for unsaved remote profile %s." -msgstr "Грешка во подновувањето на далечинÑкиот профил." +msgstr "" +"Се обидов да го подновувам аватарот за незачуваниот далечинÑки профил %s." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "Ðе можам да пронајдам Ñлужби за: %s." +msgstr "Ðе можам да го добијам аватарот од: %s." #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "Ðе можев да Ñоздадам профилна ознака." +msgstr "Ðе можев да дојдам до профилната Ñтраница %s." #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "Ðе можев да пронајдам кориÑник Ñо прекар %s." +msgstr "Ðе можев да пронајдам URL на канал за профилната Ñтраница %s." #. TRANS: Exception. -#, fuzzy msgid "Not a valid webfinger address." -msgstr "Ова не е важечка е-пошта." +msgstr "Ова не е важечка Webfinger-адреÑа." -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "Ðе може да Ñе зачува профил." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Ðе можам да ги зачувам Вашите нагодувања за изглед." - -#~ msgid "Could not update your design." -#~ msgstr "Ðе може да Ñе поднови Вашиот изглед." - -#~ msgid "Design" -#~ msgstr "Изглед" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Ðагодувања на изгледот на ова StatusNet-мрежно меÑто." - -#~ msgid "Theme not available: %s." -#~ msgstr "Темата е недоÑтапна: %s." - -#~ msgid "Change logo" -#~ msgstr "Промени лого" - -#~ msgid "Change theme" -#~ msgstr "Промени изглед" - -#~ msgid "Site theme" -#~ msgstr "Изглед на мрежното меÑто" - -#~ msgid "Theme for the site." -#~ msgstr "Изглед за мрежното меÑто." - -#~ msgid "Custom theme" -#~ msgstr "Прилагоден мотив" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Можете да подигнете Ñвој изглед за StatusNet како .ZIP архив." - -#~ msgid "Change background image" -#~ msgstr "Промена на Ñлика за позадина" - -#~ msgid "Background" -#~ msgstr "Позадина" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Може да подигнете позадинÑка Ñлика за ова мрежно меÑто. МакÑималната " -#~ "големина на податотеката е %1$s." - -#~ msgid "On" -#~ msgstr "Вкл." - -#~ msgid "Off" -#~ msgstr "ИÑкл." - -#~ msgid "Turn background image on or off." -#~ msgstr "Вклучи или иÑклучи позадинÑка Ñлика." - -#~ msgid "Tile background image" -#~ msgstr "Позадината во квадрати" - -#~ msgid "Change colors" -#~ msgstr "Смени бои" - -#~ msgid "Content" -#~ msgstr "Содржина" - -#~ msgid "Sidebar" -#~ msgstr "Странична лента" - -#~ msgid "Text" -#~ msgstr "ТекÑÑ‚" - -#~ msgid "Links" -#~ msgstr "Ð’Ñ€Ñки" - -#~ msgid "Advanced" -#~ msgstr "Ðапредно" - -#~ msgid "Custom CSS" -#~ msgstr "Прилагодено CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "КориÑти по оÑновно" - -#~ msgid "Restore default designs." -#~ msgstr "Врати ги изгледите по оÑновно." - -#~ msgid "Reset back to default." -#~ msgstr "Врати по оÑновно." - -#~ msgid "Save design." -#~ msgstr "Зачувај изглед." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Мора да Ñте најавени за да можете да уредувате група." - -#~ msgid "Group design" -#~ msgstr "Изглед на групата" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Прилагодете го изгледот на Вашата група Ñо позадинÑка Ñлика и палета од " -#~ "бои по Ваш избор." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Ðе можам да ги подновам Вашите нагодувања за изглед." - -#~ msgid "Design preferences saved." -#~ msgstr "Ðагодувањата Ñе зачувани." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Ðе иÑпраќајте Ñи порака Ñамите на Ñебе; подобро тивко кажете Ñи го тоа на " -#~ "ÑебеÑи." - -#~ msgid "Backgrounds" -#~ msgstr "Позадини" - -#~ msgid "Server for backgrounds." -#~ msgstr "ОпÑлужувач за позадини." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Мрежна патека за позадините." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "ОпÑлужувач за позадини на SSL-Ñтраници." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Мрежна патека за позадините на SSL-Ñтраници." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Директориумот кадешто Ñе ÑмеÑтени позадините." - -#~ msgid "Profile design" -#~ msgstr "Изглед на профилот" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Прилагодете го изгледот на Вашиот профил, Ñо позадинÑка Ñлика и палета од " -#~ "бои по Ваш избор." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Добар апетит!" - -#~ msgid "Design settings" -#~ msgstr "Ðагодувања на изгледот" - -#~ msgid "View profile designs" -#~ msgstr "Види изгледи на профилот" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Прикажи или Ñкриј изгледи на профилот." - -#~ msgid "Background file" -#~ msgstr "Податотека за позадината" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Ðе можам да ги избришам нагодувањата за изглед." - -#~ msgid "Design configuration" -#~ msgstr "ПоÑтавки на изгледот" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Изглед" - -#~ msgid "Change design" -#~ msgstr "Измени изглед" - -#~ msgid "Change colours" -#~ msgstr "Промена на бои" - -#~ msgid "Use defaults" -#~ msgstr "КориÑти по оÑновно" - -#~ msgid "Upload file" -#~ msgstr "Подигање" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Можете да подигнете лична позадинÑка Ñлика. МакÑималната дозволена " -#~ "големина изнеÑува 2МБ." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Вкл." - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "ИÑкл." - -#~ msgid "Design defaults restored." -#~ msgstr "ОÑновно-зададениот изглед е вратен." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Додавање или уредување на изгледот на групата „%s“" - -#~ msgid "Design your profile" -#~ msgstr "ÐамеÑтете изглед на Вашиот профил" +msgstr "Ðе можев да пронајдам важечки профил за „%s“." diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 2cb061df4d..a134c4ba8a 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:37+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:05+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -284,7 +284,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2053,7 +2053,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "ഉപയോകàµà´¤àµƒ വിവരങàµà´™àµ¾ à´ªàµà´¤àµà´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." @@ -3107,6 +3107,7 @@ msgstr "à´¸àµà´°àµ‹à´¤à´¸àµà´¸àµ à´¯àµ.ആർ.എൽ. ആവശàµà´¯à´®à´¾ msgid "Could not create application." msgstr "" +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "അസാധàµà´µà´¾à´¯ à´šà´¿à´¤àµà´°à´‚." @@ -8512,7 +8513,7 @@ msgstr "അറിയിപàµà´ªàµ നേരിടàµà´Ÿàµ അയയàµà´•ൠmsgid "Select recipient:" msgstr "à´¸àµà´µàµ€à´•ർതàµà´¤à´¾à´µà´¿à´¨àµ† തിരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "" @@ -8971,8 +8972,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9736,177 +9739,3 @@ msgstr "സാധàµà´µà´¾à´¯ ഇമെയിൽ വിലാസം à´…à´²àµà´² #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "ലകàµà´·àµà´¯à´®à´¿à´Ÿàµà´Ÿ ഉപയോകàµà´¤à´¾à´µà´¿à´¨àµ† à´•à´£àµà´Ÿàµ†à´¤àµà´¤à´¾à´¨à´¾à´¯à´¿à´²àµà´²." - -#~ msgid "Unable to save your design settings." -#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ കാതàµà´¤àµà´¸àµ‚à´•àµà´·à´¿à´•àµà´•ാനായിലàµà´²." - -#~ msgid "Could not update your design." -#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." - -#~ msgid "Design" -#~ msgstr "രൂപകലàµà´ªà´¨" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "à´ˆ à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ സൈറàµà´±à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾" - -#~ msgid "Theme not available: %s." -#~ msgstr "ദൃശàµà´¯à´°àµ‚പം ലഭàµà´¯à´®à´²àµà´²: %s." - -#~ msgid "Change logo" -#~ msgstr "ലോഗോ മാറàµà´±àµà´•" - -#~ msgid "Change theme" -#~ msgstr "ദൃശàµà´¯à´°àµ‚പം മാറàµà´±àµà´•" - -#~ msgid "Site theme" -#~ msgstr "സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം" - -#~ msgid "Theme for the site." -#~ msgstr "à´ˆ സൈറàµà´±à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം." - -#~ msgid "Custom theme" -#~ msgstr "à´à´šàµà´›à´¿à´• ദൃശàµà´¯à´°àµ‚പം" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "താങàµà´•à´³àµà´Ÿàµ† ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´‚ നിർമàµà´®à´¿à´šàµà´š à´¸àµà´±àµà´±à´¾à´±àµà´±à´¸àµâ€Œà´¨àµ†à´±àµà´±àµ ദൃശàµà´¯à´°àµ‚പം .സിപൠആർകàµà´•ൈവൠആയി താങàµà´•ൾകàµà´•ൠ" -#~ "à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ." - -#~ msgid "Change background image" -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ മാറàµà´±àµà´•" - -#~ msgid "Background" -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " -#~ "വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." - -#~ msgid "On" -#~ msgstr "സജàµà´œà´‚" - -#~ msgid "Off" -#~ msgstr "രഹിതം" - -#~ msgid "Turn background image on or off." -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ à´ªàµà´°à´µàµ¼à´¤àµà´¤à´¨ സജàµà´œà´®à´¾à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ രഹിതമാകàµà´•àµà´•." - -#~ msgid "Tile background image" -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´šà´¿à´¤àµà´°à´‚ ആവർതàµà´¤à´¿à´šàµà´šàµ ചേർകàµà´•àµà´•" - -#~ msgid "Change colors" -#~ msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" - -#~ msgid "Content" -#~ msgstr "ഉളàµà´³à´Ÿà´•àµà´•à´‚" - -#~ msgid "Sidebar" -#~ msgstr "പാർശàµà´µà´­à´¿à´¤àµà´¤à´¿" - -#~ msgid "Text" -#~ msgstr "à´Žà´´àµà´¤àµà´¤àµ" - -#~ msgid "Links" -#~ msgstr "à´•à´£àµà´£à´¿à´•ൾ" - -#~ msgid "Advanced" -#~ msgstr "വിപàµà´²à´‚" - -#~ msgid "Custom CSS" -#~ msgstr "à´¸àµà´µà´¨àµà´¤à´‚ സി.à´Žà´¸àµ.à´Žà´¸àµ." - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" - -#~ msgid "Restore default designs." -#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨à´•ൾ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." - -#~ msgid "Reset back to default." -#~ msgstr "à´®àµà´®àµà´ªàµ à´¸àµà´µà´¤àµ‡à´¯àµà´£àµà´Ÿà´¾à´¯à´¿à´°àµà´¨àµà´¨à´¤à´¿à´²àµ‡à´¯àµà´•àµà´•ൠപàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµà´•." - -#~ msgid "Save design." -#~ msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "സംഘതàµà´¤à´¿àµ½ മാറàµà´±à´™àµà´™àµ¾ വരàµà´¤àµà´¤à´¾àµ» താങàµà´•ൾ ലോഗിൻ ചെയàµà´¤à´¿à´°à´¿à´•àµà´•േണàµà´Ÿà´¤à´¾à´£àµ." - -#~ msgid "Group design" -#~ msgstr "സംഘതàµà´¤à´¿à´¨àµà´±àµ† രൂപകലàµà´ªà´¨" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²àµà´² à´šà´¿à´¤àµà´°à´µàµà´‚ വർണàµà´£à´™àµà´™à´³àµà´‚ ചേർതàµà´¤àµ സംഘതàµà´¤à´¿à´¨àµà´±àµ† ദൃശàµà´¯à´°àµ‚പം ഇചàµà´›à´¾à´¨àµà´¸à´°à´£à´®à´¾à´•àµà´•àµà´•." - -#~ msgid "Unable to update your design settings." -#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ à´ªàµà´¤àµà´•àµà´•ാനായിലàµà´²." - -#~ msgid "Design preferences saved." -#~ msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണങàµà´™àµ¾ സേവൠചെയàµà´¤à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "താങàµà´•ൾകàµà´•ൠതനàµà´¨àµ† സനàµà´¦àµ‡à´¶à´‚ അയയàµà´•àµà´•à´°àµà´¤àµ; പകരം അതൠപതàµà´•àµà´•െ à´¸àµà´µà´¯à´‚ പറയàµà´•." - -#~ msgid "Backgrounds" -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´²à´‚" - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "താങàµà´•à´³àµà´Ÿàµ† ഹോടàµà´Ÿàµà´¡àµ‹à´—ൠആസàµà´µà´¦à´¿à´•àµà´•ൂ!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "സൈറàµà´±àµ സജàµà´œàµ€à´•രണങàµà´™àµ¾ ചേവൠചെയàµà´¯àµà´•" - -#~ msgid "Background file" -#~ msgstr "പശàµà´šà´¾à´¤àµà´¤à´² à´ªàµà´°à´®à´¾à´£à´‚" - -#~ msgid "Unable to delete design setting." -#~ msgstr "രൂപകലàµà´ªà´¨à´¾ സജàµà´œàµ€à´•രണങàµà´™àµ¾ മായàµà´•àµà´•ാൻ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." - -#~ msgid "Design configuration" -#~ msgstr "രൂപകലàµà´ªà´¨à´¾ à´•àµà´°à´®àµ€à´•രണം" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "രൂപകലàµà´ªà´¨" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "രൂപകലàµà´ªà´¨ സേവàµâ€Œ ചെയàµà´¯àµà´•" - -#~ msgid "Change colours" -#~ msgstr "നിറങàµà´™àµ¾ മാറàµà´±àµà´•" - -#~ msgid "Use defaults" -#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³à´µ ഉപയോഗികàµà´•àµà´•" - -#~ msgid "Upload file" -#~ msgstr "à´ªàµà´°à´®à´¾à´£à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯àµà´•" - -#, fuzzy -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "താങàµà´•ൾകàµà´•ൠഈ സൈറàµà´±à´¿à´¨àµà´³àµà´³ പശàµà´šà´¾à´¤àµà´¤à´² à´šà´¿à´¤àµà´°à´‚ à´…à´ªàµâ€Œà´²àµ‹à´¡àµ ചെയàµà´¯à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ. à´ªàµà´°à´®à´¾à´£à´¤àµà´¤à´¿à´¨àµà´±àµ† പരമാവധി " -#~ "വലിപàµà´ªà´‚ %1$s ആയിരികàµà´•ണം." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "സജàµà´œà´‚" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "രഹിതം" - -#~ msgid "Design defaults restored." -#~ msgstr "à´¸àµà´µà´¤àµ‡à´¯àµà´³àµà´³ രൂപകലàµà´ªà´¨ à´ªàµà´¨à´ƒà´¸àµà´¥à´¾à´ªà´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "%s à´Žà´¨àµà´¨ സംഘതàµà´¤à´¿à´¨àµ രൂപകലàµà´ªà´¨ കൂടàµà´Ÿà´¿à´šàµà´šàµ‡àµ¼à´•àµà´•àµà´• à´…à´²àµà´²àµ†à´™àµà´•ിൽ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´•" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 7f4a75a48a..433d4b0d9b 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:40+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:08+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -298,7 +298,7 @@ msgstr "" "Vær den første til Ã¥ [poste om dette emnet](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2106,7 +2106,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Kunne ikke oppdatere bruker." @@ -3174,6 +3174,7 @@ msgstr "Nettadresse til kilde kreves." msgid "Could not create application." msgstr "Kunne ikke opprette program." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Ugyldig størrelse" @@ -5585,7 +5586,6 @@ msgstr "" "Hvor lenge en bruker mÃ¥ vente (i sekund) for Ã¥ poste den samme tingen igjen." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8869,7 +8869,7 @@ msgstr "Send en direktenotis" msgid "Select recipient:" msgstr "Velg lisens" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Alle abonnementer" @@ -9335,8 +9335,10 @@ msgctxt "plugin" msgid "Enable" msgstr "Aktiver" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10125,219 +10127,3 @@ msgstr "Ugyldig e-postadresse." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Kunne ikke lagre profil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." - -#~ msgid "Could not update your design." -#~ msgstr "Kunne ikke oppdatere din profils utseende." - -#~ msgid "Design" -#~ msgstr "Utseende" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Utseendeinnstillinger for dette StatusNet-nettstedet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema ikke tilgjengelig: %s." - -#~ msgid "Change logo" -#~ msgstr "Endre logo" - -#~ msgid "Change theme" -#~ msgstr "Endre tema" - -#~ msgid "Site theme" -#~ msgstr "Nettstedstema" - -#~ msgid "Theme for the site." -#~ msgstr "Tema for nettstedet." - -#~ msgid "Custom theme" -#~ msgstr "Egendefinert tema" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv." - -#~ msgid "Change background image" -#~ msgstr "Endre bakgrunnsbilde" - -#~ msgid "Background" -#~ msgstr "Bakgrunn" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1" -#~ "$s." - -#~ msgid "On" -#~ msgstr "PÃ¥" - -#~ msgid "Off" -#~ msgstr "Av" - -#~ msgid "Turn background image on or off." -#~ msgstr "SlÃ¥ pÃ¥ eller av bakgrunnsbilde." - -#~ msgid "Tile background image" -#~ msgstr "Gjenta bakgrunnsbildet" - -#~ msgid "Change colors" -#~ msgstr "Endre farger" - -#~ msgid "Content" -#~ msgstr "Innhold" - -#~ msgid "Sidebar" -#~ msgstr "Sidelinje" - -#~ msgid "Text" -#~ msgstr "Tekst" - -#~ msgid "Links" -#~ msgstr "Lenker" - -#~ msgid "Advanced" -#~ msgstr "Avansert" - -#~ msgid "Custom CSS" -#~ msgstr "Egendefinert CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Bruk standardinnstillinger" - -#~ msgid "Restore default designs." -#~ msgstr "Gjenopprett standardutseende." - -#~ msgid "Reset back to default." -#~ msgstr "Tilbakestill til standardinnstillinger." - -#~ msgid "Save design." -#~ msgstr "Lagre utseende." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Du mÃ¥ være logget inn for Ã¥ redigere en gruppe." - -#~ msgid "Group design" -#~ msgstr "Gruppeutseende" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en " -#~ "fargepalett av ditt valg." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." - -#~ msgid "Design preferences saved." -#~ msgstr "Utseende lagret." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Ikke send en melding til degselv; bare hvisk det stille til degselv " -#~ "istedet." - -#~ msgid "Backgrounds" -#~ msgstr "Bakgrunner" - -#~ msgid "Server for backgrounds." -#~ msgstr "Tjener for bakgrunner." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Sti til bakgrunner." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Tjener for bakgrunner pÃ¥ SSL-sider." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Sti til bakgrunner pÃ¥ SSL-sider." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Mappen bakgrunner er plassert i." - -#~ msgid "Profile design" -#~ msgstr "Vis profilutseender" - -#, fuzzy -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en " -#~ "fargepalett av ditt valg." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Bon appétit." - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Lagre nettstedsinnstillinger" - -#~ msgid "View profile designs" -#~ msgstr "Vis profilutseender" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Vis eller skjul profilutseender." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "Bakgrunn" - -#, fuzzy -#~ msgid "Unable to delete design setting." -#~ msgstr "Kunne ikke lagre dine innstillinger for utseende." - -#, fuzzy -#~ msgid "Design configuration" -#~ msgstr "Tilgangskonfigurasjon" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Utseende" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Lagre utseende" - -#~ msgid "Change colours" -#~ msgstr "Endre farger" - -#~ msgid "Use defaults" -#~ msgstr "Bruk standard" - -#~ msgid "Upload file" -#~ msgstr "Last opp fil" - -#, fuzzy -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "PÃ¥" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Av" - -#, fuzzy -#~ msgid "Design defaults restored." -#~ msgstr "Utseende lagret." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Legg til eller rediger %s utseende" - -#~ msgid "Design your profile" -#~ msgstr "Brukerprofil" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ec2aabcf2c..5c4278465c 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:39+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -309,7 +309,7 @@ msgstr "" "bericht voor die gebruiker plaatsen](%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2138,7 +2138,7 @@ msgstr "" "Door een openbaar label als privé in te stellen worden alle bestaande " "abonnementen verwijderd. Wilt u doorgaan?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Het was niet mogelijk de lijst bij te werken." @@ -3201,6 +3201,7 @@ msgstr "Een bron-URL is verplicht." msgid "Could not create application." msgstr "Het was niet mogelijk de applicatie aan te maken." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Ongeldige afbeelding." @@ -5553,12 +5554,11 @@ msgid "Default language" msgstr "Standaardtaal" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" "De taal voor de website als deze niet uit de browserinstellingen opgemaakt " -"kan worden" +"kan worden." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" @@ -5584,7 +5584,6 @@ msgstr "" "zenden." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -5597,9 +5596,8 @@ msgid "SSL logo" msgstr "SSL-logo" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Websiteinstellingen opslaan" +msgstr "De websiteinstellingen opslaan." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -8823,7 +8821,7 @@ msgstr "Directe mededeling verzenden" msgid "Select recipient:" msgstr "Selecteer ontvanger:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Geen wederzijdse abonnees." @@ -9252,8 +9250,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Inschakelen" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "Plug-inbeschrijvingen zijn niet beschikbaar als uitgeschakeld." #. TRANS: Menu item in primary navigation panel. @@ -9970,241 +9971,36 @@ msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." +msgstr "Ongeldige avatar-URL %s." #. TRANS: Server exception. %s is a URI. -#, fuzzy, php-format +#, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." +"Er is geprobeerd om een avatar bij te werken voor het niet opgeslagen " +"externe profiel %s." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "Er zijn geen diensten aantroffen voor %s." +msgstr "Het was niet mogelijk om de avatar op te halen van %s." #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "Het was niet mogelijk het profiellabel aan te maken." +msgstr "Het was niet mogelijk de profielpagina %s te bereiken." #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "De gebruiker %s is niet aangetroffen." +msgstr "Het was niet mogelijk de feed-URL voor de profielpagina %s te vinden." #. TRANS: Exception. -#, fuzzy msgid "Not a valid webfinger address." -msgstr "Geen geldig e-mailadres." +msgstr "Geen geldig webfingeradres." -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "Het was niet mogelijk het profiel op te slaan." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." - -#~ msgid "Could not update your design." -#~ msgstr "Het was niet mogelijk uw ontwerp bij te werken." - -#~ msgid "Design" -#~ msgstr "Uiterlijk" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Instellingen voor de vormgeving van deze StatusNet-website" - -#~ msgid "Theme not available: %s." -#~ msgstr "De vormgeving is niet beschikbaar: %s." - -#~ msgid "Change logo" -#~ msgstr "Logo wijzigen" - -#~ msgid "Change theme" -#~ msgstr "Vormgeving wijzigen" - -#~ msgid "Site theme" -#~ msgstr "Vormgeving website" - -#~ msgid "Theme for the site." -#~ msgstr "Mogelijke vormgevingen voor deze website." - -#~ msgid "Custom theme" -#~ msgstr "Aangepaste vormgeving" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief." - -#~ msgid "Change background image" -#~ msgstr "Achtergrondafbeelding wijzigen" - -#~ msgid "Background" -#~ msgstr "Achtergrond" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Hier kunt u een achtergrondafbeelding voor de website uploaden. De " -#~ "maximale bestandsgrootte is %1$s." - -#~ msgid "On" -#~ msgstr "Aan" - -#~ msgid "Off" -#~ msgstr "Uit" - -#~ msgid "Turn background image on or off." -#~ msgstr "Achtergrondafbeelding inschakelen of uitschakelen." - -#~ msgid "Tile background image" -#~ msgstr "Achtergrondafbeelding naast elkaar" - -#~ msgid "Change colors" -#~ msgstr "Kleuren wijzigen" - -#~ msgid "Content" -#~ msgstr "Inhoud" - -#~ msgid "Sidebar" -#~ msgstr "Menubalk" - -#~ msgid "Text" -#~ msgstr "Tekst" - -#~ msgid "Links" -#~ msgstr "Verwijzingen" - -#~ msgid "Advanced" -#~ msgstr "Uitgebreid" - -#~ msgid "Custom CSS" -#~ msgstr "Aangepaste CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Standaardinstellingen gebruiken" - -#~ msgid "Restore default designs." -#~ msgstr "Het standaardontwerp toepassen." - -#~ msgid "Reset back to default." -#~ msgstr "De standaardinstellingen toepassen." - -#~ msgid "Save design." -#~ msgstr "Ontwerp opslaan." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." - -#~ msgid "Group design" -#~ msgstr "Groepsontwerp" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "De vormgeving van uw groep aanpassen met een achtergrondafbeelding en een " -#~ "kleurenpalet van uw keuze." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Het was niet mogelijk om uw ontwerpinstellingen bij te werken." - -#~ msgid "Design preferences saved." -#~ msgstr "De ontwerpvoorkeuren zijn opgeslagen." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." - -#~ msgid "Backgrounds" -#~ msgstr "Achtergronden" - -#~ msgid "Server for backgrounds." -#~ msgstr "Server voor achtergronden." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Webpad naar achtergronden." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Server voor achtergronden op SSL-pagina's." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Webpad naar achtergronden op SSL-pagina's." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Map waar achtergronden worden opgeslagen." - -#~ msgid "Profile design" -#~ msgstr "Profielontwerp" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "U kunt de vormgeving van uw profiel aanpassen door een " -#~ "achtergrondafbeelding toe te voegen of het kleurenpalet aan te passen." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Geniet van uw hotdog!" - -#~ msgid "Design settings" -#~ msgstr "Vormgevingsinstellingen" - -#~ msgid "View profile designs" -#~ msgstr "Profielontwerpen gebruiken" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Profielontwerpen weergeven of verbergen" - -#~ msgid "Background file" -#~ msgstr "Achtergrondbestand" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." - -#~ msgid "Design configuration" -#~ msgstr "Instellingen vormgeving" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Uiterlijk" - -#~ msgid "Change design" -#~ msgstr "Ontwerp wijzigen" - -#~ msgid "Change colours" -#~ msgstr "Kleuren wijzigen" - -#~ msgid "Use defaults" -#~ msgstr "Standaardinstellingen gebruiken" - -#~ msgid "Upload file" -#~ msgstr "Bestand uploaden" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " -#~ "bestandsgrootte is 2 megabyte." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Aan" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Uit" - -#~ msgid "Design defaults restored." -#~ msgstr "Het standaardontwerp is weer ingesteld." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Vormgeving van de groep %s toevoegen of aanpassen" - -#~ msgid "Design your profile" -#~ msgstr "Uw profiel ontwerpen" +msgstr "Er is geen geldig profiel voor \"%s\" gevonden." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 813e3bfb33..d8972a730b 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:10+0000\n" "Last-Translator: Piotr DrÄ…g \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -301,7 +301,7 @@ msgstr "" "Można spróbować [szturchnąć użytkownika %1$s](../%2$s) z jego profilu lub " "[wysÅ‚ać mu coÅ›](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2138,7 +2138,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Nie można zaktualizować użytkownika." @@ -3219,6 +3219,7 @@ msgstr "ŹródÅ‚owy adres URL jest wymagany." msgid "Could not create application." msgstr "Nie można utworzyć aplikacji." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "NieprawidÅ‚owy rozmiar." @@ -5645,7 +5646,6 @@ msgstr "" "samo." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8979,7 +8979,7 @@ msgstr "WyÅ›lij bezpoÅ›redni wpis" msgid "Select recipient:" msgstr "Wybierz odbiorcÄ™:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Brak wzajemnych subskrybentów." @@ -9446,8 +9446,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10238,211 +10240,3 @@ msgstr "To nie jest prawidÅ‚owy adres e-mail." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Nie można zapisać profilu." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." - -#~ msgid "Could not update your design." -#~ msgstr "Nie można zaktualizować wyglÄ…du." - -#~ msgid "Design" -#~ msgstr "WyglÄ…d" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Ustawienia wyglÄ…du tej witryny StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Motyw nie jest dostÄ™pny: %s." - -#~ msgid "Change logo" -#~ msgstr "ZmieÅ„ logo" - -#~ msgid "Change theme" -#~ msgstr "ZmieÅ„ motyw" - -#~ msgid "Site theme" -#~ msgstr "Motyw witryny" - -#~ msgid "Theme for the site." -#~ msgstr "Motyw witryny." - -#~ msgid "Custom theme" -#~ msgstr "WÅ‚asny motyw" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Można wysÅ‚ać wÅ‚asny motyw witryny StatusNet jako archiwum zip." - -#~ msgid "Change background image" -#~ msgstr "ZmieÅ„ obraz tÅ‚a" - -#~ msgid "Background" -#~ msgstr "TÅ‚o" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Można wysÅ‚ać obraz tÅ‚a dla witryny. Maksymalny rozmiar pliku to %1$s." - -#~ msgid "On" -#~ msgstr "Włączone" - -#~ msgid "Off" -#~ msgstr "Wyłączone" - -#~ msgid "Turn background image on or off." -#~ msgstr "Włącz lub wyłącz obraz tÅ‚a." - -#~ msgid "Tile background image" -#~ msgstr "Kafelkowy obraz tÅ‚a" - -#~ msgid "Change colors" -#~ msgstr "ZmieÅ„ kolory" - -#~ msgid "Content" -#~ msgstr "Treść" - -#~ msgid "Sidebar" -#~ msgstr "Panel boczny" - -#~ msgid "Text" -#~ msgstr "Tekst" - -#~ msgid "Links" -#~ msgstr "OdnoÅ›niki" - -#~ msgid "Advanced" -#~ msgstr "Zaawansowane" - -#~ msgid "Custom CSS" -#~ msgstr "WÅ‚asny plik CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Użyj domyÅ›lne" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "Przywróć domyÅ›lny wyglÄ…d" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "Przywróć domyÅ›lne ustawienia" - -#, fuzzy -#~ msgid "Save design." -#~ msgstr "Zapisz wyglÄ…d" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Musisz być zalogowany, aby zmodyfikować grupÄ™." - -#~ msgid "Group design" -#~ msgstr "WyglÄ…d grupy" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Dostosuj wyglÄ…d grupy za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." - -#~ msgid "Design preferences saved." -#~ msgstr "Zapisano preferencje wyglÄ…du." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Nie wysyÅ‚aj wiadomoÅ›ci do siebie, po prostu powiedz to sobie po cichu." - -#~ msgid "Backgrounds" -#~ msgstr "TÅ‚a" - -#~ msgid "Server for backgrounds." -#~ msgstr "Serwer teÅ‚." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Åšcieżka WWW do teÅ‚." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Serwer teÅ‚ na stronach SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Åšcieżka WWW do teÅ‚ na stronach SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Katalog, w którym poÅ‚ożone sÄ… tÅ‚a." - -#~ msgid "Profile design" -#~ msgstr "WyglÄ…d profilu" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Dostosuj wyglÄ…d profilu za pomocÄ… wybranego obrazu tÅ‚a i palety kolorów." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Smacznego hot-doga." - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Zapisz ustawienia witryny" - -#~ msgid "View profile designs" -#~ msgstr "WyÅ›wietl ustawienia wyglÄ…du profilu" - -#~ msgid "Show or hide profile designs." -#~ msgstr "WyÅ›wietl lub ukryj ustawienia wyglÄ…du profilu." - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "TÅ‚o" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Nie można usunąć ustawienia wyglÄ…du." - -#~ msgid "Design configuration" -#~ msgstr "Konfiguracja wyglÄ…du" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "WyglÄ…d" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Zapisz wyglÄ…d" - -#~ msgid "Change colours" -#~ msgstr "ZmieÅ„ kolory" - -#~ msgid "Use defaults" -#~ msgstr "Użycie domyÅ›lnych" - -#~ msgid "Upload file" -#~ msgstr "WyÅ›lij plik" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "Można wysÅ‚ać osobisty obraz tÅ‚a. Maksymalny rozmiar pliku to 2 MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Włączone" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Wyłączone" - -#~ msgid "Design defaults restored." -#~ msgstr "Przywrócono domyÅ›lny wyglÄ…d." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Dodanie lub modyfikacja wyglÄ…du grupy %s" - -#~ msgid "Design your profile" -#~ msgstr "WyglÄ…d profilu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 48c40390b5..a10929cdfb 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -302,7 +302,7 @@ msgstr "" "Pode tentar [dar um toque em %1$s](../%2$s) a partir do perfil ou [endereçar-" "lhe uma nota](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2106,7 +2106,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "Não foi possível actualizar o utilizador." @@ -3180,6 +3180,7 @@ msgstr "É necessária a URL de origem." msgid "Could not create application." msgstr "Não foi possível criar a aplicação." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "Tamanho inválido." @@ -5616,7 +5617,6 @@ msgstr "" "mesma coisa outra vez." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logótipo" @@ -8937,7 +8937,7 @@ msgstr "Enviar uma nota directa" msgid "Select recipient:" msgstr "Seleccione um operador" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy msgid "No mutual subscribers." msgstr "Não subscrito!" @@ -9404,8 +9404,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -10188,204 +10190,3 @@ msgstr "Correio electrónico é inválido." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Não foi possível gravar o perfil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Não foi possível gravar as configurações do estilo." - -#~ msgid "Could not update your design." -#~ msgstr "Não foi possível actualizar o seu estilo." - -#~ msgid "Design" -#~ msgstr "Estilo" - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema não está disponível: %s." - -#~ msgid "Change logo" -#~ msgstr "Alterar logotipo" - -#~ msgid "Change theme" -#~ msgstr "Alterar tema" - -#~ msgid "Site theme" -#~ msgstr "Tema do site" - -#~ msgid "Theme for the site." -#~ msgstr "O tema para o site." - -#~ msgid "Custom theme" -#~ msgstr "Tema personalizado" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Pode fazer o upload de um tema personalizado para o StatusNet, na forma " -#~ "de um arquivo .ZIP." - -#~ msgid "Change background image" -#~ msgstr "Alterar imagem de fundo" - -#~ msgid "Background" -#~ msgstr "Fundo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Pode carregar uma imagem de fundo para o site. O tamanho máximo do " -#~ "ficheiro é %1$s." - -#~ msgid "On" -#~ msgstr "Ligar" - -#~ msgid "Off" -#~ msgstr "Desligar" - -#~ msgid "Turn background image on or off." -#~ msgstr "Ligar ou desligar a imagem de fundo." - -#~ msgid "Tile background image" -#~ msgstr "Repetir imagem de fundo em mosaico" - -#~ msgid "Change colors" -#~ msgstr "Alterar cores" - -#~ msgid "Content" -#~ msgstr "Conteúdo" - -#~ msgid "Sidebar" -#~ msgstr "Barra" - -#~ msgid "Text" -#~ msgstr "Texto" - -#~ msgid "Links" -#~ msgstr "Links" - -#~ msgid "Advanced" -#~ msgstr "Avançado" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalizado" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Usar padrão" - -#~ msgid "Restore default designs." -#~ msgstr "Restaurar designs padrão." - -#~ msgid "Reset back to default." -#~ msgstr "Repor para o padrão." - -#~ msgid "Save design." -#~ msgstr "Salvar o design." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Tem de iniciar uma sessão para editar um grupo." - -#~ msgid "Group design" -#~ msgstr "Estilo do grupo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta " -#~ "de cores à sua escolha." - -#, fuzzy -#~ msgid "Unable to update your design settings." -#~ msgstr "Não foi possível gravar as configurações do estilo." - -#~ msgid "Design preferences saved." -#~ msgstr "Preferências de estilo foram gravadas." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "Não auto-envie uma mensagem; basta lê-la baixinho a si próprio." - -#~ msgid "Backgrounds" -#~ msgstr "Fundos" - -#~ msgid "Server for backgrounds." -#~ msgstr "Servidor para os fundos." - -#, fuzzy -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Localização do directório das línguas" - -#~ msgid "Profile design" -#~ msgstr "Estilo do perfil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalize o estilo do seu perfil com uma imagem de fundo e uma paleta " -#~ "de cores à sua escolha." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Disfrute do seu cachorro-quente!" - -#, fuzzy -#~ msgid "Design settings" -#~ msgstr "Gravar configurações do site" - -#~ msgid "View profile designs" -#~ msgstr "Ver estilos para o perfil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Mostrar ou esconder estilos para o perfil." - -#~ msgid "Background file" -#~ msgstr "Ficheiro de fundo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Não foi possível apagar a configuração do estilo." - -#~ msgid "Design configuration" -#~ msgstr "Configuração do estilo" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Estilo" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "Gravar o estilo" - -#~ msgid "Change colours" -#~ msgstr "Alterar cores" - -#~ msgid "Use defaults" -#~ msgstr "Usar predefinições" - -#~ msgid "Upload file" -#~ msgstr "Carregar ficheiro" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é " -#~ "2MB." - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Ligar" - -#, fuzzy -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Desligar" - -#~ msgid "Design defaults restored." -#~ msgstr "Predefinições do estilo repostas" - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Adicionar ou editar o design de %s" - -#~ msgid "Design your profile" -#~ msgstr "Altere o estilo do seu perfil" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ec1ce8ce72..0a0379b7c0 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,18 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:45+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:12+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -310,7 +310,7 @@ msgstr "" "[publicar alguma mensagem para ele](%%%%action.newnotice%%%%?status_textarea=" "%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2126,7 +2126,7 @@ msgstr "" "Tornar privada uma etiqueta pública removerá permanentemente todas as " "assinaturas a ela. Deseja realmente continuar?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Não foi possível atualizar a lista." @@ -3188,6 +3188,7 @@ msgstr "A URL da fonte é obrigatória." msgid "Could not create application." msgstr "Não foi possível criar a aplicação." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Imagem inválida." @@ -5561,7 +5562,6 @@ msgstr "" "coisa novamente." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logotipo" @@ -8786,7 +8786,7 @@ msgstr "Enviar uma mensagem direta" msgid "Select recipient:" msgstr "Selecione uma operadora:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Sem assinantes mútuos." @@ -9240,8 +9240,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Habilitar" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" "(As descrições dos plugins não estão disponíveis quando eles estão " "desabilitados)" @@ -10023,212 +10026,3 @@ msgstr "Não é um endereço de e-mail válido." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Não foi possível salvar o perfil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Não foi possível salvar suas configurações de aparência." - -#~ msgid "Could not update your design." -#~ msgstr "Não foi possível atualizar a sua aparência." - -#~ msgid "Design" -#~ msgstr "Aparência" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Configurações da aparência deste site StatusNet." - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema não disponível: %s." - -#~ msgid "Change logo" -#~ msgstr "Alterar a logo" - -#~ msgid "Change theme" -#~ msgstr "Alterar o tema" - -#~ msgid "Site theme" -#~ msgstr "Tema do site" - -#~ msgid "Theme for the site." -#~ msgstr "Tema para o site." - -#~ msgid "Custom theme" -#~ msgstr "Tema personalizado" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Você pode enviar um tema personalizado para o StatusNet, na forma de um " -#~ "arquivo .zip." - -#~ msgid "Change background image" -#~ msgstr "Alterar imagem do fundo" - -#~ msgid "Background" -#~ msgstr "Fundo" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Você pode enviar uma imagem de fundo para o site. O tamanho máximo do " -#~ "arquivo é de %1$s." - -#~ msgid "On" -#~ msgstr "Ativado" - -#~ msgid "Off" -#~ msgstr "Desativado" - -#~ msgid "Turn background image on or off." -#~ msgstr "Ativar/desativar a imagem de fundo." - -#~ msgid "Tile background image" -#~ msgstr "Ladrilhar a imagem de fundo" - -#~ msgid "Change colors" -#~ msgstr "Alterar as cores" - -#~ msgid "Content" -#~ msgstr "Conteúdo" - -#~ msgid "Sidebar" -#~ msgstr "Barra lateral" - -#~ msgid "Text" -#~ msgstr "Texto" - -#~ msgid "Links" -#~ msgstr "Links" - -#~ msgid "Advanced" -#~ msgstr "Avançado" - -#~ msgid "Custom CSS" -#~ msgstr "CSS personalizado" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Usar o padrão" - -#~ msgid "Restore default designs." -#~ msgstr "Restaurar a aparência padrão." - -#~ msgid "Reset back to default." -#~ msgstr "Restaurar de volta ao padrão." - -#~ msgid "Save design." -#~ msgstr "Salvar a aparência." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Você precisa estar autenticado para editar um grupo." - -#~ msgid "Group design" -#~ msgstr "Aparência do grupo" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalize a aparência do grupo com uma imagem de fundo e uma paleta de " -#~ "cores à sua escolha." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Não foi possível atualizar suas configurações de aparência." - -#~ msgid "Design preferences saved." -#~ msgstr "As configurações da aparência foram salvas." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Não envie mensagens para você mesmo(a); ao invés disso, apenas diga-a " -#~ "para si, discretamente." - -#~ msgid "Backgrounds" -#~ msgstr "Imagens de fundo" - -#~ msgid "Server for backgrounds." -#~ msgstr "Servidor para as imagens de fundo." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Caminho web para os planos de fundo." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Servidor para planos de fundo nas páginas SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Caminho web para planos de fundo nas páginas SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Diretório onde os planos de fundo estão localizados." - -#~ msgid "Profile design" -#~ msgstr "Aparência do perfil" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Personalize a aparência do seu perfil, com uma imagem de fundo e uma " -#~ "paleta de cores da sua preferência." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Aproveite o seu cachorro-quente!" - -#~ msgid "Design settings" -#~ msgstr "Configurações da aparência" - -#~ msgid "View profile designs" -#~ msgstr "Visualizar aparências do perfil" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Exibir ou esconder as aparências do perfil." - -#~ msgid "Background file" -#~ msgstr "Arquivo da imagem de fundo" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Não foi possível excluir as configurações da aparência." - -#~ msgid "Design configuration" -#~ msgstr "Configuração da aparência" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Aparência" - -#~ msgid "Change design" -#~ msgstr "Alterar a aparência" - -#~ msgid "Change colours" -#~ msgstr "Alterar a cor" - -#~ msgid "Use defaults" -#~ msgstr "Usar o padrão|" - -#~ msgid "Upload file" -#~ msgstr "Enviar arquivo" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Você pode enviar sua imagem de fundo. O tamanho máximo do arquivo é de " -#~ "2Mb." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Habilitar" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Desabilitar" - -#~ msgid "Design defaults restored." -#~ msgstr "A aparência padrão foi restaurada." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Adicionar ou editar a aparência de %s" - -#~ msgid "Design your profile" -#~ msgstr "Mude a aparência do seu perfil" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 843d6bc124..ba5a4143ee 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\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" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -309,7 +309,7 @@ msgstr "" "Ð’Ñ‹ можете попробовать «[подтолкнуть %1$s](../%2$s)» из их Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¸Ð»Ð¸ " "[напиÑать им что-нибудь](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2132,7 +2132,7 @@ msgstr "" "Указание тега как личного приведёт к необратимому удалению вÑех подпиÑок на " "него. Ð’Ñ‹ вÑÑ‘ ещё ​​хотите продолжить?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Ðе удалоÑÑŒ обновить ÑпиÑок." @@ -3197,6 +3197,7 @@ msgstr "URL иÑточника обÑзателен." msgid "Could not create application." msgstr "Ðе удаётÑÑ Ñоздать приложение." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "ÐедопуÑтимое изображение." @@ -5558,7 +5559,6 @@ msgstr "" "Сколько нужно ждать пользователÑм (в Ñекундах) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ того же ещё раз." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Логотип" @@ -8785,7 +8785,7 @@ msgstr "ПоÑлать прÑмую запиÑÑŒ" msgid "Select recipient:" msgstr "Выберите получателÑ:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Ðет взаимных подпиÑчиков." @@ -9216,8 +9216,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Включить" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(ОпиÑание отключённых раÑширений недоÑтупно.)" #. TRANS: Menu item in primary navigation panel. @@ -9972,209 +9975,3 @@ msgstr "Ðеверный Ñлектронный адреÑ." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Ðе удаётÑÑ Ñохранить профиль." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Ðе удаётÑÑ Ñохранить ваши наÑтройки оформлениÑ!" - -#~ msgid "Could not update your design." -#~ msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваше оформление." - -#~ msgid "Design" -#~ msgstr "Оформление" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñтого Ñайта StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Тема не доÑтупна: %s." - -#~ msgid "Change logo" -#~ msgstr "Изменить логотип" - -#~ msgid "Change theme" -#~ msgstr "Изменить тему" - -#~ msgid "Site theme" -#~ msgstr "Тема Ñайта" - -#~ msgid "Theme for the site." -#~ msgstr "Тема Ð´Ð»Ñ Ñайта." - -#~ msgid "Custom theme" -#~ msgstr "ОÑÐ¾Ð±Ð°Ñ Ñ‚ÐµÐ¼Ð°" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Ð’Ñ‹ можете загрузить оÑобую тему StatusNet в виде ZIP-архива." - -#~ msgid "Change background image" -#~ msgstr "Изменение фонового изображениÑ" - -#~ msgid "Background" -#~ msgstr "Фон" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Ð’Ñ‹ можете загрузить фоновое изображение Ð´Ð»Ñ Ñайта. МакÑимальный размер " -#~ "файла ÑоÑтавлÑет %1$s." - -#~ msgid "On" -#~ msgstr "Включить" - -#~ msgid "Off" -#~ msgstr "Отключить" - -#~ msgid "Turn background image on or off." -#~ msgstr "Включить или отключить показ фонового изображениÑ." - -#~ msgid "Tile background image" -#~ msgstr "РаÑÑ‚Ñнуть фоновое изображение" - -#~ msgid "Change colors" -#~ msgstr "Изменение цвета" - -#~ msgid "Content" -#~ msgstr "Содержание" - -#~ msgid "Sidebar" -#~ msgstr "Ð‘Ð¾ÐºÐ¾Ð²Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" - -#~ msgid "Text" -#~ msgstr "ТекÑÑ‚" - -#~ msgid "Links" -#~ msgstr "СÑылки" - -#~ msgid "Advanced" -#~ msgstr "РаÑширенный" - -#~ msgid "Custom CSS" -#~ msgstr "ОÑобый CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" - -#~ msgid "Restore default designs." -#~ msgstr "ВоÑÑтановить оформление по умолчанию." - -#~ msgid "Reset back to default." -#~ msgstr "ВоÑÑтановить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию." - -#~ msgid "Save design." -#~ msgstr "Сохранить оформление." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Ð’Ñ‹ должны авторизоватьÑÑ, чтобы изменить группу." - -#~ msgid "Group design" -#~ msgstr "Оформление группы" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "ÐаÑтройте внешний вид группы, уÑтановив фоновое изображение и цветовую " -#~ "гамму на ваш выбор." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ваши наÑтройки оформлениÑ." - -#~ msgid "Design preferences saved." -#~ msgstr "ÐаÑтройки Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ñохранены." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Ðе поÑылайте ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ñами Ñебе; проÑто потихоньку Ñкажите Ñто Ñебе." - -#~ msgid "Backgrounds" -#~ msgstr "Фоновые изображениÑ" - -#~ msgid "Server for backgrounds." -#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Веб-путь к фоновым изображениÑм." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ñ‹Ñ… изображений на Ñтраницах SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Веб-путь к фоновым изображениÑм Ð´Ð»Ñ SSL-Ñтраниц." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "ДиректориÑ, в которой раÑположены фоновые изображениÑ." - -#~ msgid "Profile design" -#~ msgstr "Оформление профилÑ" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "ÐаÑтройте внешний вид Ñвоего профилÑ, уÑтановив фоновое изображение и " -#~ "цветовую гамму на Ñвой выбор." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "ПриÑтного аппетита!" - -#~ msgid "Design settings" -#~ msgstr "ÐаÑтройки оформлениÑ" - -#~ msgid "View profile designs" -#~ msgstr "Показать Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Показать или Ñкрыть Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ." - -#~ msgid "Background file" -#~ msgstr "Файл фона" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ наÑтройки оформлениÑ." - -#~ msgid "Design configuration" -#~ msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Оформление" - -#~ msgid "Change design" -#~ msgstr "Изменение оформлениÑ" - -#~ msgid "Change colours" -#~ msgstr "Изменение цветовой гаммы" - -#~ msgid "Use defaults" -#~ msgstr "ИÑпользовать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" - -#~ msgid "Upload file" -#~ msgstr "Загрузить файл" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Ð’Ñ‹ можете загрузить ÑобÑтвенное фоновое изображение. МакÑимальный размер " -#~ "файла ÑоÑтавлÑет 2МБ." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Включено" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Выключено" - -#~ msgid "Design defaults restored." -#~ msgstr "Оформление по умолчанию воÑÑтановлено." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Добавить или изменить оформление %s" - -#~ msgid "Design your profile" -#~ msgstr "Оформить ваш профиль" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index b0d893f125..10e2cd72fb 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -385,7 +385,7 @@ msgid "" "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2593,7 +2593,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #: actions/editpeopletag.php:297 msgid "Could not update list." msgstr "" @@ -3807,7 +3807,8 @@ msgstr "" msgid "Could not create application." msgstr "" -#: actions/newapplication.php:298 +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. +#: actions/newapplication.php:299 msgid "Invalid image." msgstr "" @@ -10051,7 +10052,7 @@ msgstr "" msgid "Select recipient:" msgstr "" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #: lib/messageform.php:145 msgid "No mutual subscribers." msgstr "" @@ -10567,9 +10568,11 @@ msgctxt "plugin" msgid "Enable" msgstr "" -#: lib/pluginlist.php:196 +#. TRANS: Plugin description for a disabled plugin. +#: lib/pluginlist.php:195 msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index dae6829ff8..c0cd647762 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:50+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -304,7 +304,7 @@ msgstr "" "Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2106,7 +2106,7 @@ msgstr "" "Ställa om en publik tagg som privat kommer permanent ta bort alla befintliga " "prenumerationer pÃ¥ den. Vill du fortfarande fortsätta?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Kunde inte uppdatera lista." @@ -3153,6 +3153,7 @@ msgstr "Webbadress till källa krävs." msgid "Could not create application." msgstr "Kunde inte skapa applikation." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Ogiltig bild." @@ -5503,7 +5504,6 @@ msgstr "" "Hur länge användare mÃ¥ste vänta (i sekunder) för att posta samma sak igen." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logotyp" @@ -8693,7 +8693,7 @@ msgstr "Skicka en direktnotis" msgid "Select recipient:" msgstr "Välj mottagare:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Inga ömsesidiga prenumeranter." @@ -9123,8 +9123,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Aktivera" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(Beskrivningar av insticksmoduler inte tillgängliga när inaktiverade.)" #. TRANS: Menu item in primary navigation panel. @@ -9863,208 +9866,3 @@ msgstr "Inte en giltig e-postadress." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Kunde inte spara profil." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Kunde inte spara dina utseendeinställningar." - -#~ msgid "Could not update your design." -#~ msgstr "Kunde inte uppdatera din profils utseende." - -#~ msgid "Design" -#~ msgstr "Utseende" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Utseendeinställningar för den här StatusNet-webbplatsen" - -#~ msgid "Theme not available: %s." -#~ msgstr "Tema inte tillgängligt: %s." - -#~ msgid "Change logo" -#~ msgstr "Byt logotyp" - -#~ msgid "Change theme" -#~ msgstr "Byt tema" - -#~ msgid "Site theme" -#~ msgstr "Webbplatstema" - -#~ msgid "Theme for the site." -#~ msgstr "Tema för webbplatsen." - -#~ msgid "Custom theme" -#~ msgstr "Anpassat tema" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv." - -#~ msgid "Change background image" -#~ msgstr "Ändra bakgrundsbild" - -#~ msgid "Background" -#~ msgstr "Bakgrund" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Du kan ladda upp en bakgrundsbild för denna webbplats. Den maximala " -#~ "filstorleken är %1$s." - -#~ msgid "On" -#~ msgstr "PÃ¥" - -#~ msgid "Off" -#~ msgstr "Av" - -#~ msgid "Turn background image on or off." -#~ msgstr "Sätt pÃ¥ eller stäng av bakgrundsbild." - -#~ msgid "Tile background image" -#~ msgstr "Upprepa bakgrundsbild" - -#~ msgid "Change colors" -#~ msgstr "Byt färger" - -#~ msgid "Content" -#~ msgstr "InnehÃ¥ll" - -#~ msgid "Sidebar" -#~ msgstr "Sidofält" - -#~ msgid "Text" -#~ msgstr "Text" - -#~ msgid "Links" -#~ msgstr "Länkar" - -#~ msgid "Advanced" -#~ msgstr "Avancerat" - -#~ msgid "Custom CSS" -#~ msgstr "Anpassad CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Använd standardvärden" - -#~ msgid "Restore default designs." -#~ msgstr "Ã…terställ standardutseende." - -#~ msgid "Reset back to default." -#~ msgstr "Ã…terställ till standard." - -#~ msgid "Save design." -#~ msgstr "Spara utseende." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Du mÃ¥ste vara inloggad för att redigera en grupp." - -#~ msgid "Group design" -#~ msgstr "Gruppens utseende" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Anpassa hur din grupp ser ut genom att välja bakgrundbild och färgpalett." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Det gick inte att uppdatera utseendeinställningarna." - -#~ msgid "Design preferences saved." -#~ msgstr "Utseendeinställningar sparade." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Skicka inte meddelande till dig själv; viska lite tyst till dig själv " -#~ "istället." - -#~ msgid "Backgrounds" -#~ msgstr "Bakgrunder" - -#~ msgid "Server for backgrounds." -#~ msgstr "Server för bakgrunder." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Websökväg till bakgrunder." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Server för bakgrunder pÃ¥ SSL-sidor." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "Webbsökväg till bakgrunder pÃ¥ SSL-sidor." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Katalog där bakgrunder finns." - -#~ msgid "Profile design" -#~ msgstr "Profilutseende" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Anpassa hur din profil ser ut genom att välja bakgrundbild och färgpalett." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Smaklig mÃ¥ltid!" - -#~ msgid "Design settings" -#~ msgstr "Utseendeinställningar" - -#~ msgid "View profile designs" -#~ msgstr "Visa profilutseenden" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Visa eller göm profilutseenden." - -#~ msgid "Background file" -#~ msgstr "Fil för bakgrund" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Kunde inte ta bort utseendeinställning." - -#~ msgid "Design configuration" -#~ msgstr "Konfiguration av utseende" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Utseende" - -#~ msgid "Change design" -#~ msgstr "Ändra utseende" - -#~ msgid "Change colours" -#~ msgstr "Byt färger" - -#~ msgid "Use defaults" -#~ msgstr "Använd standardvärden" - -#~ msgid "Upload file" -#~ msgstr "Ladda upp fil" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Du kan ladda upp din personliga bakgrundbild. Den maximala filstorleken " -#~ "är 2MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "PÃ¥" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Av" - -#~ msgid "Design defaults restored." -#~ msgstr "Standardvärden för utseende Ã¥terställda." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Lägg till eller redigera %s utseende" - -#~ msgid "Design your profile" -#~ msgstr "Designa din profil" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index b69abb6374..b9b6cd8b06 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:51+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:16+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -287,7 +287,7 @@ msgstr "" "à°ªà±à°°à±Šà°«à±ˆà°²à± à°¦à±à°µà°¾à°°à°¾ [%1$sని కదిపి](../%2$s) చూడండి లేదా [వారికి à°à°¦à±ˆà°¨à°¾ à°µà±à°°à°¾à°¯à°‚à°¡à°¿](%%%%action.newnotice%" "%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2077,7 +2077,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. #, fuzzy msgid "Could not update list." msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." @@ -3123,6 +3123,7 @@ msgstr "పేరౠతపà±à°ªà°¨à°¿à°¸à°°à°¿." msgid "Could not create application." msgstr "ఉపకరణానà±à°¨à°¿ సృషà±à°Ÿà°¿à°‚చలేకపోయాం." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. #, fuzzy msgid "Invalid image." msgstr "తపà±à°ªà±à°¡à± పరిమాణం." @@ -5476,7 +5477,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "అదే విషయానà±à°¨à°¿ మళà±à°³à±€ టపా చేయడానికి వాడà±à°•à°°à±à°²à± à°Žà°‚à°¤ సమయం (à°•à±à°·à°£à°¾à°²à±à°²à±‹) వేచివà±à°‚డాలి." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "à°šà°¿à°¹à±à°¨à°‚" @@ -8655,7 +8655,7 @@ msgstr "సైటౠగమనికని à°­à°¦à±à°°à°ªà°°à°šà±" msgid "Select recipient:" msgstr "" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "పరసà±à°ªà°° చందాదారà±à°²à± ఎవరూలేరà±." @@ -9099,8 +9099,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9840,186 +9842,3 @@ msgstr "సరైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ కాదౠ#, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "à°ªà±à°°à±Šà°«à±ˆà°²à±à°¨à°¿ à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#~ msgid "Unable to save your design settings." -#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#, fuzzy -#~ msgid "Could not update your design." -#~ msgstr "వాడà±à°•రిని తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." - -#~ msgid "Design" -#~ msgstr "రూపà±à°°à±‡à°–à°²à±" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "à°ˆ à°¸à±à°Ÿà±‡à°Ÿà°¸à±‌నెటౠసైటà±à°•à°¿ రూపà±à°°à±‡à°–à°² అమరికలà±" - -#~ msgid "Theme not available: %s." -#~ msgstr "అలంకారం à°…à°‚à°¦à±à°¬à°¾à°Ÿà±à°²à±‹ లేదà±: %s." - -#~ msgid "Change logo" -#~ msgstr "à°šà°¿à°¹à±à°¨à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#~ msgid "Change theme" -#~ msgstr "అలంకారానà±à°¨à°¿ మారà±à°šà±" - -#~ msgid "Site theme" -#~ msgstr "సైటౠఅలంకారం" - -#~ msgid "Theme for the site." -#~ msgstr "సైటà±à°•à°¿ అలంకారం." - -#~ msgid "Custom theme" -#~ msgstr "అభిమత అలంకారం" - -#~ msgid "Change background image" -#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#~ msgid "Background" -#~ msgstr "నేపథà±à°¯à°‚" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "సైటà±à°•à°¿ మీరౠనేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ à°Žà°•à±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం %1$s." - -#~ msgid "On" -#~ msgstr "ఆనà±" - -#~ msgid "Off" -#~ msgstr "ఆఫà±" - -#, fuzzy -#~ msgid "Turn background image on or off." -#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#, fuzzy -#~ msgid "Tile background image" -#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మారà±à°šà±" - -#~ msgid "Change colors" -#~ msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" - -#~ msgid "Content" -#~ msgstr "విషయం" - -#~ msgid "Sidebar" -#~ msgstr "పకà±à°•పటà±à°Ÿà±€" - -#~ msgid "Text" -#~ msgstr "పాఠà±à°¯à°‚" - -#~ msgid "Links" -#~ msgstr "లంకెలà±" - -#~ msgid "Advanced" -#~ msgstr "ఉనà±à°¨à°¤" - -#~ msgid "Custom CSS" -#~ msgstr "à°ªà±à°°à°¤à±à°¯à±‡à°• CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" - -#, fuzzy -#~ msgid "Restore default designs." -#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" - -#, fuzzy -#~ msgid "Reset back to default." -#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à°¿ ఉపయోగించà±" - -#~ msgid "Save design." -#~ msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà°‚à°¡à°¿." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "à°—à±à°‚à°ªà±à°¨à°¿ మారà±à°šà°¡à°¾à°¨à°¿à°•à°¿ మీరౠపà±à°°à°µà±‡à°¶à°¿à°‚à°šà°¿ ఉండాలి." - -#~ msgid "Group design" -#~ msgstr "à°—à±à°‚పౠఅలంకారం" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." - -#~ msgid "Unable to update your design settings." -#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలనౠభదà±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#~ msgid "Design preferences saved." -#~ msgstr "ఈమెయిలౠఅభిరà±à°šà±à°²à± à°­à°¦à±à°°à°®à°¯à±à°¯à°¾à°¯à°¿." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "మీకౠమీరే సందేశానà±à°¨à°¿ పంపà±à°•ోకండి; దాని బదà±à°²à± మీలో మీరే మెలà±à°²à°—à°¾ చెపà±à°ªà±à°•ోండి." - -#~ msgid "Backgrounds" -#~ msgstr "నేపథà±à°¯à°¾à°²à±" - -#, fuzzy -#~ msgid "Server for backgrounds." -#~ msgstr "సైటà±à°•à°¿ అలంకారం." - -#~ msgid "Profile design" -#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#, fuzzy -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "నేపథà±à°¯ à°šà°¿à°¤à±à°°à°‚ మరియౠరంగà±à°² ఎంపికతో మీ à°—à±à°‚పౠఎలా కనిపించాలో మలచà±à°•ోండి." - -#~ msgid "Design settings" -#~ msgstr "రూపà±à°°à±‡à°–à°² అమరికలà±" - -#~ msgid "View profile designs" -#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#, fuzzy -#~ msgid "Show or hide profile designs." -#~ msgstr "à°«à±à°°à±Šà°«à±ˆà°²à± రూపà±à°°à±‡à°–à°²à±" - -#, fuzzy -#~ msgid "Background file" -#~ msgstr "నేపథà±à°¯à°‚" - -#, fuzzy -#~ msgid "Unable to delete design setting." -#~ msgstr "మీ రూపà±à°°à±‡à°–à°² అమరికలని à°­à°¦à±à°°à°ªà°°à°šà°²à±‡à°•à±à°¨à±à°¨à°¾à°‚." - -#~ msgid "Design configuration" -#~ msgstr "రూపకలà±à°ªà°¨ à°¸à±à°µà°°à±‚పణం" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "రూపà±à°°à±‡à°–à°²à±" - -#, fuzzy -#~ msgid "Change design" -#~ msgstr "రూపà±à°°à±‡à°–లని à°­à°¦à±à°°à°ªà°°à°šà±" - -#~ msgid "Change colours" -#~ msgstr "à°°à°‚à°—à±à°²à°¨à± మారà±à°šà±" - -#~ msgid "Use defaults" -#~ msgstr "à°…à°ªà±à°°à°®à±‡à°¯à°¾à°²à°¨à± ఉపయోగించà±" - -#~ msgid "Upload file" -#~ msgstr "ఫైలà±à°¨à°¿ à°Žà°•à±à°•à°¿à°‚à°šà±" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "మీ à°µà±à°¯à°•à±à°¤à°¿à°—à°¤ నేపథà±à°¯à°ªà± à°šà°¿à°¤à±à°°à°¾à°¨à±à°¨à°¿ మీరౠఎకà±à°•ించవచà±à°šà±. à°—à°°à°¿à°·à±à°  ఫైలౠపరిమాణం 2మెబై." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "ఆనà±" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "ఆఫà±" - -#~ msgid "Design your profile" -#~ msgstr "వాడà±à°•à°°à°¿ à°ªà±à°°à±Šà°«à±ˆà°²à±" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index df4c3e369d..7162be05ec 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:52+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -309,7 +309,7 @@ msgstr "" "balangkas o [magpaskil ng bagay sa kanila] (%%%%action.newnotice%%%%?" "status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2149,7 +2149,7 @@ msgstr "" "magtatanggal ng lahat ng umiiral na mga pagpapasipi mula rito. Nais mo pa " "ring magpatuloy?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Hindi maisapanahon ang talaan." @@ -3240,6 +3240,7 @@ msgstr "Kailangan ang URL na pinagmumulan." msgid "Could not create application." msgstr "Hindi malikha ang aplikasyon." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "Hindi katanggap-tanggap na larawan." @@ -8965,7 +8966,7 @@ msgstr "Magpadala ng isang tuwirang pabatid" msgid "Select recipient:" msgstr "Pumili ng tagatanggap:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Walang nagbibigayang mga sumisipi." @@ -9398,8 +9399,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Paganahin" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" "(Hindi makukuha ang mga paglalarawan ng pampasak kapag hindi gumagana.)" @@ -10153,214 +10157,3 @@ msgstr "Hindi isang katanggap-tanggap na tirahan ng e-liham." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Hindi masagip ang balangkas." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Hindi nagawang sagipin ang mga pagtatakda mo ng disenyo." - -#~ msgid "Could not update your design." -#~ msgstr "Hindi maisapanahon ang disenyo mo." - -#~ msgid "Design" -#~ msgstr "Disenyo" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "Mga katakdaan ng disensyo para sa sityong ito ng StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Hindi makukuha ang tema: %s." - -#~ msgid "Change logo" -#~ msgstr "Baguhin ang logo" - -#~ msgid "Change theme" -#~ msgstr "Baguhin ang tema" - -#~ msgid "Site theme" -#~ msgstr "Tema ng sityo" - -#~ msgid "Theme for the site." -#~ msgstr "Tema para sa sityo." - -#~ msgid "Custom theme" -#~ msgstr "Pinasadyang tema" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "" -#~ "Makapagkakarga kang papaitaas ng isang pinasadyang tema ng StatusNet " -#~ "bilang isang supnay na .ZIP." - -#~ msgid "Change background image" -#~ msgstr "Baguhin ang panlikod na larawan" - -#~ msgid "Background" -#~ msgstr "Panlikurang tanawin" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Maaari kang makapagkargang papaitaas ng isang larawang panlikuran para sa " -#~ "sityo. Ang pinakamataas na sukat ng talaksan ay %1$s." - -#~ msgid "On" -#~ msgstr "Buhay" - -#~ msgid "Off" -#~ msgstr "Nakapatay" - -#~ msgid "Turn background image on or off." -#~ msgstr "Buhayin o patayin ang larawan na panglikuran." - -#~ msgid "Tile background image" -#~ msgstr "Panlikurang larawan ng tisa" - -#~ msgid "Change colors" -#~ msgstr "Palitan ang mga kulay" - -#~ msgid "Content" -#~ msgstr "Nilalaman" - -#~ msgid "Sidebar" -#~ msgstr "Panggilid na halang" - -#~ msgid "Text" -#~ msgstr "Teksto" - -#~ msgid "Links" -#~ msgstr "Mga kawing" - -#~ msgid "Advanced" -#~ msgstr "Mas masulong" - -#~ msgid "Custom CSS" -#~ msgstr "Pasadyang CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "Gamitin ang likas na mga katakdaan" - -#~ msgid "Restore default designs." -#~ msgstr "Ibalik ang likas na nakatakdang mga disenyo." - -#~ msgid "Reset back to default." -#~ msgstr "Muling itakda pabalik sa likas na pagtatakda." - -#~ msgid "Save design." -#~ msgstr "Sagipin ang disenyo." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "Dapat kang nakalagda upang makapamatnugot ng isang pangkat." - -#~ msgid "Group design" -#~ msgstr "Disenyo ng pangkat" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Ipasadya ang paraan ng kaanyuan ng pangkat na may isang larawang " -#~ "panlikuran at isang paleta ng kulay na napili mo." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Hindi nagawang isapanahon ang mga pagtatakda mo ng disenyo." - -#~ msgid "Design preferences saved." -#~ msgstr "Nasagip ang mga kagustuhan sa disenyo." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Huwag magpadala ng isang mensahe na papunta sa sarili mo; sa halip ay " -#~ "sabihin lamang ito ng tahimik sa sarili mo." - -#~ msgid "Backgrounds" -#~ msgstr "Mga panlikuran" - -#~ msgid "Server for backgrounds." -#~ msgstr "Tagapaghain para sa mga panlikuran." - -#~ msgid "Web path to backgrounds." -#~ msgstr "Landas ng web papunta sa mga panlikuran." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Tagapaghain para sa mga panlikuran na nasa mga pahina ng SSL." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "" -#~ "Landas ng web papunta sa mga panlkuran na nasa ibabaw ng mga pahina ng " -#~ "SSL." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "Direktoryo kung saan matatagpuan ang mga panlikuran." - -#~ msgid "Profile design" -#~ msgstr "Disenyo ng balangkas" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Ipasadya ang paraan ng kaanyuan ng balangkas na may isang larawang " -#~ "panlikuran at isang paleta ng kulay na napili mo." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "Masiyahan sa hotdog mo!" - -#~ msgid "Design settings" -#~ msgstr "Mga katakdaan ng disenyo" - -#~ msgid "View profile designs" -#~ msgstr "Tingnan ang mga disenyo ng balangkas" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Ipakita o itago ang mga disenyo ng balangkas." - -#~ msgid "Background file" -#~ msgstr "Talaksan ng panlikurang tanawin" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Hindi nagawang burahin ang mga pagtatakda mo ng disenyo." - -#~ msgid "Design configuration" -#~ msgstr "Pagkakaayos ng disenyo" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Disenyo" - -#~ msgid "Change design" -#~ msgstr "Baguhin ang disenyo" - -#~ msgid "Change colours" -#~ msgstr "Baguhin ang mga kulay" - -#~ msgid "Use defaults" -#~ msgstr "Gamitin ang likas na mga katakdaan" - -#~ msgid "Upload file" -#~ msgstr "Ikarga ang talaksan" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Maaari mong ikargang papaitaas ang pansarili mong larawang panlikuran. " -#~ "Ang pinakamataas na sukat ng talaksan ay 2MB." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Buhay" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Patay" - -#~ msgid "Design defaults restored." -#~ msgstr "Naipanumbalik ang likas na mga katakdaan ng disenyo." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Idagdag o baguhin ang disenyo ng %s" - -#~ msgid "Design your profile" -#~ msgstr "Magdisenyo ng balangkas mo" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 28c56c2cc9..f933654bab 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\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" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -304,7 +304,7 @@ msgstr "" "Ви можете [«розштовхати» %1$s](../%2$s) зі Ñторінки його профілю або [щоÑÑŒ " "йому напиÑати](%%%%action.newnotice%%%%?status_textarea=%3$s)." -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2134,7 +2134,7 @@ msgstr "" "Ð—Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ‚ÐµÒ‘Ñƒ Ñк оÑобиÑтого означатиме незворотне Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð²ÑÑ–Ñ… підпиÑок " "до нього. Ви вÑе ще хочете продовжити?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ ÑпиÑок." @@ -3191,6 +3191,7 @@ msgstr "Потрібна URL-адреÑа." msgid "Could not create application." msgstr "Ðе вдалоÑÑ Ñтворити додаток." +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "ÐеприпуÑтиме зображеннÑ." @@ -5556,7 +5557,6 @@ msgstr "" "Ð´Ð¾Ð¿Ð¸Ñ Ñ‰Ðµ раз." #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Логотип" @@ -8780,7 +8780,7 @@ msgstr "ÐадіÑлати прÑмий допиÑ" msgid "Select recipient:" msgstr "Оберіть одержувача:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "Ðемає відповідних абонентів." @@ -9211,8 +9211,11 @@ msgctxt "plugin" msgid "Enable" msgstr "Увімкнути" +#. TRANS: Plugin description for a disabled plugin. +#, fuzzy msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "(ÐžÐ¿Ð¸Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÑƒ недоÑтупний, Ñкщо даний додаток вимкнутий.)" #. TRANS: Menu item in primary navigation panel. @@ -9967,211 +9970,3 @@ msgstr "Це недійÑна електронна адреÑа." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ профіль." - -#~ msgid "Unable to save your design settings." -#~ msgstr "Ðе маю можливоÑті зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - -#~ msgid "Could not update your design." -#~ msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ ваш дизайн." - -#~ msgid "Design" -#~ msgstr "Дизайн" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту StatusNet" - -#~ msgid "Theme not available: %s." -#~ msgstr "Тема недоÑтупна: %s." - -#~ msgid "Change logo" -#~ msgstr "Змінити логотип" - -#~ msgid "Change theme" -#~ msgstr "Змінити тему" - -#~ msgid "Site theme" -#~ msgstr "Тема Ñайту" - -#~ msgid "Theme for the site." -#~ msgstr "Тема Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту." - -#~ msgid "Custom theme" -#~ msgstr "Ð¡Ð²Ð¾Ñ Ñ‚ÐµÐ¼Ð°" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "Ви можете завантажити Ñвою тему Ð´Ð»Ñ Ñайту StatusNet Ñк .ZIP архів." - -#~ msgid "Change background image" -#~ msgstr "Змінити фонове зображеннÑ" - -#~ msgid "Background" -#~ msgstr "Фон" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "" -#~ "Ви можете завантажити фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñайту. МакÑимальний розмір " -#~ "файлу %1$s." - -#~ msgid "On" -#~ msgstr "Увімк." - -#~ msgid "Off" -#~ msgstr "Вимк." - -#~ msgid "Turn background image on or off." -#~ msgstr "Увімкнути або вимкнути фонове зображеннÑ." - -#~ msgid "Tile background image" -#~ msgstr "ЗамоÑтити фон" - -#~ msgid "Change colors" -#~ msgstr "Змінити кольори" - -#~ msgid "Content" -#~ msgstr "ЗміÑÑ‚" - -#~ msgid "Sidebar" -#~ msgstr "Сайдбар" - -#~ msgid "Text" -#~ msgstr "ТекÑÑ‚" - -#~ msgid "Links" -#~ msgstr "ПоÑиланнÑ" - -#~ msgid "Advanced" -#~ msgstr "Додатково" - -#~ msgid "Custom CSS" -#~ msgstr "Свій CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "За замовч." - -#~ msgid "Restore default designs." -#~ msgstr "Відновити Ñтандартні уÑтановки." - -#~ msgid "Reset back to default." -#~ msgstr "ПовернутиÑÑŒ до Ñтандартних налаштувань." - -#~ msgid "Save design." -#~ msgstr "Зберегти дизайн." - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "" -#~ "Ви маєте Ñпочатку увійти, аби мати змогу відредагувати влаÑтивоÑті " -#~ "Ñпільноти." - -#~ msgid "Group design" -#~ msgstr "Дизайн Ñпільноти" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Ðалаштуйте виглÑд Ñторінки Ñпільноти, викориÑтовуючи фонове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– " -#~ "кольори на Ñвій Ñмак." - -#~ msgid "Unable to update your design settings." -#~ msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - -#~ msgid "Design preferences saved." -#~ msgstr "Преференції дизайну збережно." - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "" -#~ "Ðе надÑилайте повідомлень Ñамому Ñобі; краще поговоріть із Ñобою вголоÑ." - -#~ msgid "Backgrounds" -#~ msgstr "Фони" - -#~ msgid "Server for backgrounds." -#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень." - -#~ msgid "Web path to backgrounds." -#~ msgstr "ШлÑÑ… до фонових зображень." - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "Сервер Ð´Ð»Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ… зображень на захищених SSL-Ñторінках." - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "ШлÑÑ… до фонових зображень на захищених SSL-Ñторінках." - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "ДиректоріÑ, в Ñкій знаходÑтьÑÑ Ñ„Ð¾Ð½Ð¾Ð²Ñ– зображеннÑ." - -#~ msgid "Profile design" -#~ msgstr "Дизайн профілю" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "" -#~ "Ðалаштуйте виглÑд Ñторінки Ñвого профілю, викориÑтовуючи фонове " -#~ "Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– кольори на Ñвій Ñмак." - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "ПолаÑуйте бутербродом!" - -#~ msgid "Design settings" -#~ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" - -#~ msgid "View profile designs" -#~ msgstr "ПереглÑдати дизайн кориÑтувачів" - -#~ msgid "Show or hide profile designs." -#~ msgstr "Показувати або приховувати дизайни Ñторінок окремих кориÑтувачів." - -#~ msgid "Background file" -#~ msgstr "Файл фону" - -#~ msgid "Unable to delete design setting." -#~ msgstr "Ðемає можливоÑті видалити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." - -#~ msgid "Design configuration" -#~ msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "Дизайн" - -#~ msgid "Change design" -#~ msgstr "Змінити дизайн" - -#~ msgid "Change colours" -#~ msgstr "Змінити кольори" - -#~ msgid "Use defaults" -#~ msgstr "За замовч." - -#~ msgid "Upload file" -#~ msgstr "Завантажити файл" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "" -#~ "Ви можете завантажити влаÑне фонове зображеннÑ. МакÑимальний розмір файлу " -#~ "Ñтановить 2Мб." - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "Увімк." - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "Вимк." - -#~ msgid "Design defaults restored." -#~ msgstr "Дизайн за замовчуваннÑм відновлено." - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "Додати або редагувати дизайн %s" - -#~ msgid "Design your profile" -#~ msgstr "Дизайн вашого профілю" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 4a04463502..884af14d38 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -17,18 +17,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-06-18 15:53:57+0000\n" +"X-POT-Import-Date: 2011-06-18 16:18:45+0000\n" #. TRANS: Database error message. #, php-format @@ -297,7 +297,7 @@ msgstr "" "ä½ å¯ä»¥è¯•ç€åˆ°ä»–们的资料页 [呼å«%1$s](../%2$s) 他们或者 [ç»™ä»–ä»¬å‘æ¶ˆæ¯](%%%%" "action.newnotice%%%%?status_textarea=%3$s)。" -#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users. +#. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. #. TRANS: Empty list message for page with replies for a user for not logged in users. #. TRANS: %1$s is a user nickname. This message contains a Markdown link in the form [link text](link). @@ -2057,7 +2057,7 @@ msgid "" "subscriptions to it. Do you still want to continue?" msgstr "æŠŠä¸€ä¸ªå…¬å¼€æ ‡ç­¾è®¾ç½®ä¸ºç§æœ‰ï¼Œå°†ä¼šæ°¸ä¹…移除所有该标签的订阅。ä»è¦ç»§ç»­å—?" -#. TRANS: TRANS: Server error displayed when updating a list fails. +#. TRANS: Server error displayed when updating a list fails. msgid "Could not update list." msgstr "无法更新åå•。" @@ -3070,6 +3070,7 @@ msgstr "Source URL 必填。" msgid "Could not create application." msgstr "无法创建应用。" +#. TRANS: Form validation error messages displayed when uploading an invalid application logo. msgid "Invalid image." msgstr "无效的图åƒã€‚" @@ -5348,7 +5349,6 @@ msgid "How long users must wait (in seconds) to post the same thing again." msgstr "ç”¨æˆ·å†æ¬¡å‘布相åŒå†…容时需è¦ç­‰å¾…的时间(秒)。" #. TRANS: Fieldset legend for form to change logo. -#, fuzzy msgid "Logo" msgstr "Logo" @@ -8481,7 +8481,7 @@ msgstr "å‘é€ä¸€æ¡ç§ä¿¡" msgid "Select recipient:" msgstr "选择收件人:" -#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. +#. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. msgid "No mutual subscribers." msgstr "没有共åŒçš„关注者。" @@ -8934,8 +8934,10 @@ msgctxt "plugin" msgid "Enable" msgstr "" +#. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" -msgid "(Plugin descriptions unavailable when disabled.)" +msgid "" +"(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" #. TRANS: Menu item in primary navigation panel. @@ -9669,200 +9671,3 @@ msgstr "䏿˜¯æœ‰æ•ˆçš„电å­é‚®ä»¶ã€‚" #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "无法ä¿å­˜ä¸ªäººä¿¡æ¯ã€‚" - -#~ msgid "Unable to save your design settings." -#~ msgstr "无法ä¿å­˜ä½ çš„外观设置。" - -#~ msgid "Could not update your design." -#~ msgstr "无法更新你的外观。" - -#~ msgid "Design" -#~ msgstr "外观" - -#~ msgid "Design settings for this StatusNet site" -#~ msgstr "这个 StatusNet 网站的外观设置" - -#~ msgid "Theme not available: %s." -#~ msgstr "主题ä¸å¯ç”¨ï¼š%s。" - -#~ msgid "Change logo" -#~ msgstr "æ›´æ¢ logo" - -#~ msgid "Change theme" -#~ msgstr "æ›´æ¢ä¸»é¢˜" - -#~ msgid "Site theme" -#~ msgstr "网站主题" - -#~ msgid "Theme for the site." -#~ msgstr "这个网站的主题。" - -#~ msgid "Custom theme" -#~ msgstr "自定义主题" - -#~ msgid "You can upload a custom StatusNet theme as a .ZIP archive." -#~ msgstr "ä½ å¯ä»¥ä¸Šä¼ ä¸€ä¸ª .ZIP 压缩文件作为一个自定义的 StatusNet 主题" - -#~ msgid "Change background image" -#~ msgstr "æ›´æ¢èƒŒæ™¯å›¾åƒ" - -#~ msgid "Background" -#~ msgstr "背景" - -#~ msgid "" -#~ "You can upload a background image for the site. The maximum file size is %" -#~ "1$s." -#~ msgstr "ä½ å¯ä»¥ä¸ºç½‘站上传一个背景图åƒã€‚文件大å°é™åˆ¶åœ¨%1$s以下。" - -#~ msgid "On" -#~ msgstr "打开" - -#~ msgid "Off" -#~ msgstr "关闭" - -#~ msgid "Turn background image on or off." -#~ msgstr "打开或关闭背景图片" - -#~ msgid "Tile background image" -#~ msgstr "平铺背景图片" - -#~ msgid "Change colors" -#~ msgstr "更改颜色" - -#~ msgid "Content" -#~ msgstr "内容" - -#~ msgid "Sidebar" -#~ msgstr "è¾¹æ " - -#~ msgid "Text" -#~ msgstr "文字" - -#~ msgid "Links" -#~ msgstr "链接" - -#~ msgid "Advanced" -#~ msgstr "高级" - -#~ msgid "Custom CSS" -#~ msgstr "自定义CSS" - -#~ msgctxt "BUTTON" -#~ msgid "Use defaults" -#~ msgstr "使用默认值" - -#~ msgid "Restore default designs." -#~ msgstr "还原默认设计。" - -#~ msgid "Reset back to default." -#~ msgstr "é‡ç½®å›žé»˜è®¤å€¼ã€‚" - -#~ msgid "Save design." -#~ msgstr "ä¿å­˜è®¾è®¡ã€‚" - -#~ msgid "You must be logged in to edit a group." -#~ msgstr "你必须登录æ‰èƒ½åˆ›å»ºå°ç»„。" - -#~ msgid "Group design" -#~ msgstr "å°ç»„页é¢å¤–观。" - -#~ msgid "" -#~ "Customize the way your group looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "é€šè¿‡èƒŒæ™¯å›¾ç‰‡å’Œé¢œè‰²æ¿æ¥è‡ªå®šä¹‰ä½ çš„å°ç»„的外观。" - -#~ msgid "Unable to update your design settings." -#~ msgstr "无法更新你的外观设置。" - -#~ msgid "Design preferences saved." -#~ msgstr "外观å好已ä¿å­˜ã€‚" - -#~ msgid "" -#~ "Don't send a message to yourself; just say it to yourself quietly instead." -#~ msgstr "ä¸è¦å‘自己å‘逿¶ˆæ¯ï¼›è·Ÿè‡ªå·±æ‚„悄说就得了。" - -#~ msgid "Backgrounds" -#~ msgstr "背景" - -#~ msgid "Server for backgrounds." -#~ msgstr "背景æœåŠ¡å™¨ã€‚" - -#~ msgid "Web path to backgrounds." -#~ msgstr "背景的网站路径。" - -#~ msgid "Server for backgrounds on SSL pages." -#~ msgstr "SSL 页é¢çš„背景æœåŠ¡å™¨ã€‚" - -#~ msgid "Web path to backgrounds on SSL pages." -#~ msgstr "SSL 页é¢çš„背景网站路径。" - -#~ msgid "Directory where backgrounds are located." -#~ msgstr "背景文件的目录。" - -#~ msgid "Profile design" -#~ msgstr "个人页é¢å¤–è§‚" - -#~ msgid "" -#~ "Customize the way your profile looks with a background image and a colour " -#~ "palette of your choice." -#~ msgstr "通过背景图片和调色æ¿è‡ªå®šä¹‰ä½ çš„页é¢å¤–观。" - -#~ msgid "Enjoy your hotdog!" -#~ msgstr "享å—ä½ çš„æˆæžœå§ï¼" - -#~ msgid "Design settings" -#~ msgstr "外观设置" - -#~ msgid "View profile designs" -#~ msgstr "查看个人页é¢å¤–è§‚" - -#~ msgid "Show or hide profile designs." -#~ msgstr "显示或éšè—个人页é¢å¤–观。" - -#~ msgid "Background file" -#~ msgstr "背景文件" - -#~ msgid "Unable to delete design setting." -#~ msgstr "无法删除外观设置。" - -#~ msgid "Design configuration" -#~ msgstr "外观é…ç½®" - -#~ msgctxt "MENU" -#~ msgid "Design" -#~ msgstr "外观" - -#~ msgid "Change design" -#~ msgstr "修改外观" - -#~ msgid "Change colours" -#~ msgstr "改å˜é¢œè‰²" - -#~ msgid "Use defaults" -#~ msgstr "使用默认值" - -#~ msgid "Upload file" -#~ msgstr "上传文件" - -#~ msgid "" -#~ "You can upload your personal background image. The maximum file size is " -#~ "2MB." -#~ msgstr "ä½ å¯ä»¥ä¸Šä¼ ä½ çš„个人页é¢èƒŒæ™¯ã€‚文件最大 2MB。" - -#~ msgctxt "RADIO" -#~ msgid "On" -#~ msgstr "打开" - -#~ msgctxt "RADIO" -#~ msgid "Off" -#~ msgstr "关闭" - -#~ msgid "Design defaults restored." -#~ msgstr "默认外观已æ¢å¤ã€‚" - -#~ msgctxt "TOOLTIP" -#~ msgid "Add or edit %s design" -#~ msgstr "添加或编辑 %s 外观" - -#~ msgid "Design your profile" -#~ msgstr "设计你的个人页é¢å¤–è§‚" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index ab6b6657ff..892000aaae 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -191,9 +191,3 @@ msgstr "Willkommen bei %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "E-Mail nur für die Registrierung benutzen." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Konnte neuen Begrüßungszähler für %d nicht speichern." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Konnte Begrüßungszähler für %d nicht erhöhen." diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index eeef90ae06..612a9150c5 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-05 09:13+0000\n" -"PO-Revision-Date: 2011-06-05 09:14:17+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-05-05 21:44:44+0000\n" -"X-Generator: MediaWiki 1.19alpha (r89487); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -174,15 +174,3 @@ msgstr "" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not save new greeting count for %d." -msgstr "" - -#. TRANS: Exception thrown when the user greeting count could not be saved in the database. -#. TRANS: %d is a user ID (number). -#, php-format -msgid "Could not increment greeting count for %d." -msgstr "" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 0901dc01f2..cbee92e70a 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -190,9 +190,3 @@ msgstr "Benvenite a %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "Usar e-mail solmente pro creation de conto." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Non poteva salveguardar le numero de salutationes pro %d." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Non poteva incrementar le numero de salutationes pro %d." diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 9774803d44..2b83f3e437 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -187,9 +187,3 @@ msgstr "Добредојдовте на %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "КориÑти ја е-поштата Ñамо за региÑтрација." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Ðе можев да го зачувам бројот на нови поздрави за %d." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Ðе можев да го дополнам бројот на поздрави за %d." diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index 1aa380e09d..6c7bf15f24 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -188,9 +188,3 @@ msgstr "Welkom bij %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "Alleen registeren per e-mail gebruiken." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Het was niet mogelijk het aantal begroetingen op te slaan voor %d." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Het was niet mogelijk het aantal begroetingen op te hogen voor %d." diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index c3b4ee2d61..92d3e1c3a8 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -190,9 +190,3 @@ msgstr "Maligayang pagdating sa %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "Gamitin lamang ang e-liham para sa pagpapatala." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Hindi masagip ang bagong bilang ng pagbati para sa %d." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Hindi masudlungan ang bilang ng pagbati para sa %d." diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index 2413ecd336..33f6a8bbe3 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:55:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -189,9 +189,3 @@ msgstr "ЛаÑкаво проÑимо до %s" #. TRANS: Plugin description. msgid "Use email only for registration." msgstr "ВикориÑÑ‚Ð°Ð½Ð½Ñ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ñ— пошти тільки Ð´Ð»Ñ Ñ€ÐµÑ”Ñтрації." - -#~ msgid "Could not save new greeting count for %d." -#~ msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ новий лічильник привітань Ð´Ð»Ñ %d." - -#~ msgid "Could not increment greeting count for %d." -#~ msgstr "Ðе вдалоÑÑ Ð¿ÐµÑ€ÐµÑ€Ð°Ñ…ÑƒÐ²Ð°Ñ‚Ð¸ лічильник привітань Ð´Ð»Ñ %d." diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index e93cd41b62..48040bdb54 100644 --- a/plugins/EmailReminder/locale/EmailReminder.pot +++ b/plugins/EmailReminder/locale/EmailReminder.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,22 +16,39 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: EmailReminderPlugin.php:204 +#. TRANS: Plugin description. +#: EmailReminderPlugin.php:205 msgid "Send email reminders for various things." msgstr "" +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. #: classes/Email_reminder.php:100 msgid "Database error inserting reminder record." msgstr "" -#: lib/userconfirmregreminderhandler.php:84 +#. TRANS: Subject for reminder e-mail. +#: lib/userconfirmregreminderhandler.php:85 msgid "Reminder - please confirm your registration!" msgstr "" -#: lib/userconfirmregreminderhandler.php:97 +#. TRANS: Subject for reminder e-mail. +#: lib/userconfirmregreminderhandler.php:99 msgid "Second reminder - please confirm your registration!" msgstr "" -#: lib/userconfirmregreminderhandler.php:111 +#. TRANS: Subject for reminder e-mail. +#: lib/userconfirmregreminderhandler.php:114 msgid "Final reminder - please confirm your registration!" msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#: lib/userinvitereminderhandler.php:84 +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#: lib/userinvitereminderhandler.php:98 +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..1c283adb00 --- /dev/null +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,52 @@ +# Translation of StatusNet - EmailReminder to Macedonian (МакедонÑки) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailReminder\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:22+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:03:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-emailreminder\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "ИÑпраќај потÑетници за разни нешта по е-пошта." + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "Грешка во базата при вметнувањето на евиденцијата за потÑетување." + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "ПотÑетување - потврдете ја Вашата региÑтрација!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "ПоÑледно потÑетување - потврдете ја Вашата региÑтрација!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "ПоÑледно потÑетување - потврдете ја Вашата региÑтрација!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..a36616f0ad --- /dev/null +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - EmailReminder to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailReminder\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:07:22+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:03:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-emailreminder\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "E-mailherinnering verzenden voor verschillende dingen." + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "" +"Er is een databasefout opgetreden tijdens het invoegen van een " +"herinneringsrecord." + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Herinnering - bevestig uw registratie!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Tweede herinnering - bevestig uw registratie!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Laatste herinnering - bevestig uw registratie!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 00e1fb5efd..efe4176390 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:02+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -792,12 +792,13 @@ msgstr "Ongeldige avatar-URL %s." #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" -"Geprobeerd om een avatar bij te werken voor het niet opgeslagen profiel %s." +"Er is geprobeerd om een avatar bij te werken voor het niet opgeslagen " +"externe profiel %s." #. TRANS: Server exception. %s is a URL. #, php-format msgid "Unable to fetch avatar from %s." -msgstr "Het was niet mogelijk de avatar op te halen van %s." +msgstr "Het was niet mogelijk om de avatar op te halen van %s." #. TRANS: Server exception. msgid "No author ID URI found." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index b1511b5bf9..7123d6c55b 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:56:46+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -54,7 +54,7 @@ msgstr "Откажи" #. TRANS: Client exception thrown when an action is not available. msgid "Unavailable action." -msgstr "" +msgstr "ДејÑтвото е недоÑтапно." #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" @@ -108,6 +108,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" "action.openidsettings%%)!" msgstr "" +"(Имате [OpenID](http://openid.net/)? [Додајте Ñ OpenID на Ñметката](%%action." +"openidsettings%%)!" #. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -116,6 +118,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" "action.openidlogin%%)!)" msgstr "" +"(Имате [OpenID](http://openid.net/)? Ви предлагаме да Ñе [региÑтрирате Ñо " +"OpenID](%%action.openidlogin%%)!)" #. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -124,6 +128,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" +"(Имате [OpenID](http://openid.net/)? Ви предлагаме да Ñе [најавите Ñо OpenID]" +"(%%action.openidlogin%%)!)" #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 7b4a96da7b..19934d8818 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:56:47+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:08:29+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \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: 2011-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:19:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -58,7 +58,7 @@ msgstr "Annuleren" #. TRANS: Client exception thrown when an action is not available. msgid "Unavailable action." -msgstr "" +msgstr "Handeling niet beschikbaar." #. TRANS: Tooltip for main menu option "Login" msgctxt "TOOLTIP" @@ -112,6 +112,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" "action.openidsettings%%)!" msgstr "" +"(Hebt u een [OpenID](http://openid.net/)? [Voeg een OpenID toe aan uw " +"gebruiker](%%action.openidsettings%%)!" #. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -120,6 +122,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" "action.openidlogin%%)!)" msgstr "" +"(Hebt u een [OpenID](http://openid.net/)? Gebruik onze [OpenID-registratie](%" +"%action.openidlogin%%)!)" #. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -128,6 +132,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" +"(Hebt u een[OpenID](http://openid.net/)? [Meld u aan via OpenID](%%action." +"openidlogin%%)!)" #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 1dbbe85d4f..f5bab27912 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "Мора да наведете serviceUrl." #. TRANS: Plugin description. #, php-format diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 47587adcec..0d34d40f4f 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:33+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:34+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "U moet een serviceUrl opgeven." #. TRANS: Plugin description. #, php-format diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po new file mode 100644 index 0000000000..8b122cb75f --- /dev/null +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Spotify to Macedonian (МакедонÑки) +# Exported from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Spotify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:20+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:03:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-spotify\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Plugin description. +msgid "Create pretty Spotify URLs." +msgstr "" +"Правете интереÑни и убави URL-адреÑи Ñо Spotify." diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po new file mode 100644 index 0000000000..ce0a311541 --- /dev/null +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Spotify to Dutch (Nederlands) +# Exported from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Spotify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:20+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:03:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-spotify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Create pretty Spotify URLs." +msgstr "Maak mooie Spotify-URL's." diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 6e59ebcbbf..c88f4b3cf8 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -170,6 +170,3 @@ msgstr "RSS- oder Atomfeed" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Wähle einen Feedprovider aus" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Bearbeitung eines fehlenden Spiegels angefordert." diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 463a67aae0..b6aeb3f036 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:41+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -173,6 +173,3 @@ msgstr "Flux RSS ou Atom" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Sélectionner un fournisseur de flux" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Miroir inexistant demandé à modifier." diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index c95f87f1f3..94a47965be 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -168,6 +168,3 @@ msgstr "Syndication RSS o Atom" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Selige un fornitor de syndicationes" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Requestava le modification de un speculo mancante." diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 4a3cdd2cd3..aa2b75177b 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -62,11 +62,11 @@ msgstr "ÐеиÑправни податоци за образецот." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. msgid "The mirror request failed, because no result was retrieved." -msgstr "" +msgstr "Барањето за отÑликување не уÑпеа бидејќи не добив никаков резултат." #. TRANS: Exception thrown when a feed provider could not be recognised. msgid "Internal form error: Unrecognized feed provider." -msgstr "" +msgstr "Грешка во внатрешниот образец: Ðепрепознаен извор за каналот." #. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." @@ -134,25 +134,22 @@ msgid "Mirroring style" msgstr "Стил на отÑликување" #. TRANS: Feed mirror style (radio button option). -#, fuzzy msgid "" "Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" "Повторување: наведете ја објавата на изворниот кориÑник (понекогаш Ñе " -"прикажува како „RT @blah“)" +"прикажува како „RT @бла“)" #. TRANS: Feed mirror style (radio button option). msgid "Repost the content under my account" msgstr "Објави ја Ñодржината под мојата Ñметка" #. TRANS: Button text to save feed mirror settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" #. TRANS: Button text to stop mirroring a feed. -#, fuzzy msgctxt "BUTTON" msgid "Stop mirroring" msgstr "ПреÑтани Ñо отÑликување" @@ -168,6 +165,3 @@ msgstr "RSS или Atom канал" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Одберете емитувач" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Побаравте уредување на отÑликување што недоÑтаÑува." diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index 32f1378f3d..7c0dbf476b 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -64,11 +64,11 @@ msgstr "Onjuiste formuliergegevens." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. msgid "The mirror request failed, because no result was retrieved." -msgstr "" +msgstr "Het kopieerverzoek is mislukt omdat er geen resultaat is ontvangen." #. TRANS: Exception thrown when a feed provider could not be recognised. msgid "Internal form error: Unrecognized feed provider." -msgstr "" +msgstr "Interne formulierfout: onbekende feedprovider." #. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." @@ -136,7 +136,6 @@ msgid "Mirroring style" msgstr "Spiegelstijl" #. TRANS: Feed mirror style (radio button option). -#, fuzzy msgid "" "Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" @@ -148,13 +147,11 @@ msgid "Repost the content under my account" msgstr "De inhoud herhalen alsof die van mij komt" #. TRANS: Button text to save feed mirror settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" #. TRANS: Button text to stop mirroring a feed. -#, fuzzy msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Spiegelen beëindigen" @@ -170,6 +167,3 @@ msgstr "RSS- of Atom-feed" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Selecteer een feedprovider" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Er is een missende spiegel opgevraagd om te bewerken." diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index 4316d27f57..bb61c89f14 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -168,6 +168,3 @@ msgstr "RSS o pasubong Atom" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Pumili ng isang tagapagbigay ng pasubo" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Hiniling na pagpatnugot ng nawawalang salamin." diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 7a3f5fe13e..e1d1555ccc 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:42+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:20:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -169,6 +169,3 @@ msgstr "Стрічка у форматі RSS або Atom" #. TRANS: Heading for feed mirroring selection form. msgid "Select a feed provider" msgstr "Виберіть канал поÑтачальника" - -#~ msgid "Requested edit of missing mirror." -#~ msgstr "Запитано Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð½Ð¸ÐºÐ»Ð¾Ð³Ð¾ дзеркала." diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index 213e4dbbb0..6236cb6789 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,14 +16,17 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: SubscriptionThrottlePlugin.php:74 +#. TRANS: Exception thrown when subscribing too quickly. +#: SubscriptionThrottlePlugin.php:73 msgid "Too many subscriptions. Take a break and try again later." msgstr "" -#: SubscriptionThrottlePlugin.php:100 +#. TRANS: Exception thrown when joing groups too quickly. +#: SubscriptionThrottlePlugin.php:99 msgid "Too many memberships. Take a break and try again later." msgstr "" -#: SubscriptionThrottlePlugin.php:171 +#. TRANS: Plugin description. +#: SubscriptionThrottlePlugin.php:168 msgid "Configurable limits for subscriptions and group memberships." msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po index c8bf47bdcf..4cad8a57c1 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Massa subscripcions. Prengueu alè i torneu-ho a provar més endavant." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Masses pertinències. Prengueu alè i torneu-ho a provar més endavant." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index cc566c5436..e4c9b6e198 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,26 +10,29 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "" "Zu viele Abonnements. Mach eine Pause und versuche es später noch einmal." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "" "Zu viele Mitgliedschaften. Mach eine Pause und versuche es später noch " "einmal." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "Konfigurierbare Limits für Abonnements und Gruppenmitgliedschaften." diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index 7874a66bc1..461e7d762d 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,27 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "" "Inscriptions trop nombreuses. Faites une pause et essayez à nouveau plus " "tard." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "" "Inscriptions trop nombreuses. Faites une pause et essayez à nouveau plus " "tard." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurables pour les abonnements et adhésions aux groupes." diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index d45984871b..6aa9178a8a 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Troppo de subscriptiones. Face un pausa e reproba plus tarde." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Troppo de membratos. Face un pausa e reproba plus tarde." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "Limites configurabile pro subscriptiones e membrato de gruppos." diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index f415452838..001397ca84 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Премногу претплати. Ðаправете пауза и обидете Ñе подоцна." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Премногу членÑтва. Ðаправете пауза и обидете Ñе подоцна." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "Прилагодливи ограничувања за претплата и членÑтва во групи." diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index a0fd958493..5084798aed 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Terlalu banyak langganan. Berehat seketika dan cuba lagi nanti." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Terlalu banyak keahlian. Berehat seketika dan cuba lagi nanti." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index 23ebd391f2..d4fe72388d 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,23 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Te veel abonnementen. Wacht even en probeer het later opnieuw." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Te veel lidmaatschappen. Wacht even en probeer het later opnieuw." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "In te stellen limieten voor abonnementen en groepslidmaatschappen." diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 955aee596b..96e054d598 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Napakaraming mga pagpapasipi. Magpahinga muna at subukan uli mamaya." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "Napakaraming mga kasapian. Magpahinga muna at subukan uli mamaya." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "" "Maisasaayos na mga hangganan para sa mga pagtatanggap at mga kasapian sa " diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 611a107f5b..785ecc7ec5 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,27 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\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" +#. TRANS: Exception thrown when subscribing too quickly. msgid "Too many subscriptions. Take a break and try again later." msgstr "Забагато підпиÑок. Випийте поки що кави Ñ– повертайтеÑÑŒ пізніше." +#. TRANS: Exception thrown when joing groups too quickly. msgid "Too many memberships. Take a break and try again later." msgstr "" "Забагато запитів щодо Ð¿Ñ€Ð¸Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð´Ð¾ Ñпільноти. Випийте поки що кави Ñ– " "повертайтеÑÑŒ пізніше." +#. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." msgstr "" "З допомогою цього додатку можна обмежувати кількіÑть можливих підпиÑок Ð´Ð»Ñ " diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 9ecfa47796..091da992cf 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: TabFocusPlugin.php:54 +#. TRANS: Plugin description. +#: TabFocusPlugin.php:55 msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 36995d906d..dff5387bd1 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index 163aa55f8c..c3ef78e59b 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 2ee0388fb0..699da82670 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index ea0c41b545..a1d9b58a5e 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 4e68d40663..5728ff1664 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:43+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index fa38c18355..b53ba3a089 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index cf9d645bac..fe25f3a037 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 54a97b5398..7da320c65e 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index c929778b97..e4c388e455 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index 80e908f885..0e382ba72e 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index a250829087..f884c24752 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,18 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index fb0c39741a..e80d7eba6f 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index 939cf341d7..5ec263934a 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\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" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index c33d392e2d..925015c840 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,18 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 762327eb1b..7e3d0db6b1 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:44+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\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" +#. TRANS: Plugin description. msgid "" "TabFocus changes the notice form behavior so that, while in the text area, " "pressing the tab key focuses the \"Send\" button, matching the behavior of " diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 38ab1defdb..7985db6155 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -31,9 +31,8 @@ msgid "Unsubscribe" msgstr "Откажи претплата" #. TRANS: Submit button title to unsubscribe from a tag. -#, fuzzy msgid "Unsubscribe from this tag." -msgstr "Отпиши Ñе од ознакава" +msgstr "!Отпиши Ñе од ознакава." #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -62,9 +61,8 @@ msgid "Subscribe" msgstr "Претплати Ñе" #. TRANS: Submit button title to subscribe to a tag. -#, fuzzy msgid "Subscribe to this tag." -msgstr "Претплати Ñе на ознакава" +msgstr "Претплати Ñе на ознакава." #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -138,12 +136,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not following any tags." -msgstr "%s не Ñлуша никакви ознаки." +msgstr "%s не Ñледи никакви ознаки." #. TRANS: %1$s is a URL to a tag, %2$s is a tag, #. TRANS: %3$s a date string. -#, fuzzy, php-format +#, php-format msgid "#%2$s since %3$s" -msgstr "#%s од %s" +msgstr "#%2$s од %3$s" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index ca3ccc6809..bffc195c29 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:46+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:00+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -31,9 +31,8 @@ msgid "Unsubscribe" msgstr "Uitschrijven" #. TRANS: Submit button title to unsubscribe from a tag. -#, fuzzy msgid "Unsubscribe from this tag." -msgstr "Abonnement op dit label beëindigen" +msgstr "Het abonnement op dit label beëindigen." #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -64,9 +63,8 @@ msgid "Subscribe" msgstr "Abonneren" #. TRANS: Submit button title to subscribe to a tag. -#, fuzzy msgid "Subscribe to this tag." -msgstr "Op dit label abonneren" +msgstr "Op dit label abonneren." #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -142,12 +140,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not following any tags." msgstr "%s heeft geen labelabonnementen." #. TRANS: %1$s is a URL to a tag, %2$s is a tag, #. TRANS: %3$s a date string. -#, fuzzy, php-format +#, php-format msgid "#%2$s since %3$s" -msgstr "#%s sinds %s" +msgstr "#%2$s sinds %3$s" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index d7533e123c..fdead15292 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:47+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "Мора да наведете serviceUrl." #. TRANS: Plugin description. %s is the shortener name. #, php-format diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 43563cfcc1..7524412bd3 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:48+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "U moet een serviceUrl opgeven." #. TRANS: Plugin description. %s is the shortener name. #, php-format diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index c9b19c63bb..34f5cc8c9e 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,30 +21,31 @@ msgstr "" msgid "Twitter settings" msgstr "" -#: twittersettings.php:69 +#. TRANS: Instructions for page with Twitter integration settings. +#: twittersettings.php:70 msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." msgstr "" #. TRANS: Fieldset legend. -#: twittersettings.php:118 +#: twittersettings.php:119 msgid "Twitter account" msgstr "" #. TRANS: Form note when a Twitter account has been connected. -#: twittersettings.php:124 +#: twittersettings.php:125 msgid "Connected Twitter account" msgstr "" #. TRANS: Fieldset legend. -#: twittersettings.php:130 +#: twittersettings.php:131 msgid "Disconnect my account from Twitter" msgstr "" #. TRANS: Form guide. %s is a URL to the password settings. #. TRANS: This message contains a Markdown link in the form [description](link). -#: twittersettings.php:136 +#: twittersettings.php:137 #, php-format msgid "" "Disconnecting your Twitter account could make it impossible to log in! " @@ -53,7 +54,7 @@ msgstr "" #. TRANS: Form instructions. %s is a URL to the password settings. #. TRANS: %1$s is the StatusNet sitename. -#: twittersettings.php:146 +#: twittersettings.php:147 #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -61,81 +62,81 @@ msgid "" msgstr "" #. TRANS: Button text for disconnecting a Twitter account. -#: twittersettings.php:154 +#: twittersettings.php:155 msgctxt "BUTTON" msgid "Disconnect" msgstr "" #. TRANS: Fieldset legend. -#: twittersettings.php:162 +#: twittersettings.php:163 msgid "Preferences" msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:167 +#: twittersettings.php:168 msgid "Automatically send my notices to Twitter." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:175 +#: twittersettings.php:176 msgid "Send local \"@\" replies to Twitter." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:183 +#: twittersettings.php:184 msgid "Subscribe to my Twitter friends here." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:193 +#: twittersettings.php:194 msgid "Import my friends timeline." msgstr "" #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#: twittersettings.php:210 twitteradminpanel.php:311 +#: twittersettings.php:211 twitteradminpanel.php:311 msgctxt "BUTTON" msgid "Save" msgstr "" #. TRANS: Button text for adding Twitter integration. -#: twittersettings.php:213 +#: twittersettings.php:214 msgctxt "BUTTON" msgid "Add" msgstr "" #. TRANS: Client error displayed when the session token does not match or is not given. -#: twittersettings.php:238 twitterauthorization.php:121 +#: twittersettings.php:239 twitterauthorization.php:121 msgid "There was a problem with your session token. Try again, please." msgstr "" #. TRANS: Client error displayed when the submitted form contains unexpected data. -#: twittersettings.php:249 +#: twittersettings.php:250 msgid "Unexpected form submission." msgstr "" #. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. -#: twittersettings.php:265 +#: twittersettings.php:266 msgid "No Twitter connection to remove." msgstr "" #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#: twittersettings.php:274 +#: twittersettings.php:275 msgid "Could not remove Twitter user." msgstr "" #. TRANS: Success message displayed after disconnecting a Twitter account. -#: twittersettings.php:279 +#: twittersettings.php:280 msgid "Twitter account disconnected." msgstr "" #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#: twittersettings.php:301 twittersettings.php:314 +#: twittersettings.php:302 twittersettings.php:315 msgid "Could not save Twitter preferences." msgstr "" #. TRANS: Success message after saving Twitter integration preferences. -#: twittersettings.php:323 +#: twittersettings.php:324 msgid "Twitter preferences saved." msgstr "" @@ -439,16 +440,18 @@ msgstr "" msgid "Twitter integration options" msgstr "" -#: TwitterBridgePlugin.php:306 +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. +#: TwitterBridgePlugin.php:307 msgid "Twitter" msgstr "" -#: TwitterBridgePlugin.php:307 -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#: TwitterBridgePlugin.php:309 +msgid "Twitter bridge configuration page." msgstr "" #. TRANS: Plugin description. -#: TwitterBridgePlugin.php:331 +#: TwitterBridgePlugin.php:333 msgid "" "The Twitter \"bridge\" plugin allows integration of a StatusNet instance " "with Twitter." diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index fc277419e4..d0a8eee326 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Paràmetres del Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -407,10 +408,13 @@ msgstr "Inicieu una sessió o registreu-vos fent servir el Twitter" msgid "Twitter integration options" msgstr "Opcions d'integració del Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Configuració del pont del Twitter" #. TRANS: Plugin description. @@ -477,15 +481,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "Definiu una contrasenya" - -#~ msgid " first." -#~ msgstr " primer." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "No s'ha pogut enllaçar amb el compte del Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Desa els paràmetres del Twitter" diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 7a4fcede89..57dac5d9d8 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -28,6 +28,7 @@ msgstr "" msgid "Twitter settings" msgstr "Twittereinstellungen" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -410,10 +411,13 @@ msgstr "Anmeldung oder Registrierung, um Twitter zu benutzen" msgid "Twitter integration options" msgstr "Twitterintegrationsoptionen" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Konfiguration der Twitterüberbrückung" #. TRANS: Plugin description. @@ -481,15 +485,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "setze ein Passwort" - -#~ msgid " first." -#~ msgstr "bevor du das tust." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Konnte dein Twitterkonto nicht verbinden." - -#~ msgid "Save Twitter settings" -#~ msgstr "Speichere Twittereinstellungen" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 916a882b21..dac768c9ec 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -27,6 +27,7 @@ msgstr "" msgid "Twitter settings" msgstr "Paramètres Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -412,10 +413,13 @@ msgstr "Se connecter ou s’inscrire via Twitter" msgid "Twitter integration options" msgstr "Options d’intégration de Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Configuration de la passerelle Twitter" #. TRANS: Plugin description. @@ -483,15 +487,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "définissez un mot de passe" - -#~ msgid " first." -#~ msgstr " tout d’abord." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Impossible de lier votre compte Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Sauvegarder les paramètres Twitter" diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 81a722d6a7..7d6d599f68 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Configuration de Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -403,10 +404,13 @@ msgstr "Aperir session o crear conto usante Twitter" msgid "Twitter integration options" msgstr "Optiones de integration de Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Configuration del ponte a Twitter" #. TRANS: Plugin description. @@ -473,15 +477,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "defini un contrasigno" - -#~ msgid " first." -#~ msgstr " primo." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Non poteva ligar a tu conto de Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Salveguardar configurationes de Twitter" diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 4617407d68..3ff9de8c75 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "트위터 설정" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -396,10 +397,13 @@ msgstr "트위터를 사용해 ë¡œê·¸ì¸ ë˜ëŠ” 가입" msgid "Twitter integration options" msgstr "트위터 통합 옵션" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "트위터" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "트위터 브릿지 설정" #. TRANS: Plugin description. @@ -465,15 +469,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "비밀 번호를 설정하십시오" - -#~ msgid " first." -#~ msgstr "." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "트위터 ê³„ì •ì„ ì—°ê²°í•  수 없습니다." - -#~ msgid "Save Twitter settings" -#~ msgstr "트위터 설정 저장" diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index d350f6bc21..a0f0558fec 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:55+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Ðагодувања за Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -46,13 +47,13 @@ msgstr "Прекини ја врÑката Ñо Ñметката на Twitter" #. TRANS: Form guide. %s is a URL to the password settings. #. TRANS: This message contains a Markdown link in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Disconnecting your Twitter account could make it impossible to log in! " "Please [set a password](%s) first." msgstr "" "Ðко ја прекинете врÑката Ñо Ñметката на Twitter, нема да можете да Ñе " -"најавите! Затоа " +"најавувате! Ðајпрвин [Ñтавете лозинка](%s)." #. TRANS: Form instructions. %s is a URL to the password settings. #. TRANS: %1$s is the StatusNet sitename. @@ -65,10 +66,9 @@ msgstr "" "најава, кориÑтете ја Вашата лозинка на %1$s." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" -msgstr "Прекини" +msgstr "Прекрати" #. TRANS: Fieldset legend. msgid "Preferences" @@ -92,13 +92,11 @@ msgstr "Увези ја хронологијата на моите пријат #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Додај" @@ -116,16 +114,14 @@ msgid "No Twitter connection to remove." msgstr "Ðема врÑка Ñо Twitter за отÑтранување." #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#, fuzzy msgid "Could not remove Twitter user." -msgstr "Ðе можев да го отÑтранам кориÑникот на Twitter." +msgstr "Ðе можев да го отÑтранам кориÑникот од Twitter." #. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "Ð’Ñ€Ñката Ñо Ñметката на Twitter е прекината." #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#, fuzzy msgid "Could not save Twitter preferences." msgstr "Ðе можев да ги зачувам нагодувањата за Twitter." @@ -146,14 +142,13 @@ msgid "Could not link your Twitter account." msgstr "Ðе можам да ја поврзам Вашата Ñметка на Twitter." #. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. -#, fuzzy msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Ðе можев да ја поврзам Вашата Ñметка на Twitter: неÑоглаÑување Ñо " "oauth_token." #. TRANS: Page instruction. %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Twitter account to a local account. You can either create a new account, or " @@ -161,7 +156,7 @@ msgid "" msgstr "" "Ова е прв пат како Ñе најавувате на %s, па затоа мораме да ја поврземе " "Вашата Ñметка на Twitter Ñо локална Ñметка. Можете да Ñоздадете нова Ñметка, " -"или пак да Ñе поврзете Ñо Вашата поÑтоечка Ñметка (ако ја имате)." +"или пак да Ñе поврзете Ñо поÑтоечката (ако ја имате)." #. TRANS: Page title. msgid "Twitter Account Setup" @@ -207,7 +202,6 @@ msgid "Used only for updates, announcements, and password recovery" msgstr "Се кориÑти Ñамо за подновувања, објави и повраќање на лозинка." #. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. -#, fuzzy msgctxt "BUTTON" msgid "Create" msgstr "Создај" @@ -233,7 +227,6 @@ msgid "Password" msgstr "Лозинка" #. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. -#, fuzzy msgctxt "BUTTON" msgid "Connect" msgstr "Поврзи Ñе" @@ -269,7 +262,6 @@ msgid "Invalid username or password." msgstr "Ðеважечко кориÑничко име или лозинка." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" @@ -279,12 +271,10 @@ msgid "Twitter bridge settings" msgstr "ПоÑтавки за моÑтот до Twitter" #. TRANS: Client error displayed when a consumer key is invalid because it is too long. -#, fuzzy msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ðеважечки потрошувачки клуч. Дозволени Ñе највеќе 255 знаци." #. TRANS: Client error displayed when a consumer secret is invalid because it is too long. -#, fuzzy msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ðеважечка потрошувачка тајна. Дозволени Ñе највеќе 255 знаци." @@ -297,32 +287,29 @@ msgid "Consumer key" msgstr "Потрошувачки клуч" #. TRANS: Field title for Twitter assigned consumer key. -#, fuzzy msgid "The consumer key assigned by Twitter." -msgstr "Потрошувачкиот клуч доделен од Twitter" +msgstr "Потрошувачкиот клуч доделен од Twitter." #. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Потрошувачка тајна" #. TRANS: Field title for Twitter assigned consumer secret. -#, fuzzy msgid "The consumer secret assigned by Twitter." -msgstr "Потрошувачката тајна доделена од Twitter" +msgstr "Потрошувачката тајна доделена од Twitter." #. TRANS: Form guide displayed when two required fields have already been provided. -#, fuzzy msgid "Note: A global consumer key and secret are set." -msgstr "Ðапомена: поÑтавени Ñе глобални потрошувачки клуч и тајна." +msgstr "" +"Ðапомена: ПоÑтавени Ñе е глобален потрошувачки клуч и потрошувачка тајна." #. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Извор на Ñоединување" #. TRANS: Field title for Twitter application name. -#, fuzzy msgid "The name of your Twitter application." -msgstr "Име на Вашето програмче за Twitter" +msgstr "Име на Вашето програмче за Twitter." #. TRANS: Fieldset legend for Twitter integration options. msgid "Options" @@ -333,10 +320,10 @@ msgid "Enable \"Sign-in with Twitter\"" msgstr "Овозможи „најава Ñо Twitter“" #. TRANS: Checkbox title. -#, fuzzy msgid "This allow users to login with their Twitter credentials." msgstr "" -"Им овозможува на кориÑниците да Ñе најавуваат Ñо нивните податоци од Twitter" +"Ова им овозможува на кориÑниците да Ñе најавуваат Ñо нивните податоци од " +"Twitter." #. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" @@ -351,62 +338,62 @@ msgstr "" "пријатели на Twitter. Бара рачно нагодување на демоните." #. TRANS: Button title for saving the administrative Twitter bridge settings. -#, fuzzy msgid "Save the Twitter bridge settings." -msgstr "ПоÑтавки за моÑтот до Twitter" +msgstr "Зачувај ги поÑтавките за моÑтот до Twitter." #. TRANS: Server exception thrown when an invalid URL scheme is detected. msgid "Invalid URL scheme for HTTP stream reader." -msgstr "" +msgstr "Ðеважечка URL-шема за читачот на HTTP-каналот." #. TRANS: Exception thrown when input from an inexpected socket is encountered. msgid "Got input from unexpected socket!" -msgstr "" +msgstr "Добив влезни податоци од неочекуван извор!" #. TRANS: Exception thrown when an invalid state is encountered in handleLine. #. TRANS: %s is the invalid state. #, php-format msgid "Invalid state in handleLine: %s." -msgstr "" +msgstr "Ðеважечка ÑоÑтојба во handleLine: %s." #. TRANS: Exception thrown when an invalid response line is encountered. #. TRANS: %s is the invalid line. #, php-format msgid "Invalid HTTP response line: %s." -msgstr "" +msgstr "Ðеважечки ред во одговорот Ñо HTTP: %s." #. TRANS: Exception thrown when an invalid response line part is encountered. #. TRANS: %1$s is the chunk, %2$s is the line. #, php-format msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." -msgstr "" +msgstr "Ðеважечко парче „%1$s“ од редот во одговорот Ñо HTTP: %2$s." #. TRANS: Exception thrown when an invalid response code is encountered. #. TRANS: %1$s is the response code, %2$s is the line. #, php-format msgid "Bad HTTP response code %1$s: %2$s." -msgstr "" +msgstr "Ðеправилен код %1$s на одговорот Ñо HTTP: %2$s." #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "Twitter" #. TRANS: Title for menu item in login navigation. -#, fuzzy msgid "Login or register using Twitter." -msgstr "Ðајава или региÑтрација Ñо Twitter" +msgstr "Ðајава или региÑтрација Ñо Twitter." #. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Ðагодувања за обединување Ñо Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Ðагодувања за моÑтот до Twitter" #. TRANS: Plugin description. @@ -422,7 +409,6 @@ msgid "Already logged in." msgstr "Веќе Ñте најавени." #. TRANS: Title for login using Twitter page. -#, fuzzy msgctxt "TITLE" msgid "Twitter Login" msgstr "Ðајава Ñо Twitter" @@ -473,15 +459,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "Ñтавете лозинка" - -#~ msgid " first." -#~ msgstr "пред да продолжите." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Ðе можам да ја поврзам Вашата Ñметка на Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Зачувај нагодувања на Twitter" diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 04f24e917d..c4e643d7ef 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Tetapan Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -390,10 +391,13 @@ msgstr "Log masuk atau berdaftar dengan menggunakan Twitter" msgid "Twitter integration options" msgstr "Opsyen penyepaduan Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Tatarajah pengantara Twitter" #. TRANS: Plugin description. @@ -449,12 +453,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "tetapkan kata laluan" - -#~ msgid " first." -#~ msgstr " terlebih dahulu." - -#~ msgid "Save Twitter settings" -#~ msgstr "Simpan tetapan Twitter" diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 8fa430394d..e2570b1301 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Twitterinstellingen" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -46,13 +47,13 @@ msgstr "Mijn gebruiker loskoppelen van Twitter" #. TRANS: Form guide. %s is a URL to the password settings. #. TRANS: This message contains a Markdown link in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Disconnecting your Twitter account could make it impossible to log in! " "Please [set a password](%s) first." msgstr "" -"Loskoppelen van uw Twittergebruiker zou ervoor zorgen dat u niet langer kunt " -"aanmelden. U moet eerst " +"Door uw Twittergebruiker los te koppelen, kunt u mogelijk niet meer " +"aanmelden! [Stel eerst een wachtwoord in](%s)." #. TRANS: Form instructions. %s is a URL to the password settings. #. TRANS: %1$s is the StatusNet sitename. @@ -65,7 +66,6 @@ msgstr "" "wachtwoord van %1$s gebruiken om aan te melden." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" msgstr "Loskoppelen" @@ -92,13 +92,11 @@ msgstr "Tijdlijn van mijn vrienden importeren." #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Toevoegen" @@ -118,7 +116,6 @@ msgid "No Twitter connection to remove." msgstr "Er is geen Twitterkoppeling om te verwijderen." #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#, fuzzy msgid "Could not remove Twitter user." msgstr "Het was niet mogelijk de Twittergebruiker te verwijderen." @@ -127,7 +124,6 @@ msgid "Twitter account disconnected." msgstr "De Twittergebruiker is ontkoppeld." #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#, fuzzy msgid "Could not save Twitter preferences." msgstr "Het was niet mogelijk de Twittervoorkeuren op te slaan." @@ -148,14 +144,13 @@ msgid "Could not link your Twitter account." msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." #. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. -#, fuzzy msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Het was niet mogelijk uw Twittergebruiker te koppelen: het oauth_token kwam " "niet overeen." #. TRANS: Page instruction. %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Twitter account to a local account. You can either create a new account, or " @@ -209,7 +204,6 @@ msgid "Used only for updates, announcements, and password recovery" msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel." #. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. -#, fuzzy msgctxt "BUTTON" msgid "Create" msgstr "Aanmaken" @@ -235,7 +229,6 @@ msgid "Password" msgstr "Wachtwoord" #. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. -#, fuzzy msgctxt "BUTTON" msgid "Connect" msgstr "Koppelen" @@ -272,7 +265,6 @@ msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" @@ -282,12 +274,10 @@ msgid "Twitter bridge settings" msgstr "Instellingen Twitterkoppeling" #. TRANS: Client error displayed when a consumer key is invalid because it is too long. -#, fuzzy msgid "Invalid consumer key. Maximum length is 255 characters." msgstr "Ongeldige gebruikerssleutel. De maximale lengte is 255 tekens." #. TRANS: Client error displayed when a consumer secret is invalid because it is too long. -#, fuzzy msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "Ongeldig gebruikersgeheim. De maximale lengte is 255 tekens." @@ -300,21 +290,18 @@ msgid "Consumer key" msgstr "Gebruikerssleutel" #. TRANS: Field title for Twitter assigned consumer key. -#, fuzzy msgid "The consumer key assigned by Twitter." -msgstr "Gebruikerssleutel uitgegeven door Twitter" +msgstr "De gebruikerssleutel als uitgegeven door Twitter." #. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Gebruikersgeheim" #. TRANS: Field title for Twitter assigned consumer secret. -#, fuzzy msgid "The consumer secret assigned by Twitter." -msgstr "Gebruikersgeheim uitgegeven door Twitter" +msgstr "Het gebruikersgeheim als uitgegeven door Twitter." #. TRANS: Form guide displayed when two required fields have already been provided. -#, fuzzy msgid "Note: A global consumer key and secret are set." msgstr "Let op: er zijn een gebruikerssleutel en gebruikersgeheim ingesteld." @@ -323,9 +310,8 @@ msgid "Integration source" msgstr "Integratiebron" #. TRANS: Field title for Twitter application name. -#, fuzzy msgid "The name of your Twitter application." -msgstr "Naam van uw Twitterapplicatie" +msgstr "De naam van uw Twitterapplicatie." #. TRANS: Fieldset legend for Twitter integration options. msgid "Options" @@ -336,7 +322,6 @@ msgid "Enable \"Sign-in with Twitter\"" msgstr "\"Aanmelden via Twitter\" inschakelen" #. TRANS: Checkbox title. -#, fuzzy msgid "This allow users to login with their Twitter credentials." msgstr "" "Gebruikers toestaan aan te melden met hun gebruikersnaam en wachtwoord van " @@ -355,62 +340,62 @@ msgstr "" "Vereist handmatig te configureren daemons." #. TRANS: Button title for saving the administrative Twitter bridge settings. -#, fuzzy msgid "Save the Twitter bridge settings." -msgstr "Instellingen Twitterkoppeling" +msgstr "De instellingen voor de Twitterkoppeling opslaan." #. TRANS: Server exception thrown when an invalid URL scheme is detected. msgid "Invalid URL scheme for HTTP stream reader." -msgstr "" +msgstr "Ongeldig URL-schema voor de HTTP streamlezer." #. TRANS: Exception thrown when input from an inexpected socket is encountered. msgid "Got input from unexpected socket!" -msgstr "" +msgstr "Er is uitvoer ontvangen van een onverwachte socket!" #. TRANS: Exception thrown when an invalid state is encountered in handleLine. #. TRANS: %s is the invalid state. #, php-format msgid "Invalid state in handleLine: %s." -msgstr "" +msgstr "Ongeldige status in handleLIne: %s." #. TRANS: Exception thrown when an invalid response line is encountered. #. TRANS: %s is the invalid line. #, php-format msgid "Invalid HTTP response line: %s." -msgstr "" +msgstr "Ongeldige HTTP-responsregel: %s." #. TRANS: Exception thrown when an invalid response line part is encountered. #. TRANS: %1$s is the chunk, %2$s is the line. #, php-format msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." -msgstr "" +msgstr "Ongeldig HTTP-responsregeldeel \"%1$s\": %2$s." #. TRANS: Exception thrown when an invalid response code is encountered. #. TRANS: %1$s is the response code, %2$s is the line. #, php-format msgid "Bad HTTP response code %1$s: %2$s." -msgstr "" +msgstr "Ongeldige HTTP-responscode %1$s: %2$s." #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "Twitter" #. TRANS: Title for menu item in login navigation. -#, fuzzy msgid "Login or register using Twitter." -msgstr "Aanmelden of registreren via Twitter" +msgstr "Aanmelden of registreren via Twitter." #. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" msgstr "Opties voor Twitterintegratie" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Instellingen voor Twitterkoppeling" #. TRANS: Plugin description. @@ -426,7 +411,6 @@ msgid "Already logged in." msgstr "U bent al aangemeld." #. TRANS: Title for login using Twitter page. -#, fuzzy msgctxt "TITLE" msgid "Twitter Login" msgstr "Aanmelden via Twitter" @@ -479,15 +463,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "een wachtwoord instellen" - -#~ msgid " first." -#~ msgstr " voordat u verder kunt met deze handeling." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Het was niet mogelijk uw Twittergebruiker te koppelen." - -#~ msgid "Save Twitter settings" -#~ msgstr "Twitterinstellingen opslaan" diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index bdf8a7a0af..84a14383ef 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:40+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Mga katakdaan ng Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -416,10 +417,13 @@ msgstr "Lumagda o magpatala na ginagamit ang Twitter" msgid "Twitter integration options" msgstr "Mga pagpipilian ng pagsasama ng Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Pagkakaayos ng tulay ng Twitter" #. TRANS: Plugin description. @@ -488,15 +492,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "Ulitin ang pag-tweet ng @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "magtakda ng isang hudyat" - -#~ msgid " first." -#~ msgstr "muna." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Hindi maikawing ang iyong akawnt ng Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Sagipin ang mga katakdaan ng Twitter" diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index ca8c40e03f..58b30079b5 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -25,6 +25,7 @@ msgstr "" msgid "Twitter settings" msgstr "Twitter ayarları" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -395,10 +396,13 @@ msgstr "Kullanıcı kayıt hatası." msgid "Twitter integration options" msgstr "Twitter entegrasyon seçenekleri" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Twitter köprü yapılandırması" #. TRANS: Plugin description. @@ -453,12 +457,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "" - -#~ msgid "set a password" -#~ msgstr "bir parola ayarla" - -#~ msgid " first." -#~ msgstr " ilk." - -#~ msgid "Save Twitter settings" -#~ msgstr "Twitter ayarlarını kaydet" diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 4bb0a83759..d2b49f737b 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -26,6 +26,7 @@ msgstr "" msgid "Twitter settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -405,10 +406,13 @@ msgstr "Увійти або зареєÑтруватиÑÑŒ з Twitter" msgid "Twitter integration options" msgstr "Параметри інтеграції з Twitter" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ñ–Ñтка з Twitter" #. TRANS: Plugin description. @@ -476,15 +480,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "вÑтановіть пароль" - -#~ msgid " first." -#~ msgstr " Ñпочатку." - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Ðе вдаєтьÑÑ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ð¸ ваш акаунт Twitter." - -#~ msgid "Save Twitter settings" -#~ msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Twitter" diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 323d0cd371..54aa3f1968 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:56+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\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" @@ -28,6 +28,7 @@ msgstr "" msgid "Twitter settings" msgstr "Twitter 设置" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." @@ -396,10 +397,13 @@ msgstr "使用 Twitter 登录或注册" msgid "Twitter integration options" msgstr "Twitter æ•´åˆé€‰é¡¹" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "Twitter" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +#, fuzzy +msgid "Twitter bridge configuration page." msgstr "Twitter bridge 设置" #. TRANS: Plugin description. @@ -465,15 +469,3 @@ msgstr "" #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" - -#~ msgid "set a password" -#~ msgstr "设置一个密ç " - -#~ msgid " first." -#~ msgstr "先。" - -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "无法连接你的 Twitter å¸å·ã€‚" - -#~ msgid "Save Twitter settings" -#~ msgstr "ä¿å­˜ Twitter 设置" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 940188b86a..4c64e16873 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -87,7 +87,7 @@ msgstr "Означено од %s" #. TRANS: Server exception given when flags could not be cleared. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Could not clear flags for profile \"%s\"." msgstr "Ðе можев да ги отÑтранам ознаките за профилот „%s“." @@ -101,6 +101,6 @@ msgstr "ОтÑтрането" #. TRANS: Server exception. #. TRANS: %d is a profile ID (number). -#, fuzzy, php-format +#, php-format msgid "Could not flag profile \"%d\" for review." msgstr "Ðе можев да го означам профилот „%d“ за преглед." diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 96d1a2ee9a..52ca01d143 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:58+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" @@ -87,7 +87,7 @@ msgstr "Gemarkeerd door %s" #. TRANS: Server exception given when flags could not be cleared. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Could not clear flags for profile \"%s\"." msgstr "" "Het was niet mogelijk de markeringen van het profiel \"%s\" te verwijderen." @@ -102,6 +102,6 @@ msgstr "Verwijderd" #. TRANS: Server exception. #. TRANS: %d is a profile ID (number). -#, fuzzy, php-format +#, php-format msgid "Could not flag profile \"%d\" for review." msgstr "Het was niet mogelijk het profiel \"%d\" voor controle te markeren." diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index cf01fa4524..057c3d76a6 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Error message given if creating a new user is not possible because a limit has been reached. #. TRANS: %d is the user limit (also available for plural). -#, fuzzy, php-format +#, php-format msgid "" "Cannot register because the maximum number of users (%d) for this site was " "reached." @@ -31,11 +31,11 @@ msgid_plural "" "Cannot register because the maximum number of users (%d) for this site was " "reached." msgstr[0] "" -"РегиÑтрацијата не може да Ñе изврши. ДоÑтигнат е макÑималниот број на " -"кориÑници (%d)." +"Ðе можам да Ве региÑтрирам. ДоÑтигнат е макÑималниот број на кориÑници (%d) " +"за ова мрежно меÑто." msgstr[1] "" -"РегиÑтрацијата не може да Ñе изврши. ДоÑтигнат е макÑималниот број на " -"кориÑници (%d)." +"Ðе можам да Ве региÑтрирам. ДоÑтигнат е макÑималниот број на кориÑници (%d) " +"за ова мрежно меÑто." #. TRANS: Plugin description. msgid "Limit the number of users who can register." diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 4f2013291a..fd8351c9eb 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:59+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Error message given if creating a new user is not possible because a limit has been reached. #. TRANS: %d is the user limit (also available for plural). -#, fuzzy, php-format +#, php-format msgid "" "Cannot register because the maximum number of users (%d) for this site was " "reached." diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index c871fb137c..86f4d800ea 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" @@ -39,7 +39,7 @@ msgstr "" #. TRANS: Link description for viewing the GFDL. msgid "GNU FDL" -msgstr "" +msgstr "GNU FDL" #. TRANS: Link description for editing an article on WikiHashTags. #. TRANS: %s is the hash tag page to be created. diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index 50295402f8..91bb1a4126 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:00+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:12+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" @@ -37,7 +37,7 @@ msgstr "Gedeeld onder de voorwaarden van de GNU Free Documentation License" #. TRANS: Link description for viewing the GFDL. msgid "GNU FDL" -msgstr "" +msgstr "GNU FDL" #. TRANS: Link description for editing an article on WikiHashTags. #. TRANS: %s is the hash tag page to be created. diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 785afa8e25..544d3895de 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" @@ -31,11 +31,11 @@ msgstr "" #. TRANS: Exception thrown when fetching a WikiHow profile page fails. msgid "WikiHow profile page fetch failed." -msgstr "" +msgstr "Ðе уÑпеав да ја добијам профилната Ñтраница од WikiHow." #. TRANS: Exception thrown when parsing a WikiHow profile page fails. msgid "HTML parse failure during check for WikiHow avatar." -msgstr "" +msgstr "Ðе уÑпеа парÑирањето на HTML при проверката на аватар од WikiHow." #. TRANS: Server exception thrown when an avatar URL is invalid. #. TRANS: %s is the invalid avatar URL. diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index 4c3a390784..145baa2aff 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:01+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" @@ -31,11 +31,13 @@ msgstr "" #. TRANS: Exception thrown when fetching a WikiHow profile page fails. msgid "WikiHow profile page fetch failed." -msgstr "" +msgstr "Het ophalen van de profielpagina van WikiHow is mislukt." #. TRANS: Exception thrown when parsing a WikiHow profile page fails. msgid "HTML parse failure during check for WikiHow avatar." msgstr "" +"Het verwerken van de HTML is mislukt tijdens het controleren op de WikiHow-" +"avatar." #. TRANS: Server exception thrown when an avatar URL is invalid. #. TRANS: %s is the invalid avatar URL. diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index ba564844d3..f4d77d402b 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -32,37 +32,37 @@ msgstr "XMPP/Jabber/GTalk" #. TRANS: Exception thrown when using too many @ signs in a Jabber ID. msgid "Invalid JID: too many @s." -msgstr "" +msgstr "Ðеважечки JID: премногу мајмунчиња (@)." #. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. msgid "Invalid JID: @ but no node" -msgstr "" +msgstr "Ðеважежки JID: @, но нема јазол" #. TRANS: Exception thrown when using too long a Jabber ID (>1023). msgid "Invalid JID: node too long." -msgstr "" +msgstr "Ðеважечки JID: јазолот е предолг." #. TRANS: Exception thrown when using an invalid Jabber ID. #. TRANS: %s is the invalid Jabber ID. #, php-format msgid "Invalid JID node \"%s\"." -msgstr "" +msgstr "Ðеважечки јазол од JID „%s“." #. TRANS: Exception thrown when using too long a Jabber domain (>1023). msgid "Invalid JID: domain too long." -msgstr "" +msgstr "Ðеважечки JID: доменот е предолг." #. TRANS: Exception thrown when using an invalid Jabber domain name. #. TRANS: %s is the invalid domain name. #, php-format msgid "Invalid JID domain name \"%s\"." -msgstr "" +msgstr "Ðеважечко доменÑко име од JID „%s“." #. TRANS: Exception thrown when using an invalid Jabber resource. #. TRANS: %s is the invalid resource. #, php-format msgid "Invalid JID resource \"%s\"." -msgstr "" +msgstr "Ðеважечки реÑÑƒÑ€Ñ Ð¾Ð´ JID „%s“." #. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. @@ -72,19 +72,19 @@ msgstr "[%s]" #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a server in the configuration." -msgstr "" +msgstr "Мора да наведете опÑлужувач во поÑтавувањето." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a port in the configuration." -msgstr "" +msgstr "Мора да наведете порта во поÑтавувањето." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a user in the configuration." -msgstr "" +msgstr "Мора да назначите кориÑник во поÑтавувањето." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a password in the configuration." -msgstr "" +msgstr "Мора да назначите лозинка во поÑтавувањето." #. TRANS: Plugin description. msgid "" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index ee05b1994a..5ce6c939d5 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:03+0000\n" +"POT-Creation-Date: 2011-06-19 11:06+0000\n" +"PO-Revision-Date: 2011-06-19 11:09:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:52:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-POT-Import-Date: 2011-06-18 16:21:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -32,37 +32,37 @@ msgstr "XMPP/Jabber/Google Talk" #. TRANS: Exception thrown when using too many @ signs in a Jabber ID. msgid "Invalid JID: too many @s." -msgstr "" +msgstr "Ongeldige JID: te veel @'s." #. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. msgid "Invalid JID: @ but no node" -msgstr "" +msgstr "Ongeldige JID: @ maar geen node" #. TRANS: Exception thrown when using too long a Jabber ID (>1023). msgid "Invalid JID: node too long." -msgstr "" +msgstr "Ongeldige JID: de node is te lang." #. TRANS: Exception thrown when using an invalid Jabber ID. #. TRANS: %s is the invalid Jabber ID. #, php-format msgid "Invalid JID node \"%s\"." -msgstr "" +msgstr "Ongeldige JID node \"%s\"." #. TRANS: Exception thrown when using too long a Jabber domain (>1023). msgid "Invalid JID: domain too long." -msgstr "" +msgstr "Ongeldige JID: het domein is te lang." #. TRANS: Exception thrown when using an invalid Jabber domain name. #. TRANS: %s is the invalid domain name. #, php-format msgid "Invalid JID domain name \"%s\"." -msgstr "" +msgstr "Ongeldige JID-domeinnaam \"%s\"." #. TRANS: Exception thrown when using an invalid Jabber resource. #. TRANS: %s is the invalid resource. #, php-format msgid "Invalid JID resource \"%s\"." -msgstr "" +msgstr "Ongeldige JID-bron \"%s\"." #. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. @@ -72,19 +72,19 @@ msgstr "[%s]" #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a server in the configuration." -msgstr "" +msgstr "U moet in de instellingen een server opgeven." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a port in the configuration." -msgstr "" +msgstr "U moet in de instellingen een poort opgeven." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a user in the configuration." -msgstr "" +msgstr "U moet in de instellingen een gebruiker opgeven." #. TRANS: Exception thrown when the plugin configuration is incorrect. msgid "You must specify a password in the configuration." -msgstr "" +msgstr "U moet in de instellingen een wachtwoord opgeven." #. TRANS: Plugin description. msgid "" From 0155198ffaaa06f17eeb974fe7712aa62b86bed6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 15:02:31 +0200 Subject: [PATCH 17/31] Add translator documentation. Broke a few long lines. i18n/L10n updates. Whitespace updates. --- plugins/YammerImport/README | 3 - .../YammerImport/actions/yammeradminpanel.php | 6 +- plugins/YammerImport/actions/yammerauth.php | 6 +- .../YammerImport/classes/Yammer_common.php | 7 +- plugins/YammerImport/classes/Yammer_group.php | 3 - .../YammerImport/classes/Yammer_notice.php | 3 - .../classes/Yammer_notice_stub.php | 6 -- plugins/YammerImport/classes/Yammer_state.php | 6 -- plugins/YammerImport/classes/Yammer_user.php | 3 - plugins/YammerImport/lib/sn_yammerclient.php | 14 ++- plugins/YammerImport/lib/yammerapikeyform.php | 11 ++- .../YammerImport/lib/yammerauthinitform.php | 9 +- .../YammerImport/lib/yammerauthverifyform.php | 14 ++- plugins/YammerImport/lib/yammerimporter.php | 23 +++-- .../YammerImport/lib/yammerprogressform.php | 87 ++++++++++++++++--- plugins/YammerImport/lib/yammerrunner.php | 21 ++--- .../YammerImport/scripts/yammer-import.php | 1 - 17 files changed, 146 insertions(+), 77 deletions(-) diff --git a/plugins/YammerImport/README b/plugins/YammerImport/README index 975faa2132..db16744dce 100644 --- a/plugins/YammerImport/README +++ b/plugins/YammerImport/README @@ -139,8 +139,6 @@ File type and size limitations on attachments will be applied, so beware some attachments may not make it through. - - Code structure ============== @@ -179,4 +177,3 @@ Yammer_notice_stub: data object for temporary storage of fetched Yammer messages Yammer_user, Yammer_group, Yammer_notice: data objects mapping original Yammer item IDs to their local copies. - diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 4714154290..493762e2cd 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -42,6 +42,7 @@ class YammeradminpanelAction extends AdminPanelAction */ function title() { + // TRANS: Page title for Yammer import administration panel. return _m('Yammer Import'); } @@ -52,6 +53,7 @@ class YammeradminpanelAction extends AdminPanelAction */ function getInstructions() { + // TRANS: Instructions for Yammer import administration panel. return _m('This Yammer import tool is still undergoing testing, ' . 'and is incomplete in some areas. ' . 'Currently user subscriptions and group memberships are not ' . @@ -111,7 +113,8 @@ class YammeradminpanelAction extends AdminPanelAction } else if ($this->subaction == 'progress') { $form = $this->statusForm(); } else { - throw new ClientException('Invalid POST'); + // TRANS: Client exception thrown when encountering an unhandled sub action. + throw new ClientException(_m('Invalid POST')); } return $this->showAjaxForm($form); } @@ -132,6 +135,7 @@ class YammeradminpanelAction extends AdminPanelAction { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Page title for Yammer import administration panel. $this->element('title', null, _m('Yammer import')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/plugins/YammerImport/actions/yammerauth.php b/plugins/YammerImport/actions/yammerauth.php index d0d4b40c71..d25be91440 100644 --- a/plugins/YammerImport/actions/yammerauth.php +++ b/plugins/YammerImport/actions/yammerauth.php @@ -33,7 +33,6 @@ if (!defined('STATUSNET')) { class YammerauthAction extends AdminPanelAction { - /** * Show the Yammer admin panel form * @@ -42,7 +41,7 @@ class YammerauthAction extends AdminPanelAction function prepare($args) { parent::prepare($args); - + $this->verify_token = $this->trim('verify_token'); } @@ -55,7 +54,6 @@ class YammerauthAction extends AdminPanelAction * * @return void */ - function handle($args) { if ($this->verify_token) { @@ -68,6 +66,7 @@ class YammerauthAction extends AdminPanelAction $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Page title for Yammer administration panel. $this->element('title', null, _m('Connect to Yammer')); $this->elementEnd('head'); $this->elementStart('body'); @@ -76,4 +75,3 @@ class YammerauthAction extends AdminPanelAction $this->elementEnd('html'); } } - diff --git a/plugins/YammerImport/classes/Yammer_common.php b/plugins/YammerImport/classes/Yammer_common.php index 6ec6fc9041..e262623263 100644 --- a/plugins/YammerImport/classes/Yammer_common.php +++ b/plugins/YammerImport/classes/Yammer_common.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * - schemaDef (call self::doSchemaDef) * - record (call self::doRecord) */ - class Yammer_common extends Memcached_DataObject { public $__table = 'yammer_XXXX'; // table name @@ -50,7 +49,7 @@ class Yammer_common extends Memcached_DataObject public $created; // datetime /** - * @fixme add a 'references' thing for the foreign key when we support that + * @todo FIXME: Add a 'references' thing for the foreign key when we support that */ protected static function doSchemaDef($field) { @@ -87,7 +86,6 @@ class Yammer_common extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -105,7 +103,6 @@ class Yammer_common extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('id' => 'K', $this->__field => 'U'); @@ -121,7 +118,6 @@ class Yammer_common extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); @@ -135,7 +131,6 @@ class Yammer_common extends Memcached_DataObject * * @return Yammer_common new object for this value */ - protected static function doRecord($class, $field, $orig_id, $local_id) { $map = parent::staticGet($class, 'id', $orig_id); diff --git a/plugins/YammerImport/classes/Yammer_group.php b/plugins/YammerImport/classes/Yammer_group.php index 4e7a6ebd03..a52b5119d4 100644 --- a/plugins/YammerImport/classes/Yammer_group.php +++ b/plugins/YammerImport/classes/Yammer_group.php @@ -48,7 +48,6 @@ class Yammer_group extends Yammer_common * @return Yammer_group object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Yammer_group', $k, $v); @@ -57,7 +56,6 @@ class Yammer_group extends Yammer_common /** * Return schema definition to set this table up in onCheckSchema */ - static function schemaDef() { return self::doSchemaDef('group_id'); @@ -71,7 +69,6 @@ class Yammer_group extends Yammer_common * * @return Yammer_group new object for this value */ - static function record($orig_id, $group_id) { return self::doRecord('Yammer_group', 'group_id', $orig_id, $group_id); diff --git a/plugins/YammerImport/classes/Yammer_notice.php b/plugins/YammerImport/classes/Yammer_notice.php index 0f63db6303..118266aed0 100644 --- a/plugins/YammerImport/classes/Yammer_notice.php +++ b/plugins/YammerImport/classes/Yammer_notice.php @@ -48,7 +48,6 @@ class Yammer_notice extends Yammer_common * @return Yammer_notice object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Yammer_notice', $k, $v); @@ -57,7 +56,6 @@ class Yammer_notice extends Yammer_common /** * Return schema definition to set this table up in onCheckSchema */ - static function schemaDef() { return self::doSchemaDef('notice_id'); @@ -71,7 +69,6 @@ class Yammer_notice extends Yammer_common * * @return Yammer_notice new object for this value */ - static function record($orig_id, $notice_id) { return self::doRecord('Yammer_notice', 'notice_id', $orig_id, $notice_id); diff --git a/plugins/YammerImport/classes/Yammer_notice_stub.php b/plugins/YammerImport/classes/Yammer_notice_stub.php index e10300c4c7..6dd78206d2 100644 --- a/plugins/YammerImport/classes/Yammer_notice_stub.php +++ b/plugins/YammerImport/classes/Yammer_notice_stub.php @@ -40,7 +40,6 @@ if (!defined('STATUSNET')) { * down in reverse chronological order, then go back over them from oldest to * newest and actually save them into our notice table. */ - class Yammer_notice_stub extends Memcached_DataObject { public $__table = 'yammer_notice_stub'; // table name @@ -57,9 +56,7 @@ class Yammer_notice_stub extends Memcached_DataObject * @param mixed $v Value to lookup * * @return Yammer_notice_stub object found, or null for no hits - * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Yammer_notice_stub', $k, $v); @@ -86,7 +83,6 @@ class Yammer_notice_stub extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -121,7 +117,6 @@ class Yammer_notice_stub extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('id' => 'K'); @@ -137,7 +132,6 @@ class Yammer_notice_stub extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); diff --git a/plugins/YammerImport/classes/Yammer_state.php b/plugins/YammerImport/classes/Yammer_state.php index 88bd693bfd..548fbbf024 100644 --- a/plugins/YammerImport/classes/Yammer_state.php +++ b/plugins/YammerImport/classes/Yammer_state.php @@ -55,9 +55,7 @@ class Yammer_state extends Memcached_DataObject * @param mixed $v Value to lookup * * @return Yammer_state object found, or null for no hits - * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Yammer_state', $k, $v); @@ -90,7 +88,6 @@ class Yammer_state extends Memcached_DataObject * * @return array array of column definitions */ - function table() { return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, @@ -114,7 +111,6 @@ class Yammer_state extends Memcached_DataObject * * @return array list of key field names */ - function keys() { return array_keys($this->keyTypes()); @@ -132,7 +128,6 @@ class Yammer_state extends Memcached_DataObject * 'K' for primary key: for compound keys, add an entry for each component; * 'U' for unique keys: compound keys are not well supported here. */ - function keyTypes() { return array('id' => 'K'); @@ -148,7 +143,6 @@ class Yammer_state extends Memcached_DataObject * * @return array magic three-false array that stops auto-incrementing. */ - function sequenceKey() { return array(false, false, false); diff --git a/plugins/YammerImport/classes/Yammer_user.php b/plugins/YammerImport/classes/Yammer_user.php index f6fcd6c3cb..8139613347 100644 --- a/plugins/YammerImport/classes/Yammer_user.php +++ b/plugins/YammerImport/classes/Yammer_user.php @@ -48,7 +48,6 @@ class Yammer_user extends Yammer_common * @return Yammer_user object found, or null for no hits * */ - function staticGet($k, $v=null) { return Memcached_DataObject::staticGet('Yammer_user', $k, $v); @@ -57,7 +56,6 @@ class Yammer_user extends Yammer_common /** * Return schema definition to set this table up in onCheckSchema */ - static function schemaDef() { return self::doSchemaDef('user_id'); @@ -71,7 +69,6 @@ class Yammer_user extends Yammer_common * * @return Yammer_user new object for this value */ - static function record($orig_id, $user_id) { return self::doRecord('Yammer_user', 'user_id', $orig_id, $user_id); diff --git a/plugins/YammerImport/lib/sn_yammerclient.php b/plugins/YammerImport/lib/sn_yammerclient.php index 5da1cc5e7e..2827bdc53a 100644 --- a/plugins/YammerImport/lib/sn_yammerclient.php +++ b/plugins/YammerImport/lib/sn_yammerclient.php @@ -19,7 +19,7 @@ /** * Basic client class for Yammer's OAuth/JSON API. - * + * * @package YammerImportPlugin * @author Brion Vibber */ @@ -69,7 +69,11 @@ class SN_YammerClient if ($response->isOk()) { return $response->getBody(); } else { - throw new Exception("Yammer API returned HTTP code " . $response->getStatus() . ': ' . $response->getBody()); + // TRANS: Exeption thrown when an external Yammer system gives an error. + // TRANS: %1$s is an HTTP error code, %2$s is the error message body. + throw new Exception(sprintf(_m('Yammer API returned HTTP code %1$s: %2$s'), + $response->getStatus(), + $response->getBody())); } } @@ -106,7 +110,8 @@ class SN_YammerClient $data = json_decode($body, true); if ($data === null) { common_log(LOG_ERR, "Invalid JSON response from Yammer API: " . $body); - throw new Exception("Invalid JSON response from Yammer API"); + // TRANS: Exeption thrown when an external Yammer system an invalid JSON response. + throw new Exception(_m('Invalid JSON response from Yammer API.')); } return $data; } @@ -160,7 +165,8 @@ class SN_YammerClient public function requestToken() { if ($this->token || $this->tokenSecret) { - throw new Exception("Requesting a token, but already set up with a token"); + // TRANS: Exeption thrown when a trust relationship has already been established. + throw new Exception(_m('Requesting a token, but already set up with a token.')); } $data = $this->fetchApi('oauth/request_token'); $arr = array(); diff --git a/plugins/YammerImport/lib/yammerapikeyform.php b/plugins/YammerImport/lib/yammerapikeyform.php index b2acec4ede..72c14c30ce 100644 --- a/plugins/YammerImport/lib/yammerapikeyform.php +++ b/plugins/YammerImport/lib/yammerapikeyform.php @@ -53,6 +53,7 @@ class YammerApikeyForm extends Form */ function formLegend() { + // TRANS: Form legend for adding details to connect to a remote Yammer API. $this->out->element('legend', null, _m('Yammer API registration')); } @@ -69,6 +70,7 @@ class YammerApikeyForm extends Form $this->out->elementStart('fieldset'); $this->out->elementStart('p'); + // TRANS: Explanation of what needs to be done to connect to a Yammer network. $this->out->text(_m('Before we can connect to your Yammer network, ' . 'you will need to register the importer as an ' . 'application authorized to pull data on your behalf. ' . @@ -81,21 +83,28 @@ class YammerApikeyForm extends Form $this->out->element('a', array('href' => 'https://www.yammer.com/client_applications/new', 'target' => '_blank'), + // TRANS: Link description to a Yammer application registration form. _m('Open Yammer application registration form')); $this->out->elementEnd('p'); + // TRANS: Instructions. $this->out->element('p', array(), _m('Copy the consumer key and secret you are given into the form below:')); $this->out->elementStart('ul', array('class' => 'form_data')); $this->out->elementStart('li'); + // TRANS: Field label for a Yammer consumer key. $this->out->input('consumer_key', _m('Consumer key:'), common_config('yammer', 'consumer_key')); $this->out->elementEnd('li'); $this->out->elementStart('li'); + // TRANS: Field label for a Yammer consumer secret. $this->out->input('consumer_secret', _m('Consumer secret:'), common_config('yammer', 'consumer_secret')); $this->out->elementEnd('li'); $this->out->elementEnd('ul'); - $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save these consumer keys')); + // TRANS: Button text for saving a Yammer API registration. + $this->out->submit('submit', _m('BUTTON','Save'), + // TRANS: Button title for saving a Yammer API registration. + 'submit', null, _m('Save the entered consumer key and consumer secret.')); $this->out->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/lib/yammerauthinitform.php b/plugins/YammerImport/lib/yammerauthinitform.php index 9f48fd82a5..c123bbbb9d 100644 --- a/plugins/YammerImport/lib/yammerauthinitform.php +++ b/plugins/YammerImport/lib/yammerauthinitform.php @@ -45,6 +45,7 @@ class YammerAuthInitForm extends Form */ function formLegend() { + // TRANS: Form legend. $this->out->element('legend', null, _m('Connect to Yammer')); } @@ -59,8 +60,12 @@ class YammerAuthInitForm extends Form $this->out->hidden('subaction', 'authinit'); $this->out->elementStart('fieldset'); - $this->out->submit('submit', _m('Start authentication'), 'submit', null, _m('Request authorization to connect to Yammer account')); - $this->out->submit('change-apikey', _m('Change API key')); + // TRANS: Button text for starting Yammer authentication. + $this->out->submit('submit', _m('BUTTON','Start authentication'), + // TRANS: Button title for starting Yammer authentication. + 'submit', null, _m('Request authorization to connect to a Yammer account.')); + // TRANS: Button text for starting changing a Yammer API key. + $this->out->submit('change-apikey', _m('BUTTON','Change API key')); $this->out->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/lib/yammerauthverifyform.php b/plugins/YammerImport/lib/yammerauthverifyform.php index e119be96f7..bb82eba6ae 100644 --- a/plugins/YammerImport/lib/yammerauthverifyform.php +++ b/plugins/YammerImport/lib/yammerauthverifyform.php @@ -53,6 +53,7 @@ class YammerAuthVerifyForm extends Form */ function formLegend() { + // TRANS: Form legend. $this->out->element('legend', null, _m('Connect to Yammer')); } @@ -69,6 +70,7 @@ class YammerAuthVerifyForm extends Form $this->out->elementStart('fieldset'); $this->out->elementStart('p'); + // TRANS: Form instructions. $this->out->text(_m('Follow this link to confirm authorization at Yammer; you will be prompted to log in if necessary:')); $this->out->elementEnd('p'); @@ -84,18 +86,24 @@ class YammerAuthVerifyForm extends Form $this->out->element('a', array('href' => $this->runner->getAuthUrl(), 'target' => '_blank'), + // TRANS: Link description for a link in an external Yammer system. _m('Open Yammer authentication window')); $this->out->elementEnd('p'); - + + // TRANS: Form instructions. $this->out->element('p', array(), _m('Copy the verification code you are given below:')); $this->out->elementStart('ul', array('class' => 'form_data')); $this->out->elementStart('li'); + // TRANS: Field label. $this->out->input('verify_token', _m('Verification code:')); $this->out->elementEnd('li'); $this->out->elementEnd('ul'); - - $this->out->submit('submit', _m('Continue'), 'submit', null, _m('Save code and begin import')); + + // TRANS: Button text for saving Yammer authorisation data and starting Yammer import. + $this->out->submit('submit', _m('BUTTON','Continue'), + // TRANS: Button title for saving Yammer authorisation data and starting Yammer import. + 'submit', null, _m('Save the verification code and begin import.')); $this->out->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/lib/yammerimporter.php b/plugins/YammerImport/lib/yammerimporter.php index 93bc96d529..ffc88ab473 100644 --- a/plugins/YammerImport/lib/yammerimporter.php +++ b/plugins/YammerImport/lib/yammerimporter.php @@ -34,7 +34,7 @@ class YammerImporter /** * Load or create an imported profile from Yammer data. - * + * * @param object $item loaded JSON data for Yammer importer * @return Profile */ @@ -180,7 +180,8 @@ class YammerImporter function prepUser($item) { if ($item['type'] != 'user') { - throw new Exception('Wrong item type sent to Yammer user import processing.'); + // TRANS: Exception thrown when a non-user item type is used, but expected. + throw new Exception(_m('Wrong item type sent to Yammer user import processing.')); } $origId = $item['id']; @@ -227,6 +228,7 @@ class YammerImporter $bio[] = $item['summary']; } if (!empty($item['expertise'])) { + // TRANS: Used as a prefix for the Yammer expertise field contents. $bio[] = _m('Expertise:') . ' ' . $item['expertise']; } $options['bio'] = implode("\n\n", $bio); @@ -262,7 +264,8 @@ class YammerImporter function prepGroup($item) { if ($item['type'] != 'group') { - throw new Exception('Wrong item type sent to Yammer group import processing.'); + // TRANS: Exception thrown when a non-group item type is used, but expected. + throw new Exception(_m('Wrong item type sent to Yammer group import processing.')); } $origId = $item['id']; @@ -277,7 +280,6 @@ class YammerImporter $avatar = $item['mugshot_url']; // as with user profiles... - $options['mainpage'] = common_local_url('showgroup', array('nickname' => $options['nickname'])); @@ -285,7 +287,7 @@ class YammerImporter $options['homepage'] = ''; $options['location'] = ''; $options['aliases'] = array(); - // @fixme what about admin user for the group? + // @todo FIXME: What about admin user for the group? $options['local'] = true; return array('orig_id' => $origId, @@ -303,7 +305,8 @@ class YammerImporter function prepNotice($item) { if (isset($item['type']) && $item['type'] != 'message') { - throw new Exception('Wrong item type sent to Yammer message import processing.'); + // TRANS: Exception thrown when a non-message item type is used, but expected. + throw new Exception(_m('Wrong item type sent to Yammer message import processing.')); } $origId = $item['id']; @@ -430,7 +433,9 @@ class YammerImporter $url = preg_replace('/_small(\..*?)$/', '$1', $url); if (!common_valid_http_url($url)) { - throw new ServerException(sprintf(_m("Invalid avatar URL %s."), $url)); + // TRANS: Server exception thrown when an avatar URL is invalid. + // TRANS: %s is the invalid avatar URL. + throw new ServerException(sprintf(_m('Invalid avatar URL %s.'), $url)); } // @fixme this should be better encapsulated @@ -438,7 +443,9 @@ class YammerImporter $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); try { if (!copy($url, $temp_filename)) { - throw new ServerException(sprintf(_m("Unable to fetch avatar from %s."), $url)); + // TRANS: Server exception thrown when an avatar could not be fetched. + // TRANS: %s is the failed avatar URL. + throw new ServerException(sprintf(_m('Unable to fetch avatar from %s.'), $url)); } $id = $dest->id; diff --git a/plugins/YammerImport/lib/yammerprogressform.php b/plugins/YammerImport/lib/yammerprogressform.php index 9bf8332261..0b73472a4d 100644 --- a/plugins/YammerImport/lib/yammerprogressform.php +++ b/plugins/YammerImport/lib/yammerprogressform.php @@ -60,39 +60,92 @@ class YammerProgressForm extends Form $labels = array( 'init' => array( - 'label' => _m("Initialize"), + // TRANS: Field label for a Yammer import initialise step. + 'label' => _m('Initialize'), + // TRANS: "In progress" description. 'progress' => _m('No import running'), + // TRANS: "Complete" description for initialize state. 'complete' => _m('Initiated Yammer server connection...'), ), 'requesting-auth' => array( + // TRANS: Field label for a Yammer import connect step. 'label' => _m('Connect to Yammer'), + // TRANS: "In progress" description. 'progress' => _m('Awaiting authorization...'), + // TRANS: "Complete" description for connect state. 'complete' => _m('Connected.'), ), 'import-users' => array( + // TRANS: Field label for a Yammer user import users step. 'label' => _m('Import user accounts'), - 'progress' => sprintf(_m("Importing %d user...", "Importing %d users...", $userCount), $userCount), - 'complete' => sprintf(_m("Imported %d user.", "Imported %d users.", $userCount), $userCount), + // TRANS: "In progress" description. + // TRANS: %d is the number of users to be imported. + 'progress' => sprintf(_m('Importing %d user...', + 'Importing %d users...', + $userCount), + $userCount), + // TRANS: "Complete" description for step. + // TRANS: %d is the number of users imported. + 'complete' => sprintf(_m('Imported %d user.', + 'Imported %d users.', + $userCount), + $userCount), ), 'import-groups' => array( + // TRANS: Field label for a Yammer group import step. 'label' => _m('Import user groups'), - 'progress' => sprintf(_m("Importing %d group...", "Importing %d groups...", $groupCount), $groupCount), - 'complete' => sprintf(_m("Imported %d group.", "Imported %d groups.", $groupCount), $groupCount), + // TRANS: "In progress" description. + // TRANS: %d is the number of groups to be imported. + 'progress' => sprintf(_m('Importing %d group...', + 'Importing %d groups...', + $groupCount), + $groupCount), + // TRANS: "Complete" description for step. + // TRANS: %d is the number of groups imported. + 'complete' => sprintf(_m('Imported %d group.', + 'Imported %d groups.', + $groupCount), + $groupCount), ), 'fetch-messages' => array( + // TRANS: Field label for a Yammer import prepare notices step. 'label' => _m('Prepare public notices for import'), - 'progress' => sprintf(_m("Preparing %d notice...", "Preparing %d notices...", $fetchedCount), $fetchedCount), - 'complete' => sprintf(_m("Prepared %d notice.", "Prepared %d notices.", $fetchedCount), $fetchedCount), + // TRANS: "In progress" description. + // TRANS: %d is the number of notices to be prepared for import. + 'progress' => sprintf(_m('Preparing %d notice...', + 'Preparing %d notices...', + $fetchedCount), + $fetchedCount), + // TRANS: "Complete" description for step. + // TRANS: %d is the number of notices prepared for import. + 'complete' => sprintf(_m('Prepared %d notice.', + 'Prepared %d notices.', + $fetchedCount), + $fetchedCount), ), 'save-messages' => array( + // TRANS: Field label for a Yammer import notices step. 'label' => _m('Import public notices'), - 'progress' => sprintf(_m("Importing %d notice...", "Importing %d notices...", $savedCount), $savedCount), - 'complete' => sprintf(_m("Imported %d notice.", "Imported %d notices.", $savedCount), $savedCount), + // TRANS: "In progress" description. + // TRANS: %d is the number of notices to be imported. + 'progress' => sprintf(_m('Importing %d notice...', + 'Importing %d notices...', + $savedCount), + $savedCount), + // TRANS: "Complete" description for step. + // TRANS: %d is the number of notices imported. + 'complete' => sprintf(_m('Imported %d notice.', + 'Imported %d notices.', + $savedCount), + $savedCount), ), 'done' => array( + // TRANS: Field label for a Yammer import done step. 'label' => _m('Done'), - 'progress' => sprintf(_m("Import is complete!")), - 'complete' => sprintf(_m("Import is complete!")), + // TRANS: "In progress" description for done step. + 'progress' => sprintf(_m('Import is complete!')), + // TRANS: "Complete" description for done step. + 'complete' => sprintf(_m('Import is complete!')), ) ); $steps = array_keys($labels); @@ -105,6 +158,7 @@ class YammerProgressForm extends Form $classes[] = 'yammer-running'; } $this->out->elementStart('fieldset', array('class' => implode(' ', $classes))); + // TRANS: Fieldset legend. $this->out->element('legend', array(), _m('Import status')); foreach ($steps as $step => $state) { if ($state == 'init') { @@ -129,7 +183,8 @@ class YammerProgressForm extends Form $this->progressBar($state, 'waiting', $labels[$state]['label'], - _m("Waiting...")); + // TRANS: Progress bar status. + _m('Waiting...')); } } $this->out->elementEnd('fieldset'); @@ -143,11 +198,13 @@ class YammerProgressForm extends Form $this->out->element('div', array('class' => 'import-status'), $status); if ($class == 'progress') { if ($state == 'done') { + // TRANS: Button text for resetting the import state. $this->out->submit('abort-import', _m('Reset import state')); } else { if ($error) { $this->errorBox($error); } else { + // TRANS: Button text for pausing an import. $this->out->submit('pause-import', _m('Pause import')); } } @@ -157,11 +214,15 @@ class YammerProgressForm extends Form private function errorBox($msg) { - $errline = sprintf(_m('Encountered error "%s"'), $msg); + // TRANS: Error message. %s are the error details. + $errline = sprintf(_m('Encountered error "%s".'), $msg); $this->out->elementStart('fieldset', array('class' => 'import-error')); + // TRANS: Fieldset legend for a paused import. $this->out->element('legend', array(), _m('Paused')); $this->out->element('p', array(), $errline); + // TRANS: Button text for continuing a paused import. $this->out->submit('continue-import', _m('Continue')); + // TRANS: Button text for aborting a paused import. $this->out->submit('abort-import', _m('Abort import')); $this->out->elementEnd('fieldset'); } diff --git a/plugins/YammerImport/lib/yammerrunner.php b/plugins/YammerImport/lib/yammerrunner.php index 3e53f3361b..04cc9c0283 100644 --- a/plugins/YammerImport/lib/yammerrunner.php +++ b/plugins/YammerImport/lib/yammerrunner.php @@ -123,7 +123,8 @@ class YammerRunner public function requestAuth() { if ($this->state->state != 'init') { - throw new ServerException("Cannot request Yammer auth; already there!"); + // TRANS: Server exception thrown if a Yammer authentication request is already present. + throw new ServerException(_m('Cannot request Yammer auth; already there!')); } $data = $this->client->requestToken(); @@ -149,7 +150,8 @@ class YammerRunner if ($this->state() == 'requesting-auth') { return $this->client->authorizeUrl($this->state->oauth_token); } else { - throw new ServerException('Cannot get Yammer auth URL when not in requesting-auth state!'); + // TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. + throw new ServerException(_m('Cannot get Yammer auth URL when not in requesting-auth state!')); } } @@ -167,7 +169,9 @@ class YammerRunner public function saveAuthToken($verifier) { if ($this->state->state != 'requesting-auth') { - throw new ServerException("Cannot save auth token in Yammer import state {$this->state->state}"); + // TRANS: Server exception thrown if a Yammer authentication token could not be saved in a certain import state. + // TRANS: %s is the import state in the which the error occurred. + throw new ServerException(_m('Cannot save auth token in Yammer import state %s.',$this->state->state)); } $data = $this->client->accessToken($verifier); @@ -324,7 +328,7 @@ class YammerRunner $stub->limit(20); $stub->orderBy('id'); $stub->find(); - + if ($stub->N == 0) { common_log(LOG_INFO, "Finished saving Yammer messages; import complete!"); $this->state->state = 'done'; @@ -353,7 +357,6 @@ class YammerRunner return $map->count(); } - /** * Count the number of Yammer groups we've mapped into our system! * @@ -365,7 +368,6 @@ class YammerRunner return $map->count(); } - /** * Count the number of Yammer notices we've pulled down for pending import... * @@ -377,7 +379,6 @@ class YammerRunner return $map->count(); } - /** * Count the number of Yammer notices we've mapped into our system! * @@ -401,8 +402,8 @@ class YammerRunner /** * Record an error condition from a background run, which we should * display in progress state for the admin. - * - * @param string $msg + * + * @param string $msg */ public function recordError($msg) { @@ -428,7 +429,7 @@ class YammerRunner /** * Get the last recorded background error message, if any. - * + * * @return string */ public function lastError() diff --git a/plugins/YammerImport/scripts/yammer-import.php b/plugins/YammerImport/scripts/yammer-import.php index b4aa921e50..22b6422195 100644 --- a/plugins/YammerImport/scripts/yammer-import.php +++ b/plugins/YammerImport/scripts/yammer-import.php @@ -4,7 +4,6 @@ if (php_sapi_name() != 'cli') { die('no'); } - define('INSTALLDIR', dirname(dirname(dirname(dirname(__FILE__))))); $longoptions = array('verify=', 'reset'); From 6917d6c7deacc8575f8aaadaca98e01ec5a38063 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 15:14:45 +0200 Subject: [PATCH 18/31] Document a few messages I missed. This should actually bring 1.0.x to 100% translator documention, but of course new messages will appear and I'll probably have overseen a few... --- plugins/YammerImport/YammerImportPlugin.php | 6 ++++-- plugins/YammerImport/actions/yammeradminpanel.php | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/YammerImport/YammerImportPlugin.php b/plugins/YammerImport/YammerImportPlugin.php index 41d8d08a66..b93eb3ba4a 100644 --- a/plugins/YammerImport/YammerImportPlugin.php +++ b/plugins/YammerImport/YammerImportPlugin.php @@ -95,8 +95,10 @@ class YammerImportPlugin extends Plugin $action_name = $nav->action->trimmed('action'); $nav->out->menuItem(common_local_url('yammeradminpanel'), - _m('Yammer'), - _m('Yammer import'), + // TRANS: Menu item for Yammer import. + _m('MENU','Yammer'), + // TRANS: Menu item title for Yammer import. + _m('Yammer import module.'), $action_name == 'yammeradminpanel', 'nav_yammer_admin_panel'); } diff --git a/plugins/YammerImport/actions/yammeradminpanel.php b/plugins/YammerImport/actions/yammeradminpanel.php index 493762e2cd..f8e099109e 100644 --- a/plugins/YammerImport/actions/yammeradminpanel.php +++ b/plugins/YammerImport/actions/yammeradminpanel.php @@ -101,6 +101,7 @@ class YammeradminpanelAction extends AdminPanelAction $form = new YammerProgressForm($this, $this->runner); } else if ($this->subaction == 'pause-import') { + // TRANS: Error message about an import job being paused from the admin panel. $this->runner->recordError(_m('Paused from admin panel.')); $form = $this->statusForm(); } else if ($this->subaction == 'continue-import') { From 0ed9000fd34497644829a4d0ef700bdea519771f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 19 Jun 2011 15:19:14 +0200 Subject: [PATCH 19/31] Localisation updates from http://translatewiki.net. --- plugins/YammerImport/locale/YammerImport.pot | 244 +++++++++++++----- .../locale/br/LC_MESSAGES/YammerImport.po | 144 ++++++++++- .../locale/de/LC_MESSAGES/YammerImport.po | 142 +++++++++- .../locale/fr/LC_MESSAGES/YammerImport.po | 142 +++++++++- .../locale/gl/LC_MESSAGES/YammerImport.po | 137 +++++++++- .../locale/ia/LC_MESSAGES/YammerImport.po | 142 +++++++++- .../locale/mk/LC_MESSAGES/YammerImport.po | 142 +++++++++- .../locale/ms/LC_MESSAGES/YammerImport.po | 139 +++++++++- .../locale/nl/LC_MESSAGES/YammerImport.po | 146 ++++++++++- .../locale/ru/LC_MESSAGES/YammerImport.po | 137 +++++++++- .../locale/tl/LC_MESSAGES/YammerImport.po | 142 +++++++++- .../locale/tr/LC_MESSAGES/YammerImport.po | 139 +++++++++- .../locale/uk/LC_MESSAGES/YammerImport.po | 142 +++++++++- 13 files changed, 1781 insertions(+), 157 deletions(-) diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index ecdb108a05..b7d2f038ec 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,16 +17,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: actions/yammerauth.php:71 lib/yammerauthinitform.php:48 -#: lib/yammerprogressform.php:68 lib/yammerauthverifyform.php:56 +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. +#: actions/yammerauth.php:70 lib/yammerauthinitform.php:49 +#: lib/yammerprogressform.php:72 lib/yammerauthverifyform.php:57 msgid "Connect to Yammer" msgstr "" -#: actions/yammeradminpanel.php:45 +#. TRANS: Page title for Yammer import administration panel. +#: actions/yammeradminpanel.php:46 msgid "Yammer Import" msgstr "" -#: actions/yammeradminpanel.php:55 +#. TRANS: Instructions for Yammer import administration panel. +#: actions/yammeradminpanel.php:57 msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -34,204 +40,319 @@ msgid "" "verified administrators on the Yammer side." msgstr "" -#: actions/yammeradminpanel.php:102 +#. TRANS: Error message about an import job being paused from the admin panel. +#: actions/yammeradminpanel.php:105 msgid "Paused from admin panel." msgstr "" -#: actions/yammeradminpanel.php:135 YammerImportPlugin.php:99 +#. TRANS: Client exception thrown when encountering an unhandled sub action. +#: actions/yammeradminpanel.php:118 +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. +#: actions/yammeradminpanel.php:140 msgid "Yammer import" msgstr "" -#: YammerImportPlugin.php:98 +#. TRANS: Menu item for Yammer import. +#: YammerImportPlugin.php:99 +msgctxt "MENU" msgid "Yammer" msgstr "" -#: lib/yammerimporter.php:230 +#. TRANS: Menu item title for Yammer import. +#: YammerImportPlugin.php:101 +msgid "Yammer import module." +msgstr "" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +#: lib/yammerimporter.php:184 +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. +#: lib/yammerimporter.php:232 msgid "Expertise:" msgstr "" -#: lib/yammerimporter.php:433 +#. TRANS: Exception thrown when a non-group item type is used, but expected. +#: lib/yammerimporter.php:268 +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +#: lib/yammerimporter.php:309 +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. +#: lib/yammerimporter.php:438 #, php-format msgid "Invalid avatar URL %s." msgstr "" -#: lib/yammerimporter.php:441 +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. +#: lib/yammerimporter.php:448 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" -#: lib/yammerauthinitform.php:62 +#. TRANS: Button text for starting Yammer authentication. +#: lib/yammerauthinitform.php:64 +msgctxt "BUTTON" msgid "Start authentication" msgstr "" -#: lib/yammerauthinitform.php:62 -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#: lib/yammerauthinitform.php:66 +msgid "Request authorization to connect to a Yammer account." msgstr "" -#: lib/yammerauthinitform.php:63 +#. TRANS: Button text for starting changing a Yammer API key. +#: lib/yammerauthinitform.php:68 +msgctxt "BUTTON" msgid "Change API key" msgstr "" -#: lib/yammerprogressform.php:63 +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +#: lib/yammerrunner.php:127 +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +#: lib/yammerrunner.php:154 +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#: lib/sn_yammerclient.php:74 +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +#: lib/sn_yammerclient.php:114 +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +#: lib/sn_yammerclient.php:169 +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. +#: lib/yammerprogressform.php:64 msgid "Initialize" msgstr "" -#: lib/yammerprogressform.php:64 +#. TRANS: "In progress" description. +#: lib/yammerprogressform.php:66 msgid "No import running" msgstr "" -#: lib/yammerprogressform.php:65 +#. TRANS: "Complete" description for initialize state. +#: lib/yammerprogressform.php:68 msgid "Initiated Yammer server connection..." msgstr "" -#: lib/yammerprogressform.php:69 +#. TRANS: "In progress" description. +#: lib/yammerprogressform.php:74 msgid "Awaiting authorization..." msgstr "" -#: lib/yammerprogressform.php:70 +#. TRANS: "Complete" description for connect state. +#: lib/yammerprogressform.php:76 msgid "Connected." msgstr "" -#: lib/yammerprogressform.php:73 +#. TRANS: Field label for a Yammer user import users step. +#: lib/yammerprogressform.php:80 msgid "Import user accounts" msgstr "" -#: lib/yammerprogressform.php:74 +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. +#: lib/yammerprogressform.php:83 #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:75 +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. +#: lib/yammerprogressform.php:89 #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:78 +#. TRANS: Field label for a Yammer group import step. +#: lib/yammerprogressform.php:96 msgid "Import user groups" msgstr "" -#: lib/yammerprogressform.php:79 +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. +#: lib/yammerprogressform.php:99 #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:80 +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. +#: lib/yammerprogressform.php:105 #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:83 +#. TRANS: Field label for a Yammer import prepare notices step. +#: lib/yammerprogressform.php:112 msgid "Prepare public notices for import" msgstr "" -#: lib/yammerprogressform.php:84 +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. +#: lib/yammerprogressform.php:115 #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:85 +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. +#: lib/yammerprogressform.php:121 #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:88 +#. TRANS: Field label for a Yammer import notices step. +#: lib/yammerprogressform.php:128 msgid "Import public notices" msgstr "" -#: lib/yammerprogressform.php:89 +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. +#: lib/yammerprogressform.php:131 #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:90 +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. +#: lib/yammerprogressform.php:137 #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" msgstr[1] "" -#: lib/yammerprogressform.php:93 +#. TRANS: Field label for a Yammer import done step. +#: lib/yammerprogressform.php:144 msgid "Done" msgstr "" -#: lib/yammerprogressform.php:94 lib/yammerprogressform.php:95 +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. +#: lib/yammerprogressform.php:146 lib/yammerprogressform.php:148 msgid "Import is complete!" msgstr "" -#: lib/yammerprogressform.php:108 +#. TRANS: Fieldset legend. +#: lib/yammerprogressform.php:162 msgid "Import status" msgstr "" -#: lib/yammerprogressform.php:132 +#. TRANS: Progress bar status. +#: lib/yammerprogressform.php:187 msgid "Waiting..." msgstr "" -#: lib/yammerprogressform.php:146 +#. TRANS: Button text for resetting the import state. +#: lib/yammerprogressform.php:202 msgid "Reset import state" msgstr "" -#: lib/yammerprogressform.php:151 +#. TRANS: Button text for pausing an import. +#: lib/yammerprogressform.php:208 msgid "Pause import" msgstr "" -#: lib/yammerprogressform.php:160 +#. TRANS: Error message. %s are the error details. +#: lib/yammerprogressform.php:218 #, php-format -msgid "Encountered error \"%s\"" +msgid "Encountered error \"%s\"." msgstr "" -#: lib/yammerprogressform.php:162 +#. TRANS: Fieldset legend for a paused import. +#: lib/yammerprogressform.php:221 msgid "Paused" msgstr "" -#: lib/yammerprogressform.php:164 lib/yammerauthverifyform.php:98 +#. TRANS: Button text for continuing a paused import. +#: lib/yammerprogressform.php:224 msgid "Continue" msgstr "" -#: lib/yammerprogressform.php:165 +#. TRANS: Button text for aborting a paused import. +#: lib/yammerprogressform.php:226 msgid "Abort import" msgstr "" -#: lib/yammerauthverifyform.php:72 +#. TRANS: Form instructions. +#: lib/yammerauthverifyform.php:74 msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" -#: lib/yammerauthverifyform.php:87 +#. TRANS: Link description for a link in an external Yammer system. +#: lib/yammerauthverifyform.php:90 msgid "Open Yammer authentication window" msgstr "" -#: lib/yammerauthverifyform.php:90 +#. TRANS: Form instructions. +#: lib/yammerauthverifyform.php:94 msgid "Copy the verification code you are given below:" msgstr "" -#: lib/yammerauthverifyform.php:94 +#. TRANS: Field label. +#: lib/yammerauthverifyform.php:99 msgid "Verification code:" msgstr "" -#: lib/yammerauthverifyform.php:98 -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#: lib/yammerauthverifyform.php:104 +msgctxt "BUTTON" +msgid "Continue" msgstr "" -#: lib/yammerapikeyform.php:56 +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#: lib/yammerauthverifyform.php:106 +msgid "Save the verification code and begin import." +msgstr "" + +#. TRANS: Form legend for adding details to connect to a remote Yammer API. +#: lib/yammerapikeyform.php:57 msgid "Yammer API registration" msgstr "" -#: lib/yammerapikeyform.php:72 +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. +#: lib/yammerapikeyform.php:74 msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -239,26 +360,33 @@ msgid "" "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" -#: lib/yammerapikeyform.php:84 +#. TRANS: Link description to a Yammer application registration form. +#: lib/yammerapikeyform.php:87 msgid "Open Yammer application registration form" msgstr "" -#: lib/yammerapikeyform.php:87 +#. TRANS: Instructions. +#: lib/yammerapikeyform.php:91 msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" -#: lib/yammerapikeyform.php:91 +#. TRANS: Field label for a Yammer consumer key. +#: lib/yammerapikeyform.php:96 msgid "Consumer key:" msgstr "" -#: lib/yammerapikeyform.php:94 +#. TRANS: Field label for a Yammer consumer secret. +#: lib/yammerapikeyform.php:100 msgid "Consumer secret:" msgstr "" -#: lib/yammerapikeyform.php:98 +#. TRANS: Button text for saving a Yammer API registration. +#: lib/yammerapikeyform.php:105 +msgctxt "BUTTON" msgid "Save" msgstr "" -#: lib/yammerapikeyform.php:98 -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#: lib/yammerapikeyform.php:107 +msgid "Save the entered consumer key and consumer secret." msgstr "" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index da754cdd52..c4dd18b35a 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,24 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Kevreañ da Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Enporzh Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -40,141 +46,237 @@ msgstr "" "bezañ en amzer da zont evit an enporzhiadennoù sevenet gant ar verourien " "aotreet eus tu YAMMER." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Ehanet adalek ar banell verañ." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Enporzh Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Enporzh Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Prizacha :" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Direizh eo URL an avatar %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Dibosupl eo adtapout an avatar adalek %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" +msgstr "Digeriñ prenestr emzisklêriañ Yammer" + +#. TRANS: Button title for starting Yammer authentication. +msgid "Request authorization to connect to a Yammer account." msgstr "" -msgid "Request authorization to connect to Yammer account" -msgstr "" - +#. TRANS: Button text for starting changing a Yammer API key. +msgctxt "BUTTON" msgid "Change API key" msgstr "" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Deraouekaat" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Enporzhiadenn ebet o treiñ" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Loc'het ar gevreadenn d'ar servijer Yammer" +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "O c'hortoz an aotre..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Kevreet." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Enporzhiañ ar c'hontoù implijer" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Oc'h enporzhiañ %d implijer..." msgstr[1] "Oc'h enporzhiañ %d implijer..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "Enporzhiet %d implijer." msgstr[1] "Enporzhiet %d implijer." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Enporzhiañ strolladoù implijer" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Oc'h enporzhiañ %d strollad..." msgstr[1] "Oc'h enporzhiañ %d strollad..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "Enporzhiet %d strollad..." msgstr[1] "Enporzhiet %d strollad..." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "O prientiñ enporzh ar c'hemennoù foran" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "O prientiñ %d kemenn..." msgstr[1] "O prientiñ %d kemenn..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "Prientet %d kemenn." msgstr[1] "Prientet %d kemenn." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Enporzh kemennoù foran" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Oc'h enporzhiañ %d kemenn..." msgstr[1] "Oc'h enporzhiañ %d kemenn..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "Enporzhiet %d kemenn." msgstr[1] "Enporzhiet %d kemenn." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Graet" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Enporzh kaset da benn vat !" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Stad an enporzh" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "O c'hortoz..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Adderaouekaat stad an enporzh" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Ober un tamm ehan gant an enporzh" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "C'hoarvezet eo ar fazi \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Ehanet" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Kenderc'hel" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Nullañ an enporzh" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -182,21 +284,34 @@ msgstr "" "Heuliañ al liamm-mañ da gadarnaat an aotre war Yammer ; mar bez ret e vo " "goulennet ouzhoc'h kevreañ :" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Digeriñ prenestr emzisklêriañ Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Eilit a-is ar c'hod gwiriañ bet roet deoc'h :" +#. TRANS: Field label. msgid "Verification code:" msgstr "Kod gwiriekaat :" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Kenderc'hel" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Enrollañ ar c'hod ha kregiñ da enporzhiañ" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "Enrolladenn an API Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -209,21 +324,30 @@ msgstr "" "mañ evit enrollañ an arload war Yammer ; mar bez ret e vo goulennet ouzhoc'h " "kevreañ." +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Digeriñ furmskrid enrollañ Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Eilit er furmskrid a-is an alc'hwez hag ar sekred implijer bet roet deoc'h :" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Alc'hwez implijer :" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Sekred an implijer :" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Enrollañ an alc'hwezioù implijer-mañ" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index 0bb00432b3..ac2b815511 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -11,24 +11,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Verbinden mit Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Yammer-Import" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -41,141 +47,239 @@ msgstr "" "Importe unterstützt werden, die von beglaubigten Administratoren auf Seiten " "von Yammer getätigt werden." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Angehalten über das Admin-Panel." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Yammer-Import" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Yammer-Import" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Expertise:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ungültige Avatar-URL %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Kann Avatar nicht von %s holen." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Starte Authentifikation" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Beantrage Authentifizierung, um mit Yammerkonto zu verbinden" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Ändere API-Schlüssel" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Initialisieren" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Zur Zeit kein Import" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Yammer-Server-Verbindung initiiert …" +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Authentifizierung wird abgewartet …" +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Verbunden." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Benutzerkonten importieren" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Importiere %d Benutzer …" msgstr[1] "Importiere %d Benutzer …" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "Importierte %d Benutzer." msgstr[1] "Importierte %d Benutzer." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Importiere Benutzergruppen" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Importiere %d Gruppe …" msgstr[1] "Importiere %d Gruppen …" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "Importierte %d Gruppe." msgstr[1] "Importierte %d Gruppen." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Bereite öffentliche Nachrichten für Import vor" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Bereite %d Nachricht vor …" msgstr[1] "Bereite %d Nachrichten vor …" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "%d Nachricht vorbereitet." msgstr[1] "%d Nachrichten vorbereitet." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Importiere öffentliche Nachrichten" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Importiere %d Nachricht …" msgstr[1] "Importiere %d Nachrichten …" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "Importierte %d Nachricht." msgstr[1] "Importierte %d Nachrichten." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Erledigt" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Import abgeschlossen!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Import-Status" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Warten..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Import-Status zurücksetzen" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Import pausieren" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Fehler \"%s\" ist aufgetreten" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Angehalten" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Fortfahren" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Import abbrechen" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -183,21 +287,34 @@ msgstr "" "Folge diesem Link, um die Authentifikation bei Yammer zu bestätigen; " "nötigenfalls wirst du aufgefordert, dich anzumelden:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Öffne Yammer-Authentifizierungsfenster" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Kopiere den untenstehenden Bestätigungscode" +#. TRANS: Field label. msgid "Verification code:" msgstr "Bestätigunts-Code:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Fortfahren" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Speichere Code und starte Import" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "Yammer-API-Registrierung" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -210,21 +327,30 @@ msgstr "" "Sie diesem Link, um diese Applikation bei Yammer zu registrieren; Sie werden " "gegebenenfalls aufgefordert, sich anzumelden:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Öffne Yammer-Anwendungsregistrierungsformular" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Kopiere den Verbraucherschlüssel und das Geheimnis, beide untenstehend:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Verbraucherschlüssel:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Verbrauchergeheimnis:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Speichern" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Speichere diese Verbraucherschlüssel" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 246faa2ae8..cafc4266e9 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Connexion à Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Import Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -39,141 +45,239 @@ msgstr "" "le futur pour les imports réalisés par les administrateurs autorisés du côté " "de Yammer." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Mis en pause depuis le panneau d’administration" +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Import Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Import Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Expertise :" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "URL d’avatar invalide : %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Impossible de récupérer l’avatar depuis « %s »." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Démarrer l’identification" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Demander l’autorisation de se connecter à un compte Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Changer la clé de l’API" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Initialiser" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Aucun import en cours d’exécution" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Connexion au serveur Yammer initiée..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "En attente d’autorisation..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Connecté." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Importer des comptes utilisateur" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Import de %d utilisateur..." msgstr[1] "Import de %d utilisateurs..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "%d utilisateur importé." msgstr[1] "%d utilisateurs importés." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Importer des groupes utilisateur" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Import de %d groupe..." msgstr[1] "Import de %d groupes..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "%d groupe importé." msgstr[1] "%d groupes importés." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Préparation de l’import d’avis publiques" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Préparation de %d avis..." msgstr[1] "Préparation de %d avis..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "%d avis prépara." msgstr[1] "%d avis préparés." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Import d’avis publiques" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Import de %d avis..." msgstr[1] "Import de %d avis..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "%d avis importé." msgstr[1] "%d avis importés." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Fait" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "L’import est terminé !" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "État de l’import" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Attente..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Réinitialiser l’état de l’import" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Mettre l’import en pause" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "L’erreur « %s » est survenue" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "En pause" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Continuer" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Abandonner l’import" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -181,21 +285,34 @@ msgstr "" "Suivez ce lien pour confirmer l’autorisation sur Yammer ; il vous sera " "demandé de vous identifier si nécessaire :" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Ouvrir la fenêtre d’identification Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Copiez ci-dessous le code de vérification qui vous est donné :" +#. TRANS: Field label. msgid "Verification code:" msgstr "Code de vérification :" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuer" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Enregistrer le code et commencer l’import" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "Enregistrement de l’API Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -208,22 +325,31 @@ msgstr "" "propre réseau. Suivez ce lien pour enregistrer l’application sur Yammer ; si " "cela est nécessaire, il vous sera demandé de vous identifier :" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Ouvrir le formulaire d’enregistrement de l’application Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Copiez dans le formulaire ci-dessous la clé et le secret utilisateur qui " "vous sont donnés :" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Clé de l'utilisateur :" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Secret de l'utilisateur :" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sauvegarder" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Enregistrer ces clés utilisateur" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index f5126b42cd..fd6a5dd29f 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Importación Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -34,161 +40,268 @@ msgid "" "verified administrators on the Yammer side." msgstr "" +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "En pausa desde o panel de administración." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" +msgstr "Importación Yammer" + +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Importación Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." msgstr "" +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "" +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "" +#. TRANS: Button text for starting Yammer authentication. +msgctxt "BUTTON" msgid "Start authentication" msgstr "" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +msgid "Request authorization to connect to a Yammer account." msgstr "" +#. TRANS: Button text for starting changing a Yammer API key. +msgctxt "BUTTON" msgid "Change API key" msgstr "" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Iniciar" +#. TRANS: "In progress" description. msgid "No import running" msgstr "" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "" +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Agardando a autorización..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Conectado." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" msgstr[1] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" msgstr[1] "" +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" msgstr[1] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" msgstr[1] "" +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" msgstr[1] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" msgstr[1] "" +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" msgstr[1] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" msgstr[1] "" +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Feito" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Completouse a importación!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Estado da importación" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Agarde..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Reiniciar o estado da importación" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Pausar a importación" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Atopouse o erro \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "En pausa" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Continuar" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Abortar a importación" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "" +#. TRANS: Field label. msgid "Verification code:" msgstr "Código de verificación:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuar" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +msgid "Save the verification code and begin import." msgstr "" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -196,20 +309,28 @@ msgid "" "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Clave do consumidor:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Pregunta secreta do consumidor:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Gardar" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +msgid "Save the entered consumer key and consumer secret." msgstr "" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index cb6143dca0..10aaa2926d 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Connecter a Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Importation de Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -39,141 +45,239 @@ msgstr "" "supportate pro importationes facite per administratores verificate al latere " "de Yammer." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Pausate ab le pannello admin." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Importation de Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Importation de Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Expertise:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "URL de avatar %s invalide." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Incapace de obtener avatar ab %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Comenciar authentication" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Requestar autorisation de connecter al conto Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Cambiar clave API" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Initialisar" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Nulle importation in curso" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Connexion al servitor Yammer initiate..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Attende autorisation..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Connectite." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Importar contos de usator" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Importa %d usator..." msgstr[1] "Importa %d usatores..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "%d usator importate." msgstr[1] "%d usatores importate." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Importar gruppos de usatores" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Importa %d gruppo..." msgstr[1] "Importa %d gruppos..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "%d gruppo importate." msgstr[1] "%d gruppos importate." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Preparar notas public pro importation" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Prepara %d nota..." msgstr[1] "Prepara %d notas..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "%d nota preparate." msgstr[1] "%d notas preparate." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Importar notas public" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Importa %d nota..." msgstr[1] "Importa %d notas..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "%d nota importate." msgstr[1] "%d notas importate." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Finite" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Le importation es complete!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Stato de importation" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Attende..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Reinitialisar stato de importation" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Pausar importation" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Incontrava error \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Pausate" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Continuar" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Abortar importation" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -181,21 +285,34 @@ msgstr "" "Seque iste ligamine pro confirmar autorisation a Yammer; tu essera demandate " "de aperir session si necessari:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Aperir fenestra de authentication a Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Copia hic infra le codice de verification que tu recipe:" +#. TRANS: Field label. msgid "Verification code:" msgstr "Codice de verification:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuar" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Salveguardar codice e comenciar importation" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "Registration in API de Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -208,22 +325,31 @@ msgstr "" "pro registrar le application a Yammer; tu essera demandate de aperir session " "si necessari:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Aperir formulario de registration del application Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Copia le clave e secreto de consumitor que tu recipe in le formulario hic " "infra:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Clave de consumitor:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Secreto de consumitor:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Salveguardar iste claves de consumitor" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 58faeb18f2..e5ab523391 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Поврзување Ñо Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Увоз од Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -38,141 +44,239 @@ msgstr "" "членÑтва во групи. Ваквите префрлања може да Ñе поддржани во иднина, и тие " "би ги вршеле овлаÑтени админиÑтратори на Yammer." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Паузирано од админиÑтраторÑката табла." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Увоз од Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Увоз од Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "СтручноÑÑ‚:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ðеважечка URL-адреÑа на аватарот: %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Ðе можев да го преземам аватарот од %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Започни проверка" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Барај овлаÑтување за поврзување Ñо Ñметката на Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Промени API-клуч" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Започни" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Увозот не е во тек" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Започнав Ñо поврзувањето Ñо опÑлужувачот на Yammer..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Чекам на овлаÑтување..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Поврзано." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Увези кориÑнички Ñметки" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Увезувам %d кориÑник..." msgstr[1] "Увезувам %d кориÑници..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "Увезов %d кориÑник." msgstr[1] "Увезов %d кориÑници." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Увези кориÑнички групи" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Увезувам %d група..." msgstr[1] "Увезувам %d групи..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "Увезов %d група." msgstr[1] "Увезов %d групи." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Подготви јавни извеÑтувања за увоз" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Подготвувам %d извеÑтување..." msgstr[1] "Подготвувам %d извеÑтувања..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "Подготвив %d извеÑтување." msgstr[1] "Подготвив %d извеÑтувања." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Увези јавни извеÑтувања" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Увезувам %d извеÑтување..." msgstr[1] "Увезувам %d извеÑтувања..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "Увезов %d извеÑтување..." msgstr[1] "Увезов %d извеÑтувања..." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Готово" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Увозот заврши!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Увези ÑтатуÑ" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Чекам..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Врати оÑновна ÑоÑтојба на увозот" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Паузирај увоз" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Ðаидов на грешка „%s“" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Паузирано" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Продолжи" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Прекини увоз" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -180,21 +284,34 @@ msgstr "" "ПроÑледете ја врÑкава за да го потврдите овлаÑтувањето на Ñтраницата на " "Yammer. Ðко е потребно, ќе Ви биде побарано да Ñе најавите:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Отвори прозорец за потврда на Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "ИÑкопирајте го долунаведениот потврден код:" +#. TRANS: Field label. msgid "Verification code:" msgstr "Потврден код:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продолжи" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Зачувај код и почни Ñо увоз" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "РегиÑтрација на API за Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -207,22 +324,31 @@ msgstr "" "врÑката за да го региÑтрирате програмот на Yammer. Ðко е потребно, ќе Ви " "биде побарано да Ñе најавите:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Отвори образец за региÑтрација на програм на Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "ИÑкопирајте ги потрошувачкиот клуч и тајната што Ñе наведени во образецот " "подолу:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Потрошувачки клуч:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Потрошувачка тајна:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Зачувај ги овие потрошувачки клучеви" diff --git a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po index debf016f74..675d700957 100644 --- a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Import dari Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -34,153 +40,263 @@ msgid "" "verified administrators on the Yammer side." msgstr "" +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Berhenti dari panel pentadbir." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Import dari Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Import dari Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Kepakaran:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "URL avatar %s tidak sah." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Avatar tidak dapat diambil dari %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Mulakan pengesahan" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Minta kebenaran untuk bersambung dengan akaun Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Tukar kunci API" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Mulakan" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Proses import tidak berjalan" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Sambungan pelayan Yammer dimulakan..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Menunggu kebenaran..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Bersambung." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Import akaun pengguna" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Siap" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Proses import selesai!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Menunggu..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Hentikan import" +#. TRANS: Error message. %s are the error details. #, php-format -msgid "Encountered error \"%s\"" +msgid "Encountered error \"%s\"." msgstr "" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Terhenti" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Sambung" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "" +#. TRANS: Field label. msgid "Verification code:" msgstr "" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Sambung" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +msgid "Save the verification code and begin import." msgstr "" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -188,20 +304,29 @@ msgid "" "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Kunci pengguna:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Rahsia pengguna:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Simpan" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Simpan kunci pengguna ini" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 57402fb8de..8e0023aba7 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,24 +10,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Verbinden met Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Yammerimport" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -40,141 +46,239 @@ msgstr "" "mogelijk voor imports die door bevestigde beheerders in Yammer worden " "uitgevoerd." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Gepauzeerd vanuit het beheerpaneel." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Yammerimport" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Yammerimport" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Expertise:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." -msgstr "%s is een ongeldige URL voor avatar." +msgstr "Ongeldige avatar-URL %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." -msgstr "Het was niet mogelijk de avatar op te halen van %s." +msgstr "Het was niet mogelijk om de avatar op te halen van %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Authenticatie starten" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Autorisatie verzoeken om te verbinden met Yammergebruiker" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "API-sleutel wijzigen" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Initialiseren" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Er loopt geen import" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Er is verbinding gemaakt met de Yammerserver..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Wachten op autorisatie..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Verbonden." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Gebruikers importeren" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Bezig met het importeren van %d gebruiker..." msgstr[1] "Bezig met het importeren van %d gebruikers..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "%d gebruiker geïmporteerd." msgstr[1] "%d gebruikers geïmporteerd." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Gebruikersgroepen importeren" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Bezig met het importeren van %d gebruikersgroep..." msgstr[1] "Bezig met het importeren van %d gebruikersgroepen..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "%d gebruikersgroep geïmporteerd." msgstr[1] "%d gebruikersgroepen geïmporteerd." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Publieke mededelingen voorbereiden op import" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Bezig met het voorbereiden van %d mededeling..." msgstr[1] "Bezig met het voorbereiden van %d mededelingen..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "%d mededeling voorbereid." msgstr[1] "%d mededelingen voorbereid." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Publieke mededelingen importeren" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Bezig met het importeren van %d mededeling..." msgstr[1] "Bezig met het importeren van %d mededelingen..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "%d mededeling geïmporteerd." msgstr[1] "%d mededelingen geïmporteerd." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Afgerond" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Het importeren is voltooid!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Importstatus" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Even geduld alstublieft..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Importstatus herstellen" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Import pauzeren" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Er is een fout opgetreden: \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Gepauzeerd" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Doorgaan" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Import afbreken" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -182,21 +286,34 @@ msgstr "" "Volg deze verwijzing om de autorisatie bij Yammer te bevestigen. Als u moet " "aanmelden wordt daarom gevraagd:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Authenticatievenster voor Yammer openen" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Kopieer de verificatiecode die u hebt gekregen hieronder:" +#. TRANS: Field label. msgid "Verification code:" msgstr "Verificatiecode:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Doorgaan" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Code opslaan en importeren" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "API-registratie voor Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -209,22 +326,31 @@ msgstr "" "onderstaande verwijzing om de applicatie bij Yammer te registreren. Als het " "nodig is om aan te melden, wordt u dat gevraagd:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Applicatieregistratieformulier voor Yammer openen" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Kopieer de gebruikerssleutel en het gebruikersgeheim dat u hebt gekregen in " "het formulier hieronder:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Gebruikerssleutel:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Gebruikersgeheim:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Deze gebruikerssleutels opslaan" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index d192c0c029..6dba55160d 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,25 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\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" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -36,53 +42,118 @@ msgid "" "verified administrators on the Yammer side." msgstr "" +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "" +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "" +#. TRANS: Menu item for Yammer import. +msgctxt "MENU" msgid "Yammer" msgstr "" +#. TRANS: Menu item title for Yammer import. +msgid "Yammer import module." +msgstr "" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "" +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "" +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Ðачало проверки подлинноÑти" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +msgid "Request authorization to connect to a Yammer account." msgstr "" +#. TRANS: Button text for starting changing a Yammer API key. +msgctxt "BUTTON" msgid "Change API key" msgstr "" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "ИнициализациÑ" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Импорт не запущен" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "" +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Ожидание авторизации…" +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "ПодÑоединено." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Импорт учётных запиÑей пользователей" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." @@ -90,6 +161,8 @@ msgstr[0] "Импорт %d пользователÑ…" msgstr[1] "Импорт %d пользователей…" msgstr[2] "Импорт %d пользователей…" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." @@ -97,9 +170,12 @@ msgstr[0] "Импортирован %d пользователь." msgstr[1] "Импортировано %d пользователÑ." msgstr[2] "Импортировано %d пользователей." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Импорт групп пользователей" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, fuzzy, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." @@ -107,6 +183,8 @@ msgstr[0] "Импорт %d группы…" msgstr[1] "Импорт %d группы…" msgstr[2] "Импорт %d группы…" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." @@ -114,9 +192,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." @@ -124,6 +205,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." @@ -131,9 +214,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." @@ -141,6 +227,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." @@ -148,57 +236,82 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Готово" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Импорт завершён!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð¿Ñ€Ð¾Ñ†ÐµÑÑа импорта" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Ожидание…" +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "ПриоÑтановить импорт" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Обнаружена ошибка «%s»" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "ПриоÑтановлено" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Продолжить" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Прервать импорт" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "" +#. TRANS: Field label. msgid "Verification code:" msgstr "Код подтверждениÑ:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продолжить" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Сохранить код и начать импорт" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -206,20 +319,28 @@ msgid "" "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +msgid "Save the entered consumer key and consumer secret." msgstr "" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index 5388f6b4da..5f429876e8 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:07+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Umugnay sa Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Pang-angkat ng Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -39,141 +45,239 @@ msgstr "" "maaaring tangkilikin ito sa hinaharap para sa mga pag-aangkat na ginagawa ng " "napatunayang mga tagapangasiwa na nasa gawi ng Yammer." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Pansamantalang itinigil mula sa inampalan ng tagapangasiwa." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Pang-angkat ng Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Pang-angkat ng Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "Kadalubhasaan:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Hindi katanggap-tanggap na URL ng abatar ang %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Hindi nagawang damputin ang huwaran mula sa %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Simulan ang pagpapatotoo" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Humiling ng pahintulot upang makaugnay sa akawnt ng Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Baguhin ang susi ng API" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "Magpasimula" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Walang tumatakbong pag-aangkat" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Pinasimulan ang pag-ugnay sa tagapaghain ng Yammer..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Naghihintay ng kapahintulutan..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Naiugnay na." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Angkatin ang mga akawnt ng tagagamit" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "Inaangkat ang tagagamit ng %d... " msgstr[1] "Inaangkat ang mga tagagamit ng %d..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "Naangkat na tagagamit ng %d." msgstr[1] "Naangkat na mga tagagamit ng %d." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Angkatin ang mga pangkat ng tagagamit" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "Inaangkat ang pangkat ng %d... " msgstr[1] "Inaangkat ang mga pangkat ng %d..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "Naangkat na pangkat ng %d." msgstr[1] "Naangkat na mga pangkat ng %d." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Ihanda ang aangkating mga pabatid na pangmadla" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "Inihahanda ang pabatid na %d..." msgstr[1] "Inihahanda ang mga pabatid na %d..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "Naihanda na ang pabatid na %d..." msgstr[1] "Naihanda na ang mga pabatid na %d..." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Angkatin ang mga pabatid na pangmadla" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "Inaangkat ang pabatid na %d... " msgstr[1] "Inaangkat ang mga pabatid na %d..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "Naangkat na ang pabatid na %d" msgstr[1] "Naangkat na ang mga pabatid na %d." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Nagawa na" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Buo na ang pag-aangkat!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Katayuan ng pag-aangkat" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Naghihintay..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "Muling itakda ang katayuan ng pag-aangkat" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Pansamantalang itigil ang pag-aangkat" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Nakatagpo ng kamaliang \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Pansamantalang inihinto" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Magpatuloy" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Pigilin ang pag-angkat" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -181,21 +285,34 @@ msgstr "" "Sundan ang kawing na ito upang tiyakin ang pahintulot sa Yammer; ikay ay " "uudyuking lumagdang papasok kung kailangan:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Buksan ang bintana ng pagpapatotoo ng Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Kopyahin ang kodigo ng pagpapatotoo na ibinigay sa iyo sa ibaba:" +#. TRANS: Field label. msgid "Verification code:" msgstr "Kodigo ng pagpapatotoo:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Magpatuloy" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Sagipin ang kodigo at simulan ang pag-aangkat" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "Pagpapatala sa API ng Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -208,22 +325,31 @@ msgstr "" "iyong lambatan. Sundan ang kawing na ito upang ipatala ang aplikasyon sa " "Yammer; uudyukin kang lumagdang papasok kung kinakailangan:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Buksan ang pormularyo ng pagpapatala ng aplikasyon ng Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Kopyahin ang susi at lihim ng tagaubos na ibinigay sa iyo papasok sa " "pormularyong nasa ibaba:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Susi ng tagaubos:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Lihim ng tagaubos:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Sagipin" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Sagipin ang mga susing ito ng tagaubos" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 597a413d91..566d10386c 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,24 +9,30 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:08+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Yammer'a BaÄŸlan" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Yammer İçeri Aktar" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -34,153 +40,262 @@ msgid "" "verified administrators on the Yammer side." msgstr "" +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Yönetim panelinden durduruldu." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Yammer içeri aktarma" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Yammer içeri aktarma" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Geçersiz kullanıcı resmi baÄŸlantısı %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "" +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Kimlik doÄŸrulamaya baÅŸla" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +msgid "Request authorization to connect to a Yammer account." msgstr "" +#. TRANS: Button text for starting changing a Yammer API key. +msgctxt "BUTTON" msgid "Change API key" msgstr "" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "İlk kullanıma hazırla" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Çalışan içeri aktarma yok" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "BaÅŸlatılan Yammer sunucu baÄŸlantısı..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Yetkilendirme bekleniyor..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "BaÄŸlandı." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Kullanıcı hesaplarını içeri aktar" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." msgstr[0] "" +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Kullanıcı gruplarını içeri aktar" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." msgstr[0] "" +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Genel durum mesajlarını içeri aktarmak için hazırla" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." msgstr[0] "" +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Genel durum mesajlarını içeri aktar" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." msgstr[0] "" +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." msgstr[0] "" +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Tamamlandı" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "İçeri aktarma tamamlandı!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "İçeri aktarma durumu" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "Bekleniyor..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "İçeri aktarma durumunu sıfırla" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "İçeri aktarmayı duraklat" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "Karşılaşılan hata \"%s\"" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Duraklatıldı" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Devam et" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "İçeri aktarmayı iptal et" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" msgstr "" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Open Yammer kimlik doÄŸrulama penceresi" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "AÅŸağıda verilen doÄŸrulama kodunu kopyalayın:" +#. TRANS: Field label. msgid "Verification code:" msgstr "DoÄŸrulama kodu:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Devam et" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Kodu kaydet ve içeri aktarmaya baÅŸla" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -188,20 +303,28 @@ msgid "" "register the app at Yammer; you will be prompted to log in if necessary:" msgstr "" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +msgid "Save the entered consumer key and consumer secret." msgstr "" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index c1bf18f014..a07b21ba71 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,25 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:58:08+0000\n" +"POT-Creation-Date: 2011-06-19 13:18+0000\n" +"PO-Revision-Date: 2011-06-19 13:18:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" +"X-Generator: MediaWiki 1.19alpha (r90375); Translate extension (2011-06-02)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\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" +#. TRANS: Page title for Yammer administration panel. +#. TRANS: Form legend. +#. TRANS: Field label for a Yammer import connect step. +#. TRANS: Form legend. msgid "Connect to Yammer" msgstr "Ð—â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Yammer" +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer Import" msgstr "Імпорт з Yammer" +#. TRANS: Instructions for Yammer import administration panel. msgid "" "This Yammer import tool is still undergoing testing, and is incomplete in " "some areas. Currently user subscriptions and group memberships are not " @@ -40,53 +46,122 @@ msgstr "" "Ñайту Yammer піде нам на зуÑтріч Ñ– тоді роботу над цим додатком буде " "завершено." +#. TRANS: Error message about an import job being paused from the admin panel. msgid "Paused from admin panel." msgstr "Призупинено з адмініÑтраторÑької панелі." +#. TRANS: Client exception thrown when encountering an unhandled sub action. +msgid "Invalid POST" +msgstr "" + +#. TRANS: Page title for Yammer import administration panel. msgid "Yammer import" msgstr "Імпорт з Yammer" +#. TRANS: Menu item for Yammer import. +#, fuzzy +msgctxt "MENU" msgid "Yammer" msgstr "Yammer" +#. TRANS: Menu item title for Yammer import. +#, fuzzy +msgid "Yammer import module." +msgstr "Імпорт з Yammer" + +#. TRANS: Exception thrown when a non-user item type is used, but expected. +msgid "Wrong item type sent to Yammer user import processing." +msgstr "" + +#. TRANS: Used as a prefix for the Yammer expertise field contents. msgid "Expertise:" msgstr "ЕкÑпертиза:" +#. TRANS: Exception thrown when a non-group item type is used, but expected. +msgid "Wrong item type sent to Yammer group import processing." +msgstr "" + +#. TRANS: Exception thrown when a non-message item type is used, but expected. +msgid "Wrong item type sent to Yammer message import processing." +msgstr "" + +#. TRANS: Server exception thrown when an avatar URL is invalid. +#. TRANS: %s is the invalid avatar URL. #, php-format msgid "Invalid avatar URL %s." msgstr "Ðевірна URL-адреÑа аватари %s." +#. TRANS: Server exception thrown when an avatar could not be fetched. +#. TRANS: %s is the failed avatar URL. #, php-format msgid "Unable to fetch avatar from %s." msgstr "Ðеможливо завантажити аватару з %s." +#. TRANS: Button text for starting Yammer authentication. +#, fuzzy +msgctxt "BUTTON" msgid "Start authentication" msgstr "Початок автентифікації" -msgid "Request authorization to connect to Yammer account" +#. TRANS: Button title for starting Yammer authentication. +#, fuzzy +msgid "Request authorization to connect to a Yammer account." msgstr "Запит дозволу на Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ Yammer" +#. TRANS: Button text for starting changing a Yammer API key. +#, fuzzy +msgctxt "BUTTON" msgid "Change API key" msgstr "Змінити API-ключ" +#. TRANS: Server exception thrown if a Yammer authentication request is already present. +msgid "Cannot request Yammer auth; already there!" +msgstr "" + +#. TRANS: Server exception thrown when requesting a Yammer authentication URL while in an incorrect state. +msgid "Cannot get Yammer auth URL when not in requesting-auth state!" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system gives an error. +#. TRANS: %1$s is an HTTP error code, %2$s is the error message body. +#, php-format +msgid "Yammer API returned HTTP code %1$s: %2$s" +msgstr "" + +#. TRANS: Exeption thrown when an external Yammer system an invalid JSON response. +msgid "Invalid JSON response from Yammer API." +msgstr "" + +#. TRANS: Exeption thrown when a trust relationship has already been established. +msgid "Requesting a token, but already set up with a token." +msgstr "" + +#. TRANS: Field label for a Yammer import initialise step. msgid "Initialize" msgstr "ІніціалізаціÑ" +#. TRANS: "In progress" description. msgid "No import running" msgstr "Імпорт не працює" +#. TRANS: "Complete" description for initialize state. msgid "Initiated Yammer server connection..." msgstr "Розпочато Ð·â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· Ñервером Yammer..." +#. TRANS: "In progress" description. msgid "Awaiting authorization..." msgstr "Чекаємо дозволу..." +#. TRANS: "Complete" description for connect state. msgid "Connected." msgstr "Під’єднано." +#. TRANS: Field label for a Yammer user import users step. msgid "Import user accounts" msgstr "Імпорт облікових запиÑів кориÑтувачів" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of users to be imported. #, php-format msgid "Importing %d user..." msgid_plural "Importing %d users..." @@ -94,6 +169,8 @@ msgstr[0] "Імпорт %d кориÑтувача..." msgstr[1] "Імпорт %d кориÑтувачів..." msgstr[2] "Імпорт %d кориÑтувачів..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of users imported. #, php-format msgid "Imported %d user." msgid_plural "Imported %d users." @@ -101,9 +178,12 @@ msgstr[0] "Імпортовано %d кориÑтувача." msgstr[1] "Імпортовано %d кориÑтувачів." msgstr[2] "Імпортовано %d кориÑтувачів." +#. TRANS: Field label for a Yammer group import step. msgid "Import user groups" msgstr "Імпорт Ñпільнот" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of groups to be imported. #, php-format msgid "Importing %d group..." msgid_plural "Importing %d groups..." @@ -111,6 +191,8 @@ msgstr[0] "Імпорт %d Ñпільноти..." msgstr[1] "Імпорт %d Ñпільнот..." msgstr[2] "Імпорт %d Ñпільнот..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of groups imported. #, php-format msgid "Imported %d group." msgid_plural "Imported %d groups." @@ -118,9 +200,12 @@ msgstr[0] "Імпортовано %d Ñпільноту." msgstr[1] "Імпортовано %d Ñпільнот." msgstr[2] "Імпортовано %d Ñпільнот." +#. TRANS: Field label for a Yammer import prepare notices step. msgid "Prepare public notices for import" msgstr "Підготовка до імпорту Ñтрічки допиÑів" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be prepared for import. #, php-format msgid "Preparing %d notice..." msgid_plural "Preparing %d notices..." @@ -128,6 +213,8 @@ msgstr[0] "Підготовка %d допиÑу..." msgstr[1] "Підготовка %d допиÑів..." msgstr[2] "Підготовка %d допиÑів..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices prepared for import. #, php-format msgid "Prepared %d notice." msgid_plural "Prepared %d notices." @@ -135,9 +222,12 @@ msgstr[0] "Готовий %d допиÑ." msgstr[1] "Готово %d допиÑів." msgstr[2] "Готово %d допиÑів." +#. TRANS: Field label for a Yammer import notices step. msgid "Import public notices" msgstr "Імпорт Ñтрічки допиÑів" +#. TRANS: "In progress" description. +#. TRANS: %d is the number of notices to be imported. #, php-format msgid "Importing %d notice..." msgid_plural "Importing %d notices..." @@ -145,6 +235,8 @@ msgstr[0] "Імпорт %d допиÑу..." msgstr[1] "Імпорт %d допиÑів..." msgstr[2] "Імпорт %d допиÑів..." +#. TRANS: "Complete" description for step. +#. TRANS: %d is the number of notices imported. #, php-format msgid "Imported %d notice." msgid_plural "Imported %d notices." @@ -152,37 +244,49 @@ msgstr[0] "Імпортовано %d допиÑ." msgstr[1] "Імпортовано %d допиÑів." msgstr[2] "Імпортовано %d допиÑів." +#. TRANS: Field label for a Yammer import done step. msgid "Done" msgstr "Виконано" +#. TRANS: "In progress" description for done step. +#. TRANS: "Complete" description for done step. msgid "Import is complete!" msgstr "Імпорт завершено!" +#. TRANS: Fieldset legend. msgid "Import status" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð¿Ñ€Ð¾Ñ†ÐµÑу імпорту" +#. TRANS: Progress bar status. msgid "Waiting..." msgstr "ОчікуваннÑ..." +#. TRANS: Button text for resetting the import state. msgid "Reset import state" msgstr "ПерезапуÑтити імпорт" +#. TRANS: Button text for pausing an import. msgid "Pause import" msgstr "Призупинити імпорт" -#, php-format -msgid "Encountered error \"%s\"" +#. TRANS: Error message. %s are the error details. +#, fuzzy, php-format +msgid "Encountered error \"%s\"." msgstr "ВиÑвлено помилку «%s»" +#. TRANS: Fieldset legend for a paused import. msgid "Paused" msgstr "Призупинено" +#. TRANS: Button text for continuing a paused import. msgid "Continue" msgstr "Продовжити" +#. TRANS: Button text for aborting a paused import. msgid "Abort import" msgstr "Перервати імпорт" +#. TRANS: Form instructions. msgid "" "Follow this link to confirm authorization at Yammer; you will be prompted to " "log in if necessary:" @@ -190,21 +294,34 @@ msgstr "" "Перейдіть за цим поÑиланнÑм Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð´Ð¾Ð·Ð²Ð¾Ð»Ñƒ від Yammer; вам буде " "запропоновано увійти до ÑиÑтеми, Ñкщо це необхідно:" +#. TRANS: Link description for a link in an external Yammer system. msgid "Open Yammer authentication window" msgstr "Відкрити вікно автентифікації Yammer" +#. TRANS: Form instructions. msgid "Copy the verification code you are given below:" msgstr "Скопіюйте наданий вам код Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð´Ð¾ Ð²Ñ–ÐºÐ¾Ð½Ñ†Ñ Ð½Ð¸Ð¶Ñ‡Ðµ:" +#. TRANS: Field label. msgid "Verification code:" msgstr "Код підтвердженнÑ:" -msgid "Save code and begin import" +#. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продовжити" + +#. TRANS: Button title for saving Yammer authorisation data and starting Yammer import. +#, fuzzy +msgid "Save the verification code and begin import." msgstr "Зберегти код Ñ– почати імпорт" +#. TRANS: Form legend for adding details to connect to a remote Yammer API. msgid "Yammer API registration" msgstr "РеєÑÑ‚Ñ€Ð°Ñ†Ñ–Ñ API Yammer" +#. TRANS: Explanation of what needs to be done to connect to a Yammer network. msgid "" "Before we can connect to your Yammer network, you will need to register the " "importer as an application authorized to pull data on your behalf. This " @@ -217,22 +334,31 @@ msgstr "" "мережі. Перейдіть за цим поÑиланнÑм, щоб зареєÑтрувати додаток на Yammer; " "вам буде запропоновано увійти до ÑиÑтеми, Ñкщо це необхідно:" +#. TRANS: Link description to a Yammer application registration form. msgid "Open Yammer application registration form" msgstr "Відкрити реєÑтраційну форму додатку Ð´Ð»Ñ Yammer" +#. TRANS: Instructions. msgid "Copy the consumer key and secret you are given into the form below:" msgstr "" "Скопіюйте ключ Ñпоживача та Ñекретний код, котрі вам було надано, до Ð²Ñ–ÐºÐ¾Ð½Ñ†Ñ " "нижче:" +#. TRANS: Field label for a Yammer consumer key. msgid "Consumer key:" msgstr "Ключ Ñпоживача:" +#. TRANS: Field label for a Yammer consumer secret. msgid "Consumer secret:" msgstr "Секретний код:" +#. TRANS: Button text for saving a Yammer API registration. +#, fuzzy +msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" -msgid "Save these consumer keys" +#. TRANS: Button title for saving a Yammer API registration. +#, fuzzy +msgid "Save the entered consumer key and consumer secret." msgstr "Зберегти ключі Ñпоживача" From ab98458399c28f04614de0e8474c1864ef4cb495 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 01:11:08 -0400 Subject: [PATCH 20/31] push regex pattern for UUID to that class --- lib/uuid.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/uuid.php b/lib/uuid.php index 93153504f2..386d0e2121 100644 --- a/lib/uuid.php +++ b/lib/uuid.php @@ -47,6 +47,7 @@ if (!defined('STATUSNET')) { class UUID { + const REGEX = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'; protected $str = null; /** From cd7d0eae4a8d46bb194dc49c7b4241527c032823 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 01:11:35 -0400 Subject: [PATCH 21/31] First coded version of blog plugin A basic blog plugin. Allows posting open-ended HTML with a title. Not yet tested (even run). --- plugins/Blog/BlogEntry.php | 233 +++++++++++++++++++++++++++++ plugins/Blog/BlogPlugin.php | 210 ++++++++++++++++++++++++++ plugins/Blog/blogentryform.php | 133 ++++++++++++++++ plugins/Blog/blogentrylistitem.php | 79 ++++++++++ plugins/Blog/newblogentry.php | 138 +++++++++++++++++ plugins/Blog/showblogentry.php | 86 +++++++++++ 6 files changed, 879 insertions(+) create mode 100644 plugins/Blog/BlogEntry.php create mode 100644 plugins/Blog/BlogPlugin.php create mode 100644 plugins/Blog/blogentryform.php create mode 100644 plugins/Blog/blogentrylistitem.php create mode 100644 plugins/Blog/newblogentry.php create mode 100644 plugins/Blog/showblogentry.php diff --git a/plugins/Blog/BlogEntry.php b/plugins/Blog/BlogEntry.php new file mode 100644 index 0000000000..54940e06e5 --- /dev/null +++ b/plugins/Blog/BlogEntry.php @@ -0,0 +1,233 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Data structure for blog entries + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class BlogEntry extends Managed_DataObject +{ + public $__table = 'blog_entry'; + + public $id; // UUID + public $profile_id; // int + public $title; // varchar(255) + public $summary; // text + public $content; // text + public $uri; // text + public $url; // text + public $created; // datetime + public $modified; // datetime + + const TYPE = 'http://activitystrea.ms/schema/1.0/blog-entry'; + + static function staticGet($k, $v=null) + { + return Managed_DataObject::staticGet('blog_entry', $k, $v); + } + + static function schemaDef() + { + return array( + 'description' => 'lite blog entry', + 'fields' => array( + 'id' => array('type' => 'char', + 'length' => 36, + 'not null' => true, + 'description' => 'Unique ID (UUID)'), + 'profile_id' => array('type' => 'int', + 'not null' => true, + 'description' => 'Author profile ID'), + 'title' => array('type' => 'varchar', + 'length' => 255, + 'description' => 'title of the entry'), + 'summary' => array('type' => 'text', + 'description' => 'initial summary'), + 'content' => array('type' => 'text', + 'description' => 'HTML content of the entry'), + 'uri' => array('type' => 'varchar', + 'length' => 255, + 'description' => 'URI (probably http://) for this entry'), + 'url' => array('type' => 'varchar', + 'length' => 255, + 'description' => 'URL (probably http://) for this entry'), + 'created' => array('type' => 'datetime', + 'not null' => true, + 'description' => 'date this record was created'), + 'modified' => array('type' => 'datetime', + 'not null' => true, + 'description' => 'date this record was created'), + ), + 'primary key' => array('id'), + 'foreign keys' => array( + 'blog_entry_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + 'blog_entry_created_idx' => array('created'), + 'blog_entry_uri_idx' => array('uri'), + ), + ); + } + + static function saveNew($profile, $title, $content, $options=null) + { + if (is_null($options)) { + $options = array(); + } + + $be = new BlogEntry(); + $be->id = (string) new UUID(); + $be->profile_id = $profile->id; + $be->title = htmlspecialchars($title); + $be->content = $content; + + if (array_key_exists('summary', $options)) { + $be->summary = $options['summary']; + } else { + $be->summary = self::summarize($content); + } + + $url = common_local_url('showblogentry', array('id' => $be->id)); + + if (!array_key_exists('uri', $options)) { + $options['uri'] = $url; + } + + $be->uri = $options['uri']; + + if (!array_key_exists('url', $options)) { + $options['url'] = $url; + } + + $be->url = $options['url']; + + if (!array_key_exists('created', $options)) { + $be->created = common_sql_now(); + } + + $be->created = $options['created']; + + $be->modified = common_sql_now(); + + $be->insert(); + + // Use user's preferences for short URLs, if possible + + try { + $user = $profile->getUser(); + $shortUrl = File_redirection::makeShort($url, + empty($user) ? null : $user); + } catch (Exception $e) { + // Don't let this stop us. + $shortUrl = $url; + } + + // XXX: this might be too long. + + $options['rendered'] = $be->summary . ' ' . + XMLStringer::estring('a', array('href' => $shortUrl, + 'class' => 'blog-entry'), + _('More...')); + + $summaryText = html_entity_decode(strip_tags($summary), ENT_QUOTES, 'UTF-8'); + + if (Notice::contentTooLong($summaryText)) { + $summaryText = substr($summaryText, 0, Notice::maxContent() - mb_strlen($shortUrl) - 2) . + '… ' . $shortUrl; + } + + $content = $summaryText; + + // Override this no matter what. + + $options['object_type'] = self::TYPE; + + $source = array_key_exists('source', $options) ? + $options['source'] : 'web'; + + Notice::saveNew($profile->id, $content, $source, $options); + } + + /** + * Summarize the contents of a blog post + * + * We take the first div or paragraph of the blog post if there's a hit; + * Otherwise we take the whole thing. + * + * @param string $html HTML of full content + */ + static function summarize($html) + { + if (preg_match('#

.*?

#s', $html, $matches)) { + return $matches[0]; + } else if (preg_match('#
.*?
#s', $html, $matches)) { + return $matches[0]; + } else { + return $html; + } + } + + static function fromNotice($notice) + { + return BlogEntry::staticGet('uri', $notice->uri); + } + + function getNotice() + { + return Notice::staticGet('uri', $this->uri); + } + + function asActivityObject() + { + $obj = new ActivityObject(); + + $obj->id = $this->uri; + $obj->type = self::TYPE; + $obj->title = $this->title; + $obj->summary = $this->summary; + $obj->content = $this->content; + $obj->link = $this->url; + + return $obj; + } +} diff --git a/plugins/Blog/BlogPlugin.php b/plugins/Blog/BlogPlugin.php new file mode 100644 index 0000000000..7f8e8fd1d0 --- /dev/null +++ b/plugins/Blog/BlogPlugin.php @@ -0,0 +1,210 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Blog plugin + * + * Many social systems have a way to write and share long-form texts with + * your network. This microapp plugin lets users post blog entries. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class BlogPlugin extends MicroAppPlugin +{ + /** + * Database schema setup + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onCheckSchema() + { + $schema = Schema::get(); + + $schema->ensureTable('blog_entry', BlogEntry::schemaDef()); + + return true; + } + + /** + * Load related modules when needed + * + * @param string $cls Name of the class to be loaded + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'NewblogentryAction': + case 'ShowblogentryAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'BlogEntryForm': + case 'BlogEntryListItem': + include_once $dir . '/'.strtolower($cls).'.php'; + return false; + case 'BlogEntry': + include_once $dir . '/'.$cls.'.php'; + return false; + default: + return true; + } + } + + /** + * Map URLs to actions + * + * @param Net_URL_Mapper $m path-to-action mapper + * + * @return boolean hook value; true means continue processing, false means stop. + */ + function onRouterInitialized($m) + { + $m->connect('blog/new', + array('action' => 'newblogentry')); + $m->connect('blog/:id', + array('action' => 'showblogentry'), + array('id' => UUID::REGEX)); + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Blog', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Blog', + 'rawdescription' => + _m('Let users write and share long-form texts.')); + return true; + } + + function appTitle() + { + return _m('Blog'); + } + + function tag() + { + return 'blog'; + } + + function types() + { + return array(BlogEntry::TYPE); + } + + function saveNoticeFromActivity($activity, $actor, $options=array()) + { + if (count($activity->objects) != 1) { + // TRANS: Exception thrown when there are too many activity objects. + throw new ClientException(_m('Too many activity objects.')); + } + + $entryObj = $activity->objects[0]; + + if ($entryObj->type != BlogEntry::TYPE) { + // TRANS: Exception thrown when blog plugin comes across a non-event type object. + throw new ClientException(_m('Wrong type for object.')); + } + + $notice = null; + + switch ($activity->verb) { + case ActivityVerb::POST: + $notice = BlogEntry::saveNew($actor, + $entryObj->title, + $entryObj->content, + $options); + break; + default: + // TRANS: Exception thrown when blog plugin comes across a undefined verb. + throw new ClientException(_m('Unknown verb for blog entries.')); + } + + return $notice; + } + + function activityObjectFromNotice($notice) + { + $entry = BlogEntry::fromNotice($notice); + + if (empty($entry)) { + throw new ClientException(sprintf(_('No blog entry for notice %s'), + $notice->id)); + } + + return $entry->asActivityObject(); + } + + function entryForm($out) + { + return new BlogEntryForm($out); + } + + function deleteRelated($notice) + { + if ($notice->object_type == BlogEntry::TYPE) { + $entry = BlogEntry::fromNotice($notice); + if (exists($entry)) { + $entry->delete(); + } + } + } + + function adaptNoticeListItem($nli) + { + $notice = $nli->notice; + + if ($notice->object_type == BlogEntry::TYPE) { + return new BlogEntryListItem($nli); + } + + return null; + } +} diff --git a/plugins/Blog/blogentryform.php b/plugins/Blog/blogentryform.php new file mode 100644 index 0000000000..b21e76a7e8 --- /dev/null +++ b/plugins/Blog/blogentryform.php @@ -0,0 +1,133 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Form for creating a blog entry + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class BlogEntryForm extends Form +{ + /** + * ID of the form + * + * @return int ID of the form + */ + function id() + { + return 'form_new_blog_entry'; + } + + /** + * class of the form + * + * @return string class of the form + */ + function formClass() + { + return 'form_settings ajax-notice'; + } + + /** + * Action of the form + * + * @return string URL of the action + */ + function action() + { + return common_local_url('newblogentry'); + } + + /** + * Data elements of the form + * + * @return void + */ + function formData() + { + $this->out->elementStart('fieldset', array('id' => 'new_blog_entry_data')); + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->out->input('blog-entry-title', + // TRANS: Field label on blog entry form. + _m('LABEL','Title'), + null, + // TRANS: Field title on blog entry form. + _m('Title of the blog entry.'), + 'title'); + $this->unli(); + + $this->li(); + $this->out->textarea('blog-entry-content', + // TRANS: Field label on event form. + _m('LABEL','Text'), + null, + // TRANS: Field title on event form. + _m('Text of the blog entry.'), + 'content'); + $this->unli(); + + $this->out->elementEnd('ul'); + + $toWidget = new ToSelector($this->out, + common_current_user(), + null); + $toWidget->show(); + + $this->out->elementEnd('fieldset'); + } + + /** + * Action elements + * + * @return void + */ + function formActions() + { + // TRANS: Button text to save an event.. + $this->out->submit('blog-entry-submit', + _m('BUTTON', 'Save'), + 'submit', + 'submit'); + } +} diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php new file mode 100644 index 0000000000..44775d8a3d --- /dev/null +++ b/plugins/Blog/blogentrylistitem.php @@ -0,0 +1,79 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * NoticeListItem adapter for blog entries + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class BlogEntryListItem extends NoticeListItemAdapter +{ + function showNotice() + { + $this->out->elementStart('div', 'entry-title'); + $this->showAuthor(); + $this->showContent(); + $this->out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + $entry = BlogEntry::fromNotice($notice); + + if (empty($entry)) { + throw new Exception('BlogEntryListItem used for non-blog notice.'); + } + + $out->elementStart('h4', array('class' => 'blog-entry-title')); + $out->element('a', array('href' => $notice->bestUrl()), $entry->title); + $out->elementEnd('h4'); + + $out->element('div', 'blog-entry-summary', $entry->summary); + + // XXX: hide content initially; click More... for full text. + + $out->element('div', 'blog-entry-content', $entry->content); + } +} diff --git a/plugins/Blog/newblogentry.php b/plugins/Blog/newblogentry.php new file mode 100644 index 0000000000..94988c5335 --- /dev/null +++ b/plugins/Blog/newblogentry.php @@ -0,0 +1,138 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Save a new blog entry + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class NewblogentryAction extends Action +{ + protected $user; + protected $title; + protected $content; + + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + + function prepare($argarray) + { + parent::prepare($argarray); + + if (!$this->isPost()) { + throw new ClientException(_('Must be a POST.'), 405); + } + + $this->user = common_current_user(); + + if (empty($this->user)) { + // TRANS: Client exception thrown when trying to post a blog entry while not logged in. + throw new ClientException(_m('Must be logged in to post a blog entry.'), + 403); + } + + $this->checkSessionToken(); + + $this->title = $this->trimmed('title'); + + if (empty($this->title)) { + // TRANS: Client exception thrown when trying to post a blog entry without providing a title. + throw new ClientException(_m('Title required.')); + } + + $this->content = $this->trimmed('content'); + + if (empty($this->content)) { + // TRANS: Client exception thrown when trying to post a blog entry without providing content. + throw new ClientException(_m('Content required.')); + } + + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + + function handle($argarray=null) + { + $options = array(); + + // Does the heavy-lifting for getting "To:" information + + ToSelector::fillOptions($this, $options); + + $options['source'] = 'web'; + + $profile = $this->user->getProfile(); + + $saved = BlogEntry::saveNew($profile, + $this->title, + $this->content, + $options); + + if ($this->boolean('ajax')) { + header('Content-Type: text/xml; charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); + $this->elementStart('head'); + // TRANS: Page title after sending a notice. + $this->element('title', null, _m('Blog entry saved')); + $this->elementEnd('head'); + $this->elementStart('body'); + $this->showNotice($saved); + $this->elementEnd('body'); + $this->elementEnd('html'); + } else { + common_redirect($saved->bestUrl(), 303); + } + } +} diff --git a/plugins/Blog/showblogentry.php b/plugins/Blog/showblogentry.php new file mode 100644 index 0000000000..4ddf7963e0 --- /dev/null +++ b/plugins/Blog/showblogentry.php @@ -0,0 +1,86 @@ +. + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Show a blog entry + * + * @category Blog + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class ShowblogentryAction extends ShownoticeAction +{ + protected $id; + protected $entry; + + function getNotice() + { + $this->id = $this->trimmed('id'); + + $this->entry = BlogEntry::staticGet('id', $this->id); + + if (empty($this->entry)) { + // TRANS: Client exception thrown when referring to a non-existing blog entry. + throw new ClientException(_m('No such entry.'), 404); + } + + $notice = $this->entry->getNotice(); + + if (empty($notice)) { + // TRANS: Client exception thrown when referring to a non-existing blog entry. + throw new ClientException(_m('No such entry.'), 404); + } + + return $notice; + } + + /** + * Title of the page + * + * Used by Action class for layout. + * + * @return string page tile + */ + function title() + { + // XXX: check for double-encoding + return (empty($this->entry->title)) ? _m('Untitled') : $this->entry->title; + } +} From a1911dc2c1dd7cf5f3c7b3b0f95de85407ba276e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:14:24 -0400 Subject: [PATCH 22/31] correct staticGet() declaration --- plugins/Blog/BlogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Blog/BlogEntry.php b/plugins/Blog/BlogEntry.php index 54940e06e5..32915dc9c7 100644 --- a/plugins/Blog/BlogEntry.php +++ b/plugins/Blog/BlogEntry.php @@ -61,7 +61,7 @@ class BlogEntry extends Managed_DataObject const TYPE = 'http://activitystrea.ms/schema/1.0/blog-entry'; - static function staticGet($k, $v=null) + function staticGet($k, $v=null) { return Managed_DataObject::staticGet('blog_entry', $k, $v); } From 4c9ae4fae67f2ecf273d05a0cef029a235a8c51a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:14:37 -0400 Subject: [PATCH 23/31] get right output context for BlogEntryListItem --- plugins/Blog/blogentrylistitem.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php index 44775d8a3d..287339f8c2 100644 --- a/plugins/Blog/blogentrylistitem.php +++ b/plugins/Blog/blogentrylistitem.php @@ -49,10 +49,11 @@ class BlogEntryListItem extends NoticeListItemAdapter { function showNotice() { - $this->out->elementStart('div', 'entry-title'); + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); $this->showAuthor(); $this->showContent(); - $this->out->elementEnd('div'); + $out->elementEnd('div'); } function showContent() From d51abd8830543f5bb7c061d70cbdd51aadd95ab7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:20:01 -0400 Subject: [PATCH 24/31] move class BlogEntry to Blog_entry for DB_DataObject compliance --- plugins/Blog/BlogPlugin.php | 18 +++++++++--------- plugins/Blog/{BlogEntry.php => Blog_entry.php} | 6 +++--- plugins/Blog/blogentrylistitem.php | 2 +- plugins/Blog/newblogentry.php | 2 +- plugins/Blog/showblogentry.php | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) rename plugins/Blog/{BlogEntry.php => Blog_entry.php} (98%) diff --git a/plugins/Blog/BlogPlugin.php b/plugins/Blog/BlogPlugin.php index 7f8e8fd1d0..89619b5f54 100644 --- a/plugins/Blog/BlogPlugin.php +++ b/plugins/Blog/BlogPlugin.php @@ -62,7 +62,7 @@ class BlogPlugin extends MicroAppPlugin { $schema = Schema::get(); - $schema->ensureTable('blog_entry', BlogEntry::schemaDef()); + $schema->ensureTable('blog_entry', Blog_entry::schemaDef()); return true; } @@ -88,7 +88,7 @@ class BlogPlugin extends MicroAppPlugin case 'BlogEntryListItem': include_once $dir . '/'.strtolower($cls).'.php'; return false; - case 'BlogEntry': + case 'Blog_entry': include_once $dir . '/'.$cls.'.php'; return false; default: @@ -136,7 +136,7 @@ class BlogPlugin extends MicroAppPlugin function types() { - return array(BlogEntry::TYPE); + return array(Blog_entry::TYPE); } function saveNoticeFromActivity($activity, $actor, $options=array()) @@ -148,7 +148,7 @@ class BlogPlugin extends MicroAppPlugin $entryObj = $activity->objects[0]; - if ($entryObj->type != BlogEntry::TYPE) { + if ($entryObj->type != Blog_entry::TYPE) { // TRANS: Exception thrown when blog plugin comes across a non-event type object. throw new ClientException(_m('Wrong type for object.')); } @@ -157,7 +157,7 @@ class BlogPlugin extends MicroAppPlugin switch ($activity->verb) { case ActivityVerb::POST: - $notice = BlogEntry::saveNew($actor, + $notice = Blog_entry::saveNew($actor, $entryObj->title, $entryObj->content, $options); @@ -172,7 +172,7 @@ class BlogPlugin extends MicroAppPlugin function activityObjectFromNotice($notice) { - $entry = BlogEntry::fromNotice($notice); + $entry = Blog_entry::fromNotice($notice); if (empty($entry)) { throw new ClientException(sprintf(_('No blog entry for notice %s'), @@ -189,8 +189,8 @@ class BlogPlugin extends MicroAppPlugin function deleteRelated($notice) { - if ($notice->object_type == BlogEntry::TYPE) { - $entry = BlogEntry::fromNotice($notice); + if ($notice->object_type == Blog_entry::TYPE) { + $entry = Blog_entry::fromNotice($notice); if (exists($entry)) { $entry->delete(); } @@ -201,7 +201,7 @@ class BlogPlugin extends MicroAppPlugin { $notice = $nli->notice; - if ($notice->object_type == BlogEntry::TYPE) { + if ($notice->object_type == Blog_entry::TYPE) { return new BlogEntryListItem($nli); } diff --git a/plugins/Blog/BlogEntry.php b/plugins/Blog/Blog_entry.php similarity index 98% rename from plugins/Blog/BlogEntry.php rename to plugins/Blog/Blog_entry.php index 32915dc9c7..34e4ea294e 100644 --- a/plugins/Blog/BlogEntry.php +++ b/plugins/Blog/Blog_entry.php @@ -45,7 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class BlogEntry extends Managed_DataObject +class Blog_entry extends Managed_DataObject { public $__table = 'blog_entry'; @@ -115,7 +115,7 @@ class BlogEntry extends Managed_DataObject $options = array(); } - $be = new BlogEntry(); + $be = new Blog_entry(); $be->id = (string) new UUID(); $be->profile_id = $profile->id; $be->title = htmlspecialchars($title); @@ -209,7 +209,7 @@ class BlogEntry extends Managed_DataObject static function fromNotice($notice) { - return BlogEntry::staticGet('uri', $notice->uri); + return Blog_entry::staticGet('uri', $notice->uri); } function getNotice() diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php index 287339f8c2..97a06acfa7 100644 --- a/plugins/Blog/blogentrylistitem.php +++ b/plugins/Blog/blogentrylistitem.php @@ -61,7 +61,7 @@ class BlogEntryListItem extends NoticeListItemAdapter $notice = $this->nli->notice; $out = $this->nli->out; - $entry = BlogEntry::fromNotice($notice); + $entry = Blog_entry::fromNotice($notice); if (empty($entry)) { throw new Exception('BlogEntryListItem used for non-blog notice.'); diff --git a/plugins/Blog/newblogentry.php b/plugins/Blog/newblogentry.php index 94988c5335..c33c69d109 100644 --- a/plugins/Blog/newblogentry.php +++ b/plugins/Blog/newblogentry.php @@ -114,7 +114,7 @@ class NewblogentryAction extends Action $profile = $this->user->getProfile(); - $saved = BlogEntry::saveNew($profile, + $saved = Blog_entry::saveNew($profile, $this->title, $this->content, $options); diff --git a/plugins/Blog/showblogentry.php b/plugins/Blog/showblogentry.php index 4ddf7963e0..c5aa54a4c2 100644 --- a/plugins/Blog/showblogentry.php +++ b/plugins/Blog/showblogentry.php @@ -54,7 +54,7 @@ class ShowblogentryAction extends ShownoticeAction { $this->id = $this->trimmed('id'); - $this->entry = BlogEntry::staticGet('id', $this->id); + $this->entry = Blog_entry::staticGet('id', $this->id); if (empty($this->entry)) { // TRANS: Client exception thrown when referring to a non-existing blog entry. From 3d8b776dc75eef86be72f648b23dda7c7a25f60c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:26:24 -0400 Subject: [PATCH 25/31] don't double-show summary and content --- plugins/Blog/Blog_entry.php | 6 ++++++ plugins/Blog/blogentrylistitem.php | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/plugins/Blog/Blog_entry.php b/plugins/Blog/Blog_entry.php index 34e4ea294e..0e4df28b82 100644 --- a/plugins/Blog/Blog_entry.php +++ b/plugins/Blog/Blog_entry.php @@ -127,6 +127,12 @@ class Blog_entry extends Managed_DataObject $be->summary = self::summarize($content); } + // Don't save an identical summary + + if ($be->summary == $be->content) { + $be->summary = null; + } + $url = common_local_url('showblogentry', array('id' => $be->id)); if (!array_key_exists('uri', $options)) { diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php index 97a06acfa7..ee937daa77 100644 --- a/plugins/Blog/blogentrylistitem.php +++ b/plugins/Blog/blogentrylistitem.php @@ -71,10 +71,11 @@ class BlogEntryListItem extends NoticeListItemAdapter $out->element('a', array('href' => $notice->bestUrl()), $entry->title); $out->elementEnd('h4'); - $out->element('div', 'blog-entry-summary', $entry->summary); - - // XXX: hide content initially; click More... for full text. - - $out->element('div', 'blog-entry-content', $entry->content); + if (!empty($entry->summary)) { + $out->element('div', 'blog-entry-summary', $entry->summary); + } else { + // XXX: hide content initially; click More... for full text. + $out->element('div', 'blog-entry-content', $entry->content); + } } } From e5126ebb773a55bc8350d4b8c77464925119ee8c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:48:02 -0400 Subject: [PATCH 26/31] Fine-tuning Blog_entry class Gave it a different object type (Article), fine-tuned the summary process, and made sure to return the saved Notice in saveNew(). --- plugins/Blog/Blog_entry.php | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/plugins/Blog/Blog_entry.php b/plugins/Blog/Blog_entry.php index 0e4df28b82..54bd445930 100644 --- a/plugins/Blog/Blog_entry.php +++ b/plugins/Blog/Blog_entry.php @@ -59,7 +59,7 @@ class Blog_entry extends Managed_DataObject public $created; // datetime public $modified; // datetime - const TYPE = 'http://activitystrea.ms/schema/1.0/blog-entry'; + const TYPE = ActivityObject::ARTICLE; function staticGet($k, $v=null) { @@ -170,19 +170,25 @@ class Blog_entry extends Managed_DataObject // XXX: this might be too long. - $options['rendered'] = $be->summary . ' ' . - XMLStringer::estring('a', array('href' => $shortUrl, - 'class' => 'blog-entry'), - _('More...')); + if (!empty($be->summary)) { + $options['rendered'] = $be->summary . ' ' . + XMLStringer::estring('a', array('href' => $url, + 'class' => 'blog-entry'), + _('More...')); + $content = html_entity_decode(strip_tags($text), ENT_QUOTES, 'UTF-8'); - $summaryText = html_entity_decode(strip_tags($summary), ENT_QUOTES, 'UTF-8'); - - if (Notice::contentTooLong($summaryText)) { - $summaryText = substr($summaryText, 0, Notice::maxContent() - mb_strlen($shortUrl) - 2) . - '… ' . $shortUrl; + } else { + $options['rendered'] = $be->content . ' ' . + XMLStringer::estring('a', array('href' => $url, + 'class' => 'blog-entry'), + _('More...')); } - $content = $summaryText; + + if (Notice::contentTooLong($content)) { + $content = substr($content, 0, Notice::maxContent() - mb_strlen($shortUrl) - 2) . + '… ' . $shortUrl; + } // Override this no matter what. @@ -191,7 +197,9 @@ class Blog_entry extends Managed_DataObject $source = array_key_exists('source', $options) ? $options['source'] : 'web'; - Notice::saveNew($profile->id, $content, $source, $options); + $saved = Notice::saveNew($profile->id, $content, $source, $options); + + return $saved; } /** From 06ac0f9e9ecfabc9a6d0836cb183c316bb0f2254 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 10:49:37 -0400 Subject: [PATCH 27/31] correctly return the HTML representation of a new blog entry --- plugins/Blog/newblogentry.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Blog/newblogentry.php b/plugins/Blog/newblogentry.php index c33c69d109..d6421abea2 100644 --- a/plugins/Blog/newblogentry.php +++ b/plugins/Blog/newblogentry.php @@ -128,7 +128,8 @@ class NewblogentryAction extends Action $this->element('title', null, _m('Blog entry saved')); $this->elementEnd('head'); $this->elementStart('body'); - $this->showNotice($saved); + $nli = new NoticeListItem($saved, $this); + $nli->show(); $this->elementEnd('body'); $this->elementEnd('html'); } else { From 4c5d583403d4995c3dcd0eface125f3eaf7e5df8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 11:01:50 -0400 Subject: [PATCH 28/31] better management of HTML input --- plugins/Blog/Blog_entry.php | 27 ++++++++++++++++++--------- plugins/Blog/blogentrylistitem.php | 8 ++++++-- 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/plugins/Blog/Blog_entry.php b/plugins/Blog/Blog_entry.php index 54bd445930..72cee91a79 100644 --- a/plugins/Blog/Blog_entry.php +++ b/plugins/Blog/Blog_entry.php @@ -118,12 +118,13 @@ class Blog_entry extends Managed_DataObject $be = new Blog_entry(); $be->id = (string) new UUID(); $be->profile_id = $profile->id; - $be->title = htmlspecialchars($title); - $be->content = $content; + $be->title = $title; // Note: not HTML-protected + $be->content = self::purify($content); if (array_key_exists('summary', $options)) { - $be->summary = $options['summary']; + $be->summary = self::purify($options['summary']); } else { + // Already purified $be->summary = self::summarize($content); } @@ -175,13 +176,10 @@ class Blog_entry extends Managed_DataObject XMLStringer::estring('a', array('href' => $url, 'class' => 'blog-entry'), _('More...')); - $content = html_entity_decode(strip_tags($text), ENT_QUOTES, 'UTF-8'); - + $content = html_entity_decode(strip_tags($be->summary), ENT_QUOTES, 'UTF-8'); } else { - $options['rendered'] = $be->content . ' ' . - XMLStringer::estring('a', array('href' => $url, - 'class' => 'blog-entry'), - _('More...')); + $options['rendered'] = $be->content; + $content = html_entity_decode(strip_tags($be->content), ENT_QUOTES, 'UTF-8'); } @@ -244,4 +242,15 @@ class Blog_entry extends Managed_DataObject return $obj; } + + /** + * Clean up input HTML + */ + static function purify($html) + { + require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; + $config = array('safe' => 1, + 'deny_attribute' => 'id,style,on*'); + return htmLawed($html, $config); + } } diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php index ee937daa77..374c456028 100644 --- a/plugins/Blog/blogentrylistitem.php +++ b/plugins/Blog/blogentrylistitem.php @@ -72,10 +72,14 @@ class BlogEntryListItem extends NoticeListItemAdapter $out->elementEnd('h4'); if (!empty($entry->summary)) { - $out->element('div', 'blog-entry-summary', $entry->summary); + $out->elementStart('div', 'blog-entry-summary'); + $out->raw($entry->summary); + $out->elementEnd('div'); } else { // XXX: hide content initially; click More... for full text. - $out->element('div', 'blog-entry-content', $entry->content); + $out->elementStart('div', 'blog-entry-content'); + $out->raw($entry->content); + $out->elementEnd('div'); } } } From acd1c6287d34f59f1860b4815085245b389638f7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 11:28:46 -0400 Subject: [PATCH 29/31] correctly purify input for Blog_entry --- plugins/Blog/Blog_entry.php | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/plugins/Blog/Blog_entry.php b/plugins/Blog/Blog_entry.php index 72cee91a79..f3166f870a 100644 --- a/plugins/Blog/Blog_entry.php +++ b/plugins/Blog/Blog_entry.php @@ -114,18 +114,18 @@ class Blog_entry extends Managed_DataObject if (is_null($options)) { $options = array(); } - + $be = new Blog_entry(); $be->id = (string) new UUID(); $be->profile_id = $profile->id; $be->title = $title; // Note: not HTML-protected $be->content = self::purify($content); - + if (array_key_exists('summary', $options)) { $be->summary = self::purify($options['summary']); } else { // Already purified - $be->summary = self::summarize($content); + $be->summary = self::summarize($be->content); } // Don't save an identical summary @@ -176,15 +176,15 @@ class Blog_entry extends Managed_DataObject XMLStringer::estring('a', array('href' => $url, 'class' => 'blog-entry'), _('More...')); - $content = html_entity_decode(strip_tags($be->summary), ENT_QUOTES, 'UTF-8'); + $text = html_entity_decode(strip_tags($be->summary), ENT_QUOTES, 'UTF-8'); } else { $options['rendered'] = $be->content; - $content = html_entity_decode(strip_tags($be->content), ENT_QUOTES, 'UTF-8'); + $text = html_entity_decode(strip_tags($be->content), ENT_QUOTES, 'UTF-8'); } - if (Notice::contentTooLong($content)) { - $content = substr($content, 0, Notice::maxContent() - mb_strlen($shortUrl) - 2) . + if (Notice::contentTooLong($text)) { + $text = substr($text, 0, Notice::maxContent() - mb_strlen($shortUrl) - 2) . '… ' . $shortUrl; } @@ -195,7 +195,7 @@ class Blog_entry extends Managed_DataObject $source = array_key_exists('source', $options) ? $options['source'] : 'web'; - $saved = Notice::saveNew($profile->id, $content, $source, $options); + $saved = Notice::saveNew($profile->id, $text, $source, $options); return $saved; } @@ -249,8 +249,11 @@ class Blog_entry extends Managed_DataObject static function purify($html) { require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; + $config = array('safe' => 1, 'deny_attribute' => 'id,style,on*'); - return htmLawed($html, $config); + $pure = htmLawed($html, $config); + + return $pure; } } From d67b8fdae83d948bf997a7f7cdbb71b52d9481e9 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Jun 2011 11:34:24 -0400 Subject: [PATCH 30/31] upgrade TinyMCE to 3.4.x --- plugins/TinyMCE/js/langs/en.js | 59 +- .../TinyMCE/js/plugins/advhr/langs/en_dlg.js | 2 + plugins/TinyMCE/js/plugins/advhr/rule.htm | 59 +- plugins/TinyMCE/js/plugins/advimage/image.htm | 65 +- .../TinyMCE/js/plugins/advimage/js/image.js | 35 +- .../js/plugins/advimage/langs/en_dlg.js | 2 + .../TinyMCE/js/plugins/advlink/js/advlink.js | 38 +- .../js/plugins/advlink/langs/en_dlg.js | 6 +- plugins/TinyMCE/js/plugins/advlink/link.htm | 65 +- .../js/plugins/advlist/editor_plugin.js | 2 +- .../js/plugins/advlist/editor_plugin_src.js | 13 +- .../js/plugins/autolink/editor_plugin.js | 1 + .../js/plugins/autolink/editor_plugin_src.js | 172 + .../js/plugins/autoresize/editor_plugin.js | 2 +- .../plugins/autoresize/editor_plugin_src.js | 28 +- .../js/plugins/autosave/editor_plugin.js | 2 +- .../js/plugins/autosave/editor_plugin_src.js | 17 +- .../js/plugins/bbcode/editor_plugin.js | 2 +- .../js/plugins/bbcode/editor_plugin_src.js | 2 +- .../js/plugins/contextmenu/editor_plugin.js | 2 +- .../plugins/contextmenu/editor_plugin_src.js | 55 +- .../TinyMCE/js/plugins/emotions/emotions.htm | 29 +- .../emotions/img/smiley-foot-in-mouth.gif | Bin 344 -> 342 bytes .../plugins/emotions/img/smiley-laughing.gif | Bin 344 -> 343 bytes .../js/plugins/emotions/img/smiley-sealed.gif | Bin 325 -> 323 bytes .../js/plugins/emotions/img/smiley-smile.gif | Bin 345 -> 344 bytes .../plugins/emotions/img/smiley-surprised.gif | Bin 342 -> 338 bytes .../js/plugins/emotions/img/smiley-wink.gif | Bin 351 -> 350 bytes .../example_dependency/editor_plugin.js | 1 + .../example_dependency/editor_plugin_src.js | 50 + .../js/plugins/fullpage/css/fullpage.css | 45 +- .../js/plugins/fullpage/editor_plugin.js | 2 +- .../js/plugins/fullpage/editor_plugin_src.js | 388 +- .../TinyMCE/js/plugins/fullpage/fullpage.htm | 348 +- .../js/plugins/fullpage/js/fullpage.js | 613 +- .../js/plugins/fullscreen/editor_plugin.js | 2 +- .../plugins/fullscreen/editor_plugin_src.js | 12 +- .../js/plugins/inlinepopups/editor_plugin.js | 2 +- .../plugins/inlinepopups/editor_plugin_src.js | 91 +- .../skins/clearlooks2/img/alert.gif | Bin 818 -> 810 bytes .../skins/clearlooks2/img/button.gif | Bin 280 -> 272 bytes .../skins/clearlooks2/img/confirm.gif | Bin 915 -> 907 bytes .../skins/clearlooks2/img/corners.gif | Bin 911 -> 909 bytes .../skins/clearlooks2/img/vertical.gif | Bin 92 -> 84 bytes .../inlinepopups/skins/clearlooks2/window.css | 2 +- .../TinyMCE/js/plugins/layer/editor_plugin.js | 2 +- .../js/plugins/layer/editor_plugin_src.js | 2 + .../js/plugins/legacyoutput/editor_plugin.js | 2 +- .../plugins/legacyoutput/editor_plugin_src.js | 57 +- .../js/plugins/linkautodetect/changelog.txt | 9 - .../plugins/linkautodetect/editor_plugin.js | 7 - .../linkautodetect/editor_plugin_src.js | 141 - .../TinyMCE/js/plugins/lists/editor_plugin.js | 1 + .../js/plugins/lists/editor_plugin_src.js | 688 ++ .../TinyMCE/js/plugins/media/css/content.css | 6 - .../TinyMCE/js/plugins/media/css/media.css | 9 +- .../TinyMCE/js/plugins/media/editor_plugin.js | 2 +- .../js/plugins/media/editor_plugin_src.js | 989 +- .../TinyMCE/js/plugins/media/img/flash.gif | Bin 241 -> 0 bytes .../js/plugins/media/img/flv_player.swf | Bin 11668 -> 0 bytes .../js/plugins/media/img/quicktime.gif | Bin 303 -> 0 bytes .../js/plugins/media/img/shockwave.gif | Bin 387 -> 0 bytes plugins/TinyMCE/js/plugins/media/js/media.js | 957 +- .../TinyMCE/js/plugins/media/langs/en_dlg.js | 10 +- plugins/TinyMCE/js/plugins/media/media.htm | 571 +- .../TinyMCE/js/plugins/media/moxieplayer.swf | Bin 0 -> 33931 bytes .../js/plugins/nonbreaking/editor_plugin.js | 2 +- .../plugins/nonbreaking/editor_plugin_src.js | 2 +- .../js/plugins/noneditable/editor_plugin.js | 2 +- .../plugins/noneditable/editor_plugin_src.js | 2 + .../js/plugins/pagebreak/css/content.css | 1 - .../js/plugins/pagebreak/editor_plugin.js | 2 +- .../js/plugins/pagebreak/editor_plugin_src.js | 5 +- .../js/plugins/pagebreak/img/trans.gif | Bin 43 -> 0 bytes .../TinyMCE/js/plugins/paste/editor_plugin.js | 2 +- .../js/plugins/paste/editor_plugin_src.js | 273 +- .../js/plugins/searchreplace/editor_plugin.js | 2 +- .../searchreplace/editor_plugin_src.js | 4 + .../plugins/searchreplace/js/searchreplace.js | 24 +- .../plugins/searchreplace/searchreplace.htm | 33 +- .../js/plugins/spellchecker/editor_plugin.js | 2 +- .../plugins/spellchecker/editor_plugin_src.js | 89 +- plugins/TinyMCE/js/plugins/style/js/props.js | 12 +- .../TinyMCE/js/plugins/style/langs/en_dlg.js | 9 +- plugins/TinyMCE/js/plugins/style/props.htm | 901 +- .../js/plugins/tabfocus/editor_plugin.js | 2 +- .../js/plugins/tabfocus/editor_plugin_src.js | 54 +- plugins/TinyMCE/js/plugins/table/cell.htm | 30 +- .../TinyMCE/js/plugins/table/editor_plugin.js | 2 +- .../js/plugins/table/editor_plugin_src.js | 160 +- plugins/TinyMCE/js/plugins/table/js/cell.js | 53 +- plugins/TinyMCE/js/plugins/table/js/row.js | 36 +- plugins/TinyMCE/js/plugins/table/js/table.js | 31 +- .../TinyMCE/js/plugins/table/langs/en_dlg.js | 3 +- .../TinyMCE/js/plugins/table/merge_cells.htm | 22 +- plugins/TinyMCE/js/plugins/table/row.htm | 21 +- plugins/TinyMCE/js/plugins/table/table.htm | 107 +- .../js/plugins/template/js/template.js | 2 +- .../js/plugins/visualchars/editor_plugin.js | 2 +- .../plugins/visualchars/editor_plugin_src.js | 2 +- .../js/plugins/wordcount/editor_plugin.js | 2 +- .../js/plugins/wordcount/editor_plugin_src.js | 54 +- .../TinyMCE/js/plugins/xhtmlxtras/abbr.htm | 11 +- .../TinyMCE/js/plugins/xhtmlxtras/acronym.htm | 11 +- .../js/plugins/xhtmlxtras/attributes.htm | 11 +- .../TinyMCE/js/plugins/xhtmlxtras/cite.htm | 9 +- plugins/TinyMCE/js/plugins/xhtmlxtras/del.htm | 17 +- .../js/plugins/xhtmlxtras/editor_plugin.js | 2 +- .../plugins/xhtmlxtras/editor_plugin_src.js | 12 +- plugins/TinyMCE/js/plugins/xhtmlxtras/ins.htm | 21 +- .../js/plugins/xhtmlxtras/js/attributes.js | 17 +- .../TinyMCE/js/plugins/xhtmlxtras/js/del.js | 14 +- .../plugins/xhtmlxtras/js/element_common.js | 8 +- .../TinyMCE/js/plugins/xhtmlxtras/js/ins.js | 17 +- plugins/TinyMCE/js/themes/advanced/about.htm | 8 +- plugins/TinyMCE/js/themes/advanced/anchor.htm | 10 +- .../TinyMCE/js/themes/advanced/charmap.htm | 79 +- .../js/themes/advanced/color_picker.htm | 19 +- .../js/themes/advanced/editor_template.js | 2 +- .../js/themes/advanced/editor_template_src.js | 261 +- plugins/TinyMCE/js/themes/advanced/image.htm | 102 +- .../js/themes/advanced/img/colorpicker.jpg | Bin 3189 -> 2584 bytes .../TinyMCE/js/themes/advanced/img/flash.gif | Bin 0 -> 239 bytes .../TinyMCE/js/themes/advanced/img/icons.gif | Bin 11794 -> 11790 bytes .../TinyMCE/js/themes/advanced/img/iframe.gif | Bin 0 -> 600 bytes .../advanced}/img/pagebreak.gif | Bin .../js/themes/advanced/img/quicktime.gif | Bin 0 -> 301 bytes .../advanced}/img/realmedia.gif | Bin .../js/themes/advanced/img/shockwave.gif | Bin 0 -> 384 bytes .../media => themes/advanced}/img/trans.gif | Bin .../TinyMCE/js/themes/advanced/img/video.gif | Bin 0 -> 597 bytes .../advanced}/img/windowsmedia.gif | Bin .../TinyMCE/js/themes/advanced/js/about.js | 1 + .../TinyMCE/js/themes/advanced/js/anchor.js | 5 + .../TinyMCE/js/themes/advanced/js/charmap.js | 32 +- .../js/themes/advanced/js/color_picker.js | 140 +- .../TinyMCE/js/themes/advanced/js/image.js | 8 +- plugins/TinyMCE/js/themes/advanced/js/link.js | 11 +- .../js/themes/advanced/js/source_editor.js | 18 +- .../TinyMCE/js/themes/advanced/langs/en.js | 10 +- .../js/themes/advanced/langs/en_dlg.js | 9 +- plugins/TinyMCE/js/themes/advanced/link.htm | 55 +- .../TinyMCE/js/themes/advanced/shortcuts.htm | 47 + .../themes/advanced/skins/default/content.css | 13 +- .../advanced/skins/default/img/buttons.png | Bin 3274 -> 3133 bytes .../advanced/skins/default/img/items.gif | Bin 70 -> 64 bytes .../advanced/skins/default/img/tabs.gif | Bin 1326 -> 1322 bytes .../js/themes/advanced/skins/default/ui.css | 9 +- .../advanced/skins/highcontrast/content.css | 23 + .../advanced/skins/highcontrast/dialog.css | 105 + .../themes/advanced/skins/highcontrast/ui.css | 102 + .../js/themes/advanced/skins/o2k7/content.css | 10 + .../js/themes/advanced/skins/o2k7/dialog.css | 1 + .../advanced/skins/o2k7/img/button_bg.png | Bin 5859 -> 2766 bytes .../skins/o2k7/img/button_bg_black.png | Bin 3736 -> 651 bytes .../skins/o2k7/img/button_bg_silver.png | Bin 5358 -> 2084 bytes .../js/themes/advanced/skins/o2k7/ui.css | 12 +- .../themes/advanced/skins/o2k7/ui_black.css | 2 +- .../themes/advanced/skins/o2k7/ui_silver.css | 2 +- .../js/themes/advanced/source_editor.htm | 6 +- .../js/themes/simple/editor_template.js | 2 +- .../js/themes/simple/editor_template_src.js | 3 +- .../TinyMCE/js/themes/simple/img/icons.gif | Bin 1440 -> 806 bytes plugins/TinyMCE/js/tiny_mce.js | 2 +- plugins/TinyMCE/js/tiny_mce_popup.js | 2 +- plugins/TinyMCE/js/tiny_mce_src.js | 9095 +++++++++++------ plugins/TinyMCE/js/utils/form_utils.js | 18 +- plugins/TinyMCE/js/utils/mctabs.js | 105 +- plugins/TinyMCE/js/utils/validate.js | 38 +- 169 files changed, 11238 insertions(+), 6896 deletions(-) create mode 100644 plugins/TinyMCE/js/plugins/autolink/editor_plugin.js create mode 100644 plugins/TinyMCE/js/plugins/autolink/editor_plugin_src.js create mode 100644 plugins/TinyMCE/js/plugins/example_dependency/editor_plugin.js create mode 100644 plugins/TinyMCE/js/plugins/example_dependency/editor_plugin_src.js delete mode 100644 plugins/TinyMCE/js/plugins/linkautodetect/changelog.txt delete mode 100644 plugins/TinyMCE/js/plugins/linkautodetect/editor_plugin.js delete mode 100644 plugins/TinyMCE/js/plugins/linkautodetect/editor_plugin_src.js create mode 100644 plugins/TinyMCE/js/plugins/lists/editor_plugin.js create mode 100644 plugins/TinyMCE/js/plugins/lists/editor_plugin_src.js delete mode 100644 plugins/TinyMCE/js/plugins/media/css/content.css delete mode 100644 plugins/TinyMCE/js/plugins/media/img/flash.gif delete mode 100644 plugins/TinyMCE/js/plugins/media/img/flv_player.swf delete mode 100644 plugins/TinyMCE/js/plugins/media/img/quicktime.gif delete mode 100644 plugins/TinyMCE/js/plugins/media/img/shockwave.gif create mode 100644 plugins/TinyMCE/js/plugins/media/moxieplayer.swf delete mode 100644 plugins/TinyMCE/js/plugins/pagebreak/css/content.css delete mode 100644 plugins/TinyMCE/js/plugins/pagebreak/img/trans.gif create mode 100644 plugins/TinyMCE/js/themes/advanced/img/flash.gif create mode 100644 plugins/TinyMCE/js/themes/advanced/img/iframe.gif rename plugins/TinyMCE/js/{plugins/pagebreak => themes/advanced}/img/pagebreak.gif (100%) create mode 100644 plugins/TinyMCE/js/themes/advanced/img/quicktime.gif rename plugins/TinyMCE/js/{plugins/media => themes/advanced}/img/realmedia.gif (100%) create mode 100644 plugins/TinyMCE/js/themes/advanced/img/shockwave.gif rename plugins/TinyMCE/js/{plugins/media => themes/advanced}/img/trans.gif (100%) create mode 100644 plugins/TinyMCE/js/themes/advanced/img/video.gif rename plugins/TinyMCE/js/{plugins/media => themes/advanced}/img/windowsmedia.gif (100%) create mode 100644 plugins/TinyMCE/js/themes/advanced/shortcuts.htm create mode 100644 plugins/TinyMCE/js/themes/advanced/skins/highcontrast/content.css create mode 100644 plugins/TinyMCE/js/themes/advanced/skins/highcontrast/dialog.css create mode 100644 plugins/TinyMCE/js/themes/advanced/skins/highcontrast/ui.css diff --git a/plugins/TinyMCE/js/langs/en.js b/plugins/TinyMCE/js/langs/en.js index ea4a1b0e14..8a80d46b1a 100644 --- a/plugins/TinyMCE/js/langs/en.js +++ b/plugins/TinyMCE/js/langs/en.js @@ -12,9 +12,54 @@ not_set:"-- Not set --", clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?", clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.", popup_blocked:"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.", -invalid_data:"Error: Invalid values entered, these are marked in red.", +invalid_data:"{#field} is invalid", +invalid_data_number:"{#field} must be a number", +invalid_data_min:"{#field} must be a number greater than {#min}", +invalid_data_size:"{#field} must be a number or percentage", more_colors:"More colors" }, +colors:{ +'000000':'Black', +'993300':'Burnt orange', +'333300':'Dark olive', +'003300':'Dark green', +'003366':'Dark azure', +'000080':'Navy Blue', +'333399':'Indigo', +'333333':'Very dark gray', +'800000':'Maroon', +'FF6600':'Orange', +'808000':'Olive', +'008000':'Green', +'008080':'Teal', +'0000FF':'Blue', +'666699':'Grayish blue', +'808080':'Gray', +'FF0000':'Red', +'FF9900':'Amber', +'99CC00':'Yellow green', +'339966':'Sea green', +'33CCCC':'Turquoise', +'3366FF':'Royal blue', +'800080':'Purple', +'999999':'Medium gray', +'FF00FF':'Magenta', +'FFCC00':'Gold', +'FFFF00':'Yellow', +'00FF00':'Lime', +'00FFFF':'Aqua', +'00CCFF':'Sky blue', +'993366':'Brown', +'C0C0C0':'Silver', +'FF99CC':'Pink', +'FFCC99':'Peach', +'FFFF99':'Light yellow', +'CCFFCC':'Pale green', +'CCFFFF':'Pale cyan', +'99CCFF':'Light sky blue', +'CC99FF':'Plum', +'FFFFFF':'White' +}, contextmenu:{ align:"Alignment", left:"Left", @@ -151,7 +196,8 @@ langs:"Languages", wait:"Please wait...", sug:"Suggestions", no_sug:"No suggestions", -no_mpell:"No misspellings found." +no_mpell:"No misspellings found.", +learn_word:"Learn word" }, pagebreak:{ desc:"Insert page break." @@ -167,4 +213,11 @@ upper_roman:"Upper roman", circle:"Circle", disc:"Disc", square:"Square" -}}}); \ No newline at end of file +}, +aria:{ +rich_text_area:"Rich Text Area" +}, +wordcount:{ +words: 'Words: ' +} +}}); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/advhr/langs/en_dlg.js b/plugins/TinyMCE/js/plugins/advhr/langs/en_dlg.js index 873bfd8d38..ad6a7b6988 100644 --- a/plugins/TinyMCE/js/plugins/advhr/langs/en_dlg.js +++ b/plugins/TinyMCE/js/plugins/advhr/langs/en_dlg.js @@ -1,5 +1,7 @@ tinyMCE.addI18n('en.advhr_dlg',{ +normal:"Normal", width:"Width", +widthunits:"Units", size:"Height", noshade:"No shadow" }); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/advhr/rule.htm b/plugins/TinyMCE/js/plugins/advhr/rule.htm index fc37b2aecd..843e1f8f0b 100644 --- a/plugins/TinyMCE/js/plugins/advhr/rule.htm +++ b/plugins/TinyMCE/js/plugins/advhr/rule.htm @@ -8,43 +8,44 @@ - +
- - - - - - - - - - - - - -
- - -
+ + + + + + + + + + + + + +
+ + + +
diff --git a/plugins/TinyMCE/js/plugins/advimage/image.htm b/plugins/TinyMCE/js/plugins/advimage/image.htm index 79cff3f19f..ed16b3d4a9 100644 --- a/plugins/TinyMCE/js/plugins/advimage/image.htm +++ b/plugins/TinyMCE/js/plugins/advimage/image.htm @@ -10,13 +10,14 @@ - - + + + @@ -25,15 +26,15 @@
{#advimage_dlg.general} - +
- @@ -60,7 +61,7 @@
{#advimage_dlg.tab_appearance} -
+
- + - - + @@ -109,7 +108,7 @@ @@ -118,7 +117,7 @@ @@ -129,7 +128,7 @@ - -
- x - px + + x + + px
  + +
@@ -142,18 +145,18 @@
{#advimage_dlg.swap_image} - + -
+
- @@ -161,12 +164,12 @@ - @@ -178,7 +181,7 @@
{#advimage_dlg.misc} -
+ +
- - + + -
  
+ +
- - + + -
  
+
@@ -211,12 +214,12 @@ -
+ +
- - + + -
  
@@ -227,6 +230,6 @@ - + diff --git a/plugins/TinyMCE/js/plugins/advimage/js/image.js b/plugins/TinyMCE/js/plugins/advimage/js/image.js index 3bda86a2d3..f222486131 100644 --- a/plugins/TinyMCE/js/plugins/advimage/js/image.js +++ b/plugins/TinyMCE/js/plugins/advimage/js/image.js @@ -9,13 +9,13 @@ var ImageDialog = { }, init : function(ed) { - var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, dom = ed.dom, n = ed.selection.getNode(); + var f = document.forms[0], nl = f.elements, ed = tinyMCEPopup.editor, dom = ed.dom, n = ed.selection.getNode(), fl = tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList'); tinyMCEPopup.resizeToInnerSize(); this.fillClassList('class_list'); - this.fillFileList('src_list', 'tinyMCEImageList'); - this.fillFileList('over_list', 'tinyMCEImageList'); - this.fillFileList('out_list', 'tinyMCEImageList'); + this.fillFileList('src_list', fl); + this.fillFileList('over_list', fl); + this.fillFileList('out_list', fl); TinyMCE_EditableSelects.init(); if (n.nodeName == 'IMG') { @@ -142,7 +142,7 @@ var ImageDialog = { } tinymce.extend(args, { - src : nl.src.value, + src : nl.src.value.replace(/ /g, '%20'), width : nl.width.value, height : nl.height.value, alt : nl.alt.value, @@ -177,6 +177,8 @@ var ImageDialog = { ed.undoManager.add(); } + tinyMCEPopup.editor.execCommand('mceRepaint'); + tinyMCEPopup.editor.focus(); tinyMCEPopup.close(); }, @@ -285,7 +287,7 @@ var ImageDialog = { fillFileList : function(id, l) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - l = window[l]; + l = typeof(l) === 'function' ? l() : window[l]; lst.options.length = 0; if (l && l.length > 0) { @@ -359,7 +361,7 @@ var ImageDialog = { }, updateStyle : function(ty) { - var dom = tinyMCEPopup.dom, st, v, f = document.forms[0], img = dom.create('img', {style : dom.get('style').value}); + var dom = tinyMCEPopup.dom, b, bStyle, bColor, v, isIE = tinymce.isIE, f = document.forms[0], img = dom.create('img', {style : dom.get('style').value}); if (tinyMCEPopup.editor.settings.inline_styles) { // Handle align @@ -378,14 +380,27 @@ var ImageDialog = { // Handle border if (ty == 'border') { + b = img.style.border ? img.style.border.split(' ') : []; + bStyle = dom.getStyle(img, 'border-style'); + bColor = dom.getStyle(img, 'border-color'); + dom.setStyle(img, 'border', ''); v = f.border.value; if (v || v == '0') { if (v == '0') - img.style.border = '0'; - else - img.style.border = v + 'px solid black'; + img.style.border = isIE ? '0' : '0 none none'; + else { + if (b.length == 3 && b[isIE ? 2 : 1]) + bStyle = b[isIE ? 2 : 1]; + else if (!bStyle || bStyle == 'none') + bStyle = 'solid'; + if (b.length == 3 && b[isIE ? 0 : 2]) + bColor = b[isIE ? 0 : 2]; + else if (!bColor || bColor == 'none') + bColor = 'black'; + img.style.border = v + 'px ' + bStyle + ' ' + bColor; + } } } diff --git a/plugins/TinyMCE/js/plugins/advimage/langs/en_dlg.js b/plugins/TinyMCE/js/plugins/advimage/langs/en_dlg.js index f493d196fa..d8f11e0303 100644 --- a/plugins/TinyMCE/js/plugins/advimage/langs/en_dlg.js +++ b/plugins/TinyMCE/js/plugins/advimage/langs/en_dlg.js @@ -28,6 +28,8 @@ alt:"Image description", list:"Image list", border:"Border", dimensions:"Dimensions", +width:"Width", +height:"Height", vspace:"Vertical space", hspace:"Horizontal space", align:"Alignment", diff --git a/plugins/TinyMCE/js/plugins/advlink/js/advlink.js b/plugins/TinyMCE/js/plugins/advlink/js/advlink.js index b78e82f76b..837c937c66 100644 --- a/plugins/TinyMCE/js/plugins/advlink/js/advlink.js +++ b/plugins/TinyMCE/js/plugins/advlink/js/advlink.js @@ -30,8 +30,6 @@ function init() { document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','advlink'); document.getElementById('popupurlbrowsercontainer').innerHTML = getBrowserHTML('popupurlbrowser','popupurl','file','advlink'); - document.getElementById('linklisthrefcontainer').innerHTML = getLinkListHTML('linklisthref','href'); - document.getElementById('anchorlistcontainer').innerHTML = getAnchorListHTML('anchorlist','href'); document.getElementById('targetlistcontainer').innerHTML = getTargetListHTML('targetlist','target'); // Link list @@ -41,6 +39,13 @@ function init() { else document.getElementById("linklisthrefcontainer").innerHTML = html; + // Anchor list + html = getAnchorListHTML('anchorlist','href'); + if (html == "") + document.getElementById("anchorlistrow").style.display = 'none'; + else + document.getElementById("anchorlistcontainer").innerHTML = html; + // Resize some elements if (isVisible('hrefbrowser')) document.getElementById('href').style.width = '260px'; @@ -360,20 +365,22 @@ function setAttrib(elm, attrib, value) { } function getAnchorListHTML(id, target) { - var inst = tinyMCEPopup.editor; - var nodes = inst.dom.select('a.mceItemAnchor,img.mceItemAnchor'), name, i; - var html = ""; + var ed = tinyMCEPopup.editor, nodes = ed.dom.select('a'), name, i, len, html = ""; - html += ''; + if (html == "") + return ""; + + html = ''; return html; } @@ -389,7 +396,6 @@ function insertAction() { // Remove element if there is no href if (!document.forms[0].href.value) { - tinyMCEPopup.execCommand("mceBeginUndoLevel"); i = inst.selection.getBookmark(); inst.dom.remove(elm, 1); inst.selection.moveToBookmark(i); @@ -398,12 +404,10 @@ function insertAction() { return; } - tinyMCEPopup.execCommand("mceBeginUndoLevel"); - // Create new anchor elements if (elm == null) { inst.getDoc().execCommand("unlink", false, null); - tinyMCEPopup.execCommand("CreateLink", false, "#mce_temp_url#", {skip_undo : 1}); + tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1}); elementArray = tinymce.grep(inst.dom.select("a"), function(n) {return inst.dom.getAttrib(n, 'href') == '#mce_temp_url#';}); for (i=0; i - -
-
+ + + + -
+
+ diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-foot-in-mouth.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-foot-in-mouth.gif index 16f68cc1e91a9b8ec6cfa0ba4e0c86f94b177f1a..c7cf1011dad0e7500e29a278b0d395b253871109 100644 GIT binary patch delta 268 zcmV+n0rURY0@eZ$M@dFFIbjk25&-lc0J)nSkq}gWCJF-k?l%Ac03rDV1poja04x9i z000sI5&%F2)8HqHP-&K zLM9f)qQm8C1c`;hGBJ_}h73g_p=1mM^9RXLyb^bpf>AvH6dpB#1`P%p2?GxRIXezw z7zGP+3jz%k3l2poa}fvt8yf%!5pp93KMDvH92^x0V-7i+EDszR8Bewx4-y8WehLpR z33wR8E)NQeD=m2M7#-8v+{*T!alCd#3 z1p^Ir4Fi-428xUrkd&O950`xk9-RXQ4F(zs0}qJ@2n?ee0ving0HzHddj}8`MGLmU z8UhImO%o-q#)2Cf00I^Q4_>?<5El-{nhOg84HOFw7eOBf7YG&%hkqFs2p3Q(*Aoat UP6!j@HP+?<{sHjFeFy;nJK@hu1^@s6 diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-laughing.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-laughing.gif index 1606c119e75678c4031f384e0d50849906e8f533..82c5b182e61d32bd394acae551eff180f1eebd26 100644 GIT binary patch delta 269 zcmV+o0rLLX0@nf%M@dFFIbjk25&-lc0K%p+kq}gWQaug+`&s}103rDV1poja04x9i z000sI5&%F2)ZizIQ)!l?Xh>A$7VskoPwh#@I9<*GEDONFahaqh2L%Pf;kcR*isE3L zI2Im3A3bNpK_?^9QN%xH_GCzT(kPR|yLU7KDX_2pAAJa~A*# z2^9-;8v_d!2?_v3DRU7A5(5Jg2N7~31{ezo9uTY$9)TD+oGcI(4STm0Q4*wpwG|r; zF2ODk2{(g0w~m91nJ)p)P~b0v=TXuJkV0)pK%`hRH&5(aq`SQQ0|4*~)Y zj~;||h6NmskCzV%0uYjV3kVjWqM-;FoP`G(WCRQW7Z(8x1b=r16AlX=0u2`oB@7o0 z3LXm%B?eNu8w9Vj0v=tq9}^cH3JDbp8v_d!2?`w-K_3Pe2MZcXM;Z$U7f&hF4hJ0z U3mpdz;x*Id4FABSjR*k%I|lSgp8x;= diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-sealed.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-sealed.gif index b33d3cca1e7b8e62dc689880074d5c61f619520d..fe66220c24b4da4526818a5d68f75a06d9985a29 100644 GIT binary patch delta 249 zcmVc6jM@dFFIbjk25&-lc0Klpjkq}gWQauaR#xDQ>03rDV1poja04x9i z000sI5&%F2z~Co}Q)!l?s2E!2QdA zP6EM+V$0o5egPxNVelL@nuEvS5Py&l$*VJWNgmaeBy#Fc3>i3Y6%ZGOhlmgrZX^W= z8v_Gi8wdrADnAk!5DyO!7!pA_ZyYQc4;~&as7@LN99jl)E**3kv`;r%EDsR|k-xtS zxe5rp69ipb1YdXxI|zjY71PuN7Z3uIlM@dFFIbjk25&+Z_08%{*kq}gWz^WJ3#xDQ>03rDV0RR9W04x9i z000sI5&!@N!r&*0Q)!lCN*2gA3>#8RD(M*Bp=pO_IJA@^(ve^wj|T)J=|mKx31Xqy zL>`%J1fp3WXcLY>lX-YN*)vvS;FJ&#NtObb*E5pGS7DH60e65|cm@i5WOEb=0u&Si zj}nDqhYt}3FPE1Kk%oN{C!Z4r8Io|G1cs;z1QS;X3KIcN6RD}J9RVd52oM(p6~Dj) z7Z3;+U=_R<%FD|T6+s^g3=I$w7#0>7TMZ0QDH9g~2t-Z@0md~SvlqY>7q2NH06S3N BNLv5^ diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-smile.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-smile.gif index e6a9e60d5ddd1243fbbf2197b4dc6cd9c1b58b93..fd27edfaaa29a70a8c4563c0eab9f18c74d374fd 100644 GIT binary patch delta 270 zcmV+p0rCFX0@wl&M@dFFIbjk25&-lc0C`{zkq}gWCJF+oiUI%t03rDV1poja04x9i z000sI5&%F2)!-+JP-&K7%&eE7zha(Mk#X<1{oe683qw@BL@`@2pbbn6B`H)6*`?PtqlrLxC~PZrGN+% zE&vU~#TXL^jVmoMhlVv1IR^#>3>*Rg2{s7;0vrr}2N2W=TMrHb0uEwT<0=*g4h65Q U1r7!lv`7aQ0sjH?nF;{_JD=x5hyVZp delta 271 zcmV+q0r39V0@(r(M@dFFIbjk25&+Z?0453okq}gWd0-BziUI%t03rDV0RR9W04x9i z000sI5&!@N*5D_KP-&K9N=8QJd6^MGDoHFCB1y=#5VX{x;y`RB48~-Ga8wQ>h#?`F zTrSD$M3OMjAdy9t(NHAIO37j-Eo?9tg#s>zZwlT+1~Gwm8h(Hn69^dx2V!s-3=a<+ z0|Oj(k{b($iHwq&l93aYdI$^y9-5LK0}m612L=TU90DB)k_jCG91M5|5EKp@jU52N z03D4R4iqJ;3BC^w0s;=jUAi9-78(f%i;WBz2niY%K_3Se1`Y*FM+FWB7EmeH6b2d& V4jKj&;x*Of0sjHsjr$M+06RN6NSOct diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-surprised.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-surprised.gif index cb99cdd9136fa30462a9f57aa6a0adeb7e4124e7..0cc9bb71cca4cdeafbb248ce7e07c3708c1cbd64 100644 GIT binary patch delta 264 zcmV+j0r&pa0@4ByM@dFFIbjk25&-lc0Q=+`kq}gWC=3F`xI_Q|03rDV1poja04x9i z000sI5&%F2&)_GDP-&KpRzaw7*n2_6C!6#^a!K{=W%7!?bX615c=6B?o`2^cO2 zcoM=c7zsElEfNF+&d-7v$p#C7H3(h^g0}_-5C=(GGudGrRNg8V1`i7u92^)64+a;o OM+X-H`T_N$Apkpuj7YZt delta 268 zcmV+n0rURS0@eZ$M@dFFIbjk25&+Z?04NLskq}gW`{WwLxI_Q|03rDV0RR9W04x9i z000sI5&!@N)8HqHP-&K9N=AmpFq#oTDp_dDHci{26|~f$@kn?Cm5RWVcr*?ph(R$C zG%6BFr6HIo3^YhYGr?3AiY&T{^|8V7w7SrQHo z1RaiZ6q6i?idh5$nwygp7?wp6oeuy28l4>&4~Yf~qLT=v2%Qpp2M`ty9FQFur2rir z1RM_*B?nWxk+Q-ZU$-9+7Yzyt5(*g^X$cAq7eOBf7X}Xt7#tiJ3l9btP$|+D21HH< S7T-0|;sN{t?%*Fn0028#VNAdP diff --git a/plugins/TinyMCE/js/plugins/emotions/img/smiley-wink.gif b/plugins/TinyMCE/js/plugins/emotions/img/smiley-wink.gif index 9faf1aff8f4b28e02f4f414975fe1859c43b6b54..0631c7616ec8624ddeee02b633326f697ee72f80 100644 GIT binary patch delta 276 zcmV+v0qg$X0^R};M@dFFIbjk25&-lc0MWuJkq}gWC=CMr@j3ti03rDV1poja04x9i z000sI5&%F2+u$dPQfZc>h%k}mS_`xd!)9v?GD=uwG!#n1P{Bx25L@HjmHz$20{ z93>Ts1_E((z8wcwL#Z4|1qR^|i5v)w!ugXVXaI_D!lF>PGz3-%90v;n3^s`y30029B7)0Cv delta 277 zcmV+w0qXwV0^b4/i);if(f&&f[1]){l=f[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g);if(l){for(c=0,e=l.length;c",a);h.head=f.substring(0,a+1);j=f.indexOf("\n'}h.head+=d.getParam("fullpage_default_doctype",'');h.head+="\n\n\n"+d.getParam("fullpage_default_title","Untitled document")+"\n";if(g=d.getParam("fullpage_default_encoding")){h.head+='\n'}if(g=d.getParam("fullpage_default_font_family")){i+="font-family: "+g+";"}if(g=d.getParam("fullpage_default_font_size")){i+="font-size: "+g+";"}if(g=d.getParam("fullpage_default_text_color")){i+="color: "+g+";"}h.head+="\n\n";h.foot="\n\n"}},_getContent:function(a,c){var b=this;if(!c.source_view||!a.getParam("fullpage_hide_in_source_view")){c.content=tinymce.trim(b.head)+"\n"+tinymce.trim(c.content)+"\n"+tinymce.trim(b.foot)}}});tinymce.PluginManager.add("fullpage",tinymce.plugins.FullPagePlugin)})(); \ No newline at end of file +(function(){var b=tinymce.each,a=tinymce.html.Node;tinymce.create("tinymce.plugins.FullPagePlugin",{init:function(c,d){var e=this;e.editor=c;c.addCommand("mceFullPageProperties",function(){c.windowManager.open({file:d+"/fullpage.htm",width:430+parseInt(c.getLang("fullpage.delta_width",0)),height:495+parseInt(c.getLang("fullpage.delta_height",0)),inline:1},{plugin_url:d,data:e._htmlToData()})});c.addButton("fullpage",{title:"fullpage.desc",cmd:"mceFullPageProperties"});c.onBeforeSetContent.add(e._setContent,e);c.onGetContent.add(e._getContent,e)},getInfo:function(){return{longname:"Fullpage",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_htmlToData:function(){var f=this._parseHeader(),h={},c,i,g,e=this.editor;function d(l,j){var k=l.attr(j);return k||""}h.fontface=e.getParam("fullpage_default_fontface","");h.fontsize=e.getParam("fullpage_default_fontsize","");i=f.firstChild;if(i.type==7){h.xml_pi=true;g=/encoding="([^"]+)"/.exec(i.value);if(g){h.docencoding=g[1]}}i=f.getAll("#doctype")[0];if(i){h.doctype=""}i=f.getAll("title")[0];if(i&&i.firstChild){h.metatitle=i.firstChild.value}b(f.getAll("meta"),function(m){var k=m.attr("name"),j=m.attr("http-equiv"),l;if(k){h["meta"+k.toLowerCase()]=m.attr("content")}else{if(j=="Content-Type"){l=/charset\s*=\s*(.*)\s*/gi.exec(m.attr("content"));if(l){h.docencoding=l[1]}}}});i=f.getAll("html")[0];if(i){h.langcode=d(i,"lang")||d(i,"xml:lang")}i=f.getAll("link")[0];if(i&&i.attr("rel")=="stylesheet"){h.stylesheet=i.attr("href")}i=f.getAll("body")[0];if(i){h.langdir=d(i,"dir");h.style=d(i,"style");h.visited_color=d(i,"vlink");h.link_color=d(i,"link");h.active_color=d(i,"alink")}return h},_dataToHtml:function(g){var f,d,h,j,k,e=this.editor.dom;function c(n,l,m){n.attr(l,m?m:undefined)}function i(l){if(d.firstChild){d.insert(l,d.firstChild)}else{d.append(l)}}f=this._parseHeader();d=f.getAll("head")[0];if(!d){j=f.getAll("html")[0];d=new a("head",1);if(j.firstChild){j.insert(d,j.firstChild,true)}else{j.append(d)}}j=f.firstChild;if(g.xml_pi){k='version="1.0"';if(g.docencoding){k+=' encoding="'+g.docencoding+'"'}if(j.type!=7){j=new a("xml",7);f.insert(j,f.firstChild,true)}j.value=k}else{if(j&&j.type==7){j.remove()}}j=f.getAll("#doctype")[0];if(g.doctype){if(!j){j=new a("#doctype",10);if(g.xml_pi){f.insert(j,f.firstChild)}else{i(j)}}j.value=g.doctype.substring(9,g.doctype.length-1)}else{if(j){j.remove()}}j=f.getAll("title")[0];if(g.metatitle){if(!j){j=new a("title",1);j.append(new a("#text",3)).value=g.metatitle;i(j)}}if(g.docencoding){j=null;b(f.getAll("meta"),function(l){if(l.attr("http-equiv")=="Content-Type"){j=l}});if(!j){j=new a("meta",1);j.attr("http-equiv","Content-Type");j.shortEnded=true;i(j)}j.attr("content","text/html; charset="+g.docencoding)}b("keywords,description,author,copyright,robots".split(","),function(m){var l=f.getAll("meta"),n,p,o=g["meta"+m];for(n=0;n"))},_parseHeader:function(){return new tinymce.html.DomParser({validate:false,root_name:"#document"}).parse(this.head)},_setContent:function(g,d){var m=this,i,c,h=d.content,f,l="",e=m.editor.dom,j;function k(n){return n.replace(/<\/?[A-Z]+/g,function(o){return o.toLowerCase()})}if(d.format=="raw"&&m.head){return}if(d.source_view&&g.getParam("fullpage_hide_in_source_view")){return}h=h.replace(/<(\/?)BODY/gi,"<$1body");i=h.indexOf("",i);m.head=k(h.substring(0,i+1));c=h.indexOf("\n"}f=m._parseHeader();b(f.getAll("style"),function(n){if(n.firstChild){l+=n.firstChild.value}});j=f.getAll("body")[0];if(j){e.setAttribs(m.editor.getBody(),{style:j.attr("style")||"",dir:j.attr("dir")||"",vLink:j.attr("vlink")||"",link:j.attr("link")||"",aLink:j.attr("alink")||""})}if(l){e.add(m.editor.getDoc().getElementsByTagName("head")[0],"style",{id:"fullpage_styles"},l)}else{e.remove("fullpage_styles")}},_getDefaultHeader:function(){var f="",c=this.editor,e,d="";if(c.getParam("fullpage_default_xml_pi")){f+='\n'}f+=c.getParam("fullpage_default_doctype",'');f+="\n\n\n";if(e=c.getParam("fullpage_default_title")){f+=""+e+"\n"}if(e=c.getParam("fullpage_default_encoding")){f+='\n'}if(e=c.getParam("fullpage_default_font_family")){d+="font-family: "+e+";"}if(e=c.getParam("fullpage_default_font_size")){d+="font-size: "+e+";"}if(e=c.getParam("fullpage_default_text_color")){d+="color: "+e+";"}f+="\n\n";return f},_getContent:function(d,e){var c=this;if(!e.source_view||!d.getParam("fullpage_hide_in_source_view")){e.content=tinymce.trim(c.head)+"\n"+tinymce.trim(e.content)+"\n"+tinymce.trim(c.foot)}}});tinymce.PluginManager.add("fullpage",tinymce.plugins.FullPagePlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/fullpage/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/fullpage/editor_plugin_src.js index a2c9df8987..5725b56152 100644 --- a/plugins/TinyMCE/js/plugins/fullpage/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/fullpage/editor_plugin_src.js @@ -9,6 +9,8 @@ */ (function() { + var each = tinymce.each, Node = tinymce.html.Node; + tinymce.create('tinymce.plugins.FullPagePlugin', { init : function(ed, url) { var t = this; @@ -24,7 +26,7 @@ inline : 1 }, { plugin_url : url, - head_html : t.head + data : t._htmlToData() }); }); @@ -32,7 +34,6 @@ ed.addButton('fullpage', {title : 'fullpage.desc', cmd : 'mceFullPageProperties'}); ed.onBeforeSetContent.add(t._setContent, t); - ed.onSetContent.add(t._setBodyAttribs, t); ed.onGetContent.add(t._getContent, t); }, @@ -48,106 +49,351 @@ // Private plugin internal methods - _setBodyAttribs : function(ed, o) { - var bdattr, i, len, kv, k, v, t, attr = this.head.match(/body(.*?)>/i); + _htmlToData : function() { + var headerFragment = this._parseHeader(), data = {}, nodes, elm, matches, editor = this.editor; - if (attr && attr[1]) { - bdattr = attr[1].match(/\s*(\w+\s*=\s*".*?"|\w+\s*=\s*'.*?'|\w+\s*=\s*\w+|\w+)\s*/g); + function getAttr(elm, name) { + var value = elm.attr(name); - if (bdattr) { - for(i = 0, len = bdattr.length; i < len; i++) { - kv = bdattr[i].split('='); - k = kv[0].replace(/\s/,''); - v = kv[1]; + return value || ''; + }; - if (v) { - v = v.replace(/^\s+/,'').replace(/\s+$/,''); - t = v.match(/^["'](.*)["']$/); + // Default some values + data.fontface = editor.getParam("fullpage_default_fontface", ""); + data.fontsize = editor.getParam("fullpage_default_fontsize", ""); - if (t) - v = t[1]; - } else - v = k; - - ed.dom.setAttrib(ed.getBody(), 'style', v); - } - } + // Parse XML PI + elm = headerFragment.firstChild; + if (elm.type == 7) { + data.xml_pi = true; + matches = /encoding="([^"]+)"/.exec(elm.value); + if (matches) + data.docencoding = matches[1]; } + + // Parse doctype + elm = headerFragment.getAll('#doctype')[0]; + if (elm) + data.doctype = '"; + + // Parse title element + elm = headerFragment.getAll('title')[0]; + if (elm && elm.firstChild) { + data.metatitle = elm.firstChild.value; + } + + // Parse meta elements + each(headerFragment.getAll('meta'), function(meta) { + var name = meta.attr('name'), httpEquiv = meta.attr('http-equiv'), matches; + + if (name) + data['meta' + name.toLowerCase()] = meta.attr('content'); + else if (httpEquiv == "Content-Type") { + matches = /charset\s*=\s*(.*)\s*/gi.exec(meta.attr('content')); + + if (matches) + data.docencoding = matches[1]; + } + }); + + // Parse html attribs + elm = headerFragment.getAll('html')[0]; + if (elm) + data.langcode = getAttr(elm, 'lang') || getAttr(elm, 'xml:lang'); + + // Parse stylesheet + elm = headerFragment.getAll('link')[0]; + if (elm && elm.attr('rel') == 'stylesheet') + data.stylesheet = elm.attr('href'); + + // Parse body parts + elm = headerFragment.getAll('body')[0]; + if (elm) { + data.langdir = getAttr(elm, 'dir'); + data.style = getAttr(elm, 'style'); + data.visited_color = getAttr(elm, 'vlink'); + data.link_color = getAttr(elm, 'link'); + data.active_color = getAttr(elm, 'alink'); + } + + return data; }, - _createSerializer : function() { - return new tinymce.dom.Serializer({ - dom : this.editor.dom, - apply_source_formatting : true + _dataToHtml : function(data) { + var headerFragment, headElement, html, elm, value, dom = this.editor.dom; + + function setAttr(elm, name, value) { + elm.attr(name, value ? value : undefined); + }; + + function addHeadNode(node) { + if (headElement.firstChild) + headElement.insert(node, headElement.firstChild); + else + headElement.append(node); + }; + + headerFragment = this._parseHeader(); + headElement = headerFragment.getAll('head')[0]; + if (!headElement) { + elm = headerFragment.getAll('html')[0]; + headElement = new Node('head', 1); + + if (elm.firstChild) + elm.insert(headElement, elm.firstChild, true); + else + elm.append(headElement); + } + + // Add/update/remove XML-PI + elm = headerFragment.firstChild; + if (data.xml_pi) { + value = 'version="1.0"'; + + if (data.docencoding) + value += ' encoding="' + data.docencoding + '"'; + + if (elm.type != 7) { + elm = new Node('xml', 7); + headerFragment.insert(elm, headerFragment.firstChild, true); + } + + elm.value = value; + } else if (elm && elm.type == 7) + elm.remove(); + + // Add/update/remove doctype + elm = headerFragment.getAll('#doctype')[0]; + if (data.doctype) { + if (!elm) { + elm = new Node('#doctype', 10); + + if (data.xml_pi) + headerFragment.insert(elm, headerFragment.firstChild); + else + addHeadNode(elm); + } + + elm.value = data.doctype.substring(9, data.doctype.length - 1); + } else if (elm) + elm.remove(); + + // Add/update/remove title + elm = headerFragment.getAll('title')[0]; + if (data.metatitle) { + if (!elm) { + elm = new Node('title', 1); + elm.append(new Node('#text', 3)).value = data.metatitle; + addHeadNode(elm); + } + } + + // Add meta encoding + if (data.docencoding) { + elm = null; + each(headerFragment.getAll('meta'), function(meta) { + if (meta.attr('http-equiv') == 'Content-Type') + elm = meta; + }); + + if (!elm) { + elm = new Node('meta', 1); + elm.attr('http-equiv', 'Content-Type'); + elm.shortEnded = true; + addHeadNode(elm); + } + + elm.attr('content', 'text/html; charset=' + data.docencoding); + } + + // Add/update/remove meta + each('keywords,description,author,copyright,robots'.split(','), function(name) { + var nodes = headerFragment.getAll('meta'), i, meta, value = data['meta' + name]; + + for (i = 0; i < nodes.length; i++) { + meta = nodes[i]; + + if (meta.attr('name') == name) { + if (value) + meta.attr('content', value); + else + meta.remove(); + + return; + } + } + + if (value) { + elm = new Node('meta', 1); + elm.attr('name', name); + elm.attr('content', value); + elm.shortEnded = true; + + addHeadNode(elm); + } }); + + // Add/update/delete link + elm = headerFragment.getAll('link')[0]; + if (elm && elm.attr('rel') == 'stylesheet') { + if (data.stylesheet) + elm.attr('href', data.stylesheet); + else + elm.remove(); + } else if (data.stylesheet) { + elm = new Node('link', 1); + elm.attr({ + rel : 'stylesheet', + text : 'text/css', + href : data.stylesheet + }); + elm.shortEnded = true; + + addHeadNode(elm); + } + + // Update body attributes + elm = headerFragment.getAll('body')[0]; + if (elm) { + setAttr(elm, 'dir', data.langdir); + setAttr(elm, 'style', data.style); + setAttr(elm, 'vlink', data.visited_color); + setAttr(elm, 'link', data.link_color); + setAttr(elm, 'alink', data.active_color); + + // Update iframe body as well + dom.setAttribs(this.editor.getBody(), { + style : data.style, + dir : data.dir, + vLink : data.visited_color, + link : data.link_color, + aLink : data.active_color + }); + } + + // Set html attributes + elm = headerFragment.getAll('html')[0]; + if (elm) { + setAttr(elm, 'lang', data.langcode); + setAttr(elm, 'xml:lang', data.langcode); + } + + // Serialize header fragment and crop away body part + html = new tinymce.html.Serializer({ + validate: false, + indent: true, + apply_source_formatting : true, + indent_before: 'head,html,body,meta,title,script,link,style', + indent_after: 'head,html,body,meta,title,script,link,style' + }).serialize(headerFragment); + + this.head = html.substring(0, html.indexOf('')); + }, + + _parseHeader : function() { + // Parse the contents with a DOM parser + return new tinymce.html.DomParser({ + validate: false, + root_name: '#document' + }).parse(this.head); }, _setContent : function(ed, o) { - var t = this, sp, ep, c = o.content, v, st = ''; + var self = this, startPos, endPos, content = o.content, headerFragment, styles = '', dom = self.editor.dom, elm; + + function low(s) { + return s.replace(/<\/?[A-Z]+/g, function(a) { + return a.toLowerCase(); + }) + }; // Ignore raw updated if we already have a head, this will fix issues with undo/redo keeping the head/foot separate - if (o.format == 'raw' && t.head) + if (o.format == 'raw' && self.head) return; if (o.source_view && ed.getParam('fullpage_hide_in_source_view')) return; // Parse out head, body and footer - c = c.replace(/<(\/?)BODY/gi, '<$1body'); - sp = c.indexOf('', sp); - t.head = c.substring(0, sp + 1); + if (startPos != -1) { + startPos = content.indexOf('>', startPos); + self.head = low(content.substring(0, startPos + 1)); - ep = c.indexOf('\n'; - - t.head += ed.getParam('fullpage_default_doctype', ''); - t.head += '\n\n\n' + ed.getParam('fullpage_default_title', 'Untitled document') + '\n'; - - if (v = ed.getParam('fullpage_default_encoding')) - t.head += '\n'; - - if (v = ed.getParam('fullpage_default_font_family')) - st += 'font-family: ' + v + ';'; - - if (v = ed.getParam('fullpage_default_font_size')) - st += 'font-size: ' + v + ';'; - - if (v = ed.getParam('fullpage_default_text_color')) - st += 'color: ' + v + ';'; - - t.head += '\n\n'; - t.foot = '\n\n'; + self.head = this._getDefaultHeader(); + self.foot = '\n\n'; } + + // Parse header and update iframe + headerFragment = self._parseHeader(); + each(headerFragment.getAll('style'), function(node) { + if (node.firstChild) + styles += node.firstChild.value; + }); + + elm = headerFragment.getAll('body')[0]; + if (elm) { + dom.setAttribs(self.editor.getBody(), { + style : elm.attr('style') || '', + dir : elm.attr('dir') || '', + vLink : elm.attr('vlink') || '', + link : elm.attr('link') || '', + aLink : elm.attr('alink') || '' + }); + } + + if (styles) + dom.add(self.editor.getDoc().getElementsByTagName('head')[0], 'style', {id : 'fullpage_styles'}, styles); + else + dom.remove('fullpage_styles'); + }, + + _getDefaultHeader : function() { + var header = '', editor = this.editor, value, styles = ''; + + if (editor.getParam('fullpage_default_xml_pi')) + header += '\n'; + + header += editor.getParam('fullpage_default_doctype', ''); + header += '\n\n\n'; + + if (value = editor.getParam('fullpage_default_title')) + header += '' + value + '\n'; + + if (value = editor.getParam('fullpage_default_encoding')) + header += '\n'; + + if (value = editor.getParam('fullpage_default_font_family')) + styles += 'font-family: ' + value + ';'; + + if (value = editor.getParam('fullpage_default_font_size')) + styles += 'font-size: ' + value + ';'; + + if (value = editor.getParam('fullpage_default_text_color')) + styles += 'color: ' + value + ';'; + + header += '\n\n'; + + return header; }, _getContent : function(ed, o) { - var t = this; + var self = this; if (!o.source_view || !ed.getParam('fullpage_hide_in_source_view')) - o.content = tinymce.trim(t.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(t.foot); + o.content = tinymce.trim(self.head) + '\n' + tinymce.trim(o.content) + '\n' + tinymce.trim(self.foot); } }); // Register plugin tinymce.PluginManager.add('fullpage', tinymce.plugins.FullPagePlugin); -})(); \ No newline at end of file +})(); diff --git a/plugins/TinyMCE/js/plugins/fullpage/fullpage.htm b/plugins/TinyMCE/js/plugins/fullpage/fullpage.htm index c32afaf2d9..14ab8652ea 100644 --- a/plugins/TinyMCE/js/plugins/fullpage/fullpage.htm +++ b/plugins/TinyMCE/js/plugins/fullpage/fullpage.htm @@ -8,13 +8,12 @@ - -
+ + @@ -72,9 +71,9 @@
   -
-
- - +
 
@@ -147,7 +146,7 @@
- +
 
@@ -158,7 +157,7 @@
- +
 
@@ -173,15 +172,15 @@ - + - + - + - +
@@ -195,7 +194,7 @@
- +
@@ -205,7 +204,7 @@
- +
 
@@ -217,7 +216,7 @@
- +
 
@@ -225,16 +224,6 @@
   
@@ -254,318 +243,17 @@ - + - -
- - -
- {#fullpage_dlg.head_elements} - -
-
-
- - -
-
- - -
-
-
- -
-
- -
- {#fullpage_dlg.meta_element} - - - - - - - - - - - - - - -
- - -
- -
- {#fullpage_dlg.title_element} - - - - - - -
- - -
- -
- {#fullpage_dlg.script_element} - - - -
- -
-
- - - - - - - - - - - - - - - - - -
- - - - -
 
-
- -
- -
-
- - -
- -
- {#fullpage_dlg.style_element} - - - -
- -
-
- - - - - - - - - -
-
- -
- -
-
- - -
- -
- {#fullpage_dlg.base_element} - - - - - - - - - - -
- - -
- - - -
- {#fullpage_dlg.comment_element} - - - - -
-
- + diff --git a/plugins/TinyMCE/js/plugins/fullpage/js/fullpage.js b/plugins/TinyMCE/js/plugins/fullpage/js/fullpage.js index a1bb719a38..3f672ad3ba 100644 --- a/plugins/TinyMCE/js/plugins/fullpage/js/fullpage.js +++ b/plugins/TinyMCE/js/plugins/fullpage/js/fullpage.js @@ -8,464 +8,225 @@ * Contributing: http://tinymce.moxiecode.com/contributing */ -tinyMCEPopup.requireLangPack(); +(function() { + tinyMCEPopup.requireLangPack(); -var doc; + var defaultDocTypes = + 'XHTML 1.0 Transitional=,' + + 'XHTML 1.0 Frameset=,' + + 'XHTML 1.0 Strict=,' + + 'XHTML 1.1=,' + + 'HTML 4.01 Transitional=,' + + 'HTML 4.01 Strict=,' + + 'HTML 4.01 Frameset='; -var defaultDocTypes = - 'XHTML 1.0 Transitional=,' + - 'XHTML 1.0 Frameset=,' + - 'XHTML 1.0 Strict=,' + - 'XHTML 1.1=,' + - 'HTML 4.01 Transitional=,' + - 'HTML 4.01 Strict=,' + - 'HTML 4.01 Frameset='; + var defaultEncodings = + 'Western european (iso-8859-1)=iso-8859-1,' + + 'Central European (iso-8859-2)=iso-8859-2,' + + 'Unicode (UTF-8)=utf-8,' + + 'Chinese traditional (Big5)=big5,' + + 'Cyrillic (iso-8859-5)=iso-8859-5,' + + 'Japanese (iso-2022-jp)=iso-2022-jp,' + + 'Greek (iso-8859-7)=iso-8859-7,' + + 'Korean (iso-2022-kr)=iso-2022-kr,' + + 'ASCII (us-ascii)=us-ascii'; -var defaultEncodings = - 'Western european (iso-8859-1)=iso-8859-1,' + - 'Central European (iso-8859-2)=iso-8859-2,' + - 'Unicode (UTF-8)=utf-8,' + - 'Chinese traditional (Big5)=big5,' + - 'Cyrillic (iso-8859-5)=iso-8859-5,' + - 'Japanese (iso-2022-jp)=iso-2022-jp,' + - 'Greek (iso-8859-7)=iso-8859-7,' + - 'Korean (iso-2022-kr)=iso-2022-kr,' + - 'ASCII (us-ascii)=us-ascii'; + var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings'; + var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px'; -var defaultMediaTypes = - 'all=all,' + - 'screen=screen,' + - 'print=print,' + - 'tty=tty,' + - 'tv=tv,' + - 'projection=projection,' + - 'handheld=handheld,' + - 'braille=braille,' + - 'aural=aural'; + function setVal(id, value) { + var elm = document.getElementById(id); -var defaultFontNames = 'Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings'; -var defaultFontSizes = '10px,11px,12px,13px,14px,15px,16px'; + if (elm) { + value = value || ''; -function init() { - var f = document.forms['fullpage'], el = f.elements, e, i, p, doctypes, encodings, mediaTypes, fonts, ed = tinyMCEPopup.editor, dom = tinyMCEPopup.dom, style; - - // Setup doctype select box - doctypes = ed.getParam("fullpage_doctypes", defaultDocTypes).split(','); - for (i=0; i 1) - addSelectValue(f, 'doctypes', p[0], p[1]); - } - - // Setup fonts select box - fonts = ed.getParam("fullpage_fonts", defaultFontNames).split(';'); - for (i=0; i 1) - addSelectValue(f, 'fontface', p[0], p[1]); - } - - // Setup fontsize select box - fonts = ed.getParam("fullpage_fontsizes", defaultFontSizes).split(','); - for (i=0; i 1) { - addSelectValue(f, 'element_style_media', p[0], p[1]); - addSelectValue(f, 'element_link_media', p[0], p[1]); - } - } - - // Setup encodings select box - encodings = ed.getParam("fullpage_encodings", defaultEncodings).split(','); - for (i=0; i 1) { - addSelectValue(f, 'docencoding', p[0], p[1]); - addSelectValue(f, 'element_script_charset', p[0], p[1]); - addSelectValue(f, 'element_link_charset', p[0], p[1]); - } - } - - document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); - document.getElementById('link_color_pickcontainer').innerHTML = getColorPickerHTML('link_color_pick','link_color'); - //document.getElementById('hover_color_pickcontainer').innerHTML = getColorPickerHTML('hover_color_pick','hover_color'); - document.getElementById('visited_color_pickcontainer').innerHTML = getColorPickerHTML('visited_color_pick','visited_color'); - document.getElementById('active_color_pickcontainer').innerHTML = getColorPickerHTML('active_color_pick','active_color'); - document.getElementById('textcolor_pickcontainer').innerHTML = getColorPickerHTML('textcolor_pick','textcolor'); - document.getElementById('stylesheet_browsercontainer').innerHTML = getBrowserHTML('stylesheetbrowser','stylesheet','file','fullpage'); - document.getElementById('link_href_pickcontainer').innerHTML = getBrowserHTML('link_href_browser','element_link_href','file','fullpage'); - document.getElementById('script_src_pickcontainer').innerHTML = getBrowserHTML('script_src_browser','element_script_src','file','fullpage'); - document.getElementById('bgimage_pickcontainer').innerHTML = getBrowserHTML('bgimage_browser','bgimage','image','fullpage'); - - // Resize some elements - if (isVisible('stylesheetbrowser')) - document.getElementById('stylesheet').style.width = '220px'; - - if (isVisible('link_href_browser')) - document.getElementById('element_link_href').style.width = '230px'; - - if (isVisible('bgimage_browser')) - document.getElementById('bgimage').style.width = '210px'; - - // Add iframe - dom.add(document.body, 'iframe', {id : 'documentIframe', src : 'javascript:""', style : {display : 'none'}}); - doc = dom.get('documentIframe').contentWindow.document; - h = tinyMCEPopup.getWindowArg('head_html'); - - // Preprocess the HTML disable scripts and urls - h = h.replace(/'; - } - - return im; - }); - } - }); + return urlConverter.call(urlConverterScope, url, 'src', 'object'); }, getInfo : function() { @@ -202,210 +223,552 @@ }; }, - // Private methods - _objectsToSpans : function(ed, o) { - var t = this, h = o.content; + /** + * Converts the JSON data object to an img node. + */ + dataToImg : function(data, force_absolute) { + var self = this, editor = self.editor, baseUri = editor.documentBaseURI, sources, attrs, img, i; - h = h.replace(/]*>\s*write(Flash|ShockWave|WindowsMedia|QuickTime|RealMedia)\(\{([^\)]*)\}\);\s*<\/script>/gi, function(a, b, c) { - var o = t._parse(c); + data.params.src = self.convertUrl(data.params.src, force_absolute); - return '' + attrs = data.video.attrs; + if (attrs) + attrs.src = self.convertUrl(attrs.src, force_absolute); + + if (attrs) + attrs.poster = self.convertUrl(attrs.poster, force_absolute); + + sources = toArray(data.video.sources); + if (sources) { + for (i = 0; i < sources.length; i++) + sources[i].src = self.convertUrl(sources[i].src, force_absolute); + } + + img = self.editor.dom.create('img', { + id : data.id, + style : data.style, + align : data.align, + src : self.editor.theme.url + '/img/trans.gif', + 'class' : 'mceItemMedia mceItem' + self.getType(data.type).name, + 'data-mce-json' : JSON.serialize(data, "'") }); - h = h.replace(/]*)>/gi, ''); - h = h.replace(/]*)\/?>/gi, ''); - h = h.replace(/]*)>/gi, ''); - h = h.replace(/<\/(object)([^>]*)>/gi, ''); - h = h.replace(/<\/embed>/gi, ''); - h = h.replace(/]*)>/gi, function(a, b) {return ''}); - h = h.replace(/\/ class=\"mceItemParam\"><\/span>/gi, 'class="mceItemParam">'); + img.width = data.width || "320"; + img.height = data.height || "240"; - o.content = h; + return img; }, - _buildObj : function(o, n) { - var ob, ed = this.editor, dom = ed.dom, p = this._parse(n.title), stc; - - stc = ed.getParam('media_strict', true) && o.type == 'application/x-shockwave-flash'; + /** + * Converts the JSON data object to a HTML string. + */ + dataToHtml : function(data, force_absolute) { + return this.editor.serializer.serialize(this.dataToImg(data, force_absolute), {forced_root_block : '', force_absolute : force_absolute}); + }, - p.width = o.width = dom.getAttrib(n, 'width') || 100; - p.height = o.height = dom.getAttrib(n, 'height') || 100; + /** + * Converts the JSON data object to a HTML string. + */ + htmlToData : function(html) { + var fragment, img, data; - if (p.src) - p.src = ed.convertURL(p.src, 'src', n); + data = { + type : 'flash', + video: {sources:[]}, + params: {} + }; - if (stc) { - ob = dom.create('span', { - id : p.id, - _mce_name : 'object', - type : 'application/x-shockwave-flash', - data : p.src, - style : dom.getAttrib(n, 'style'), - width : o.width, - height : o.height - }); - } else { - ob = dom.create('span', { - id : p.id, - _mce_name : 'object', - classid : "clsid:" + o.classid, - style : dom.getAttrib(n, 'style'), - codebase : o.codebase, - width : o.width, - height : o.height + fragment = this.editor.parser.parse(html); + img = fragment.getAll('img')[0]; + + if (img) { + data = JSON.parse(img.attr('data-mce-json')); + data.type = this.getType(img.attr('class')).name.toLowerCase(); + + // Add some extra properties to the data object + tinymce.each(rootAttributes, function(name) { + var value = img.attr(name); + + if (value) + data[name] = value; }); } - each (p, function(v, k) { - if (!/^(width|height|codebase|classid|id|_cx|_cy)$/.test(k)) { - // Use url instead of src in IE for Windows media - if (o.type == 'application/x-mplayer2' && k == 'src' && !p.url) - k = 'url'; - - if (v) - dom.add(ob, 'span', {_mce_name : 'param', name : k, '_mce_value' : v}); - } - }); - - if (!stc) - dom.add(ob, 'span', tinymce.extend({_mce_name : 'embed', type : o.type, style : dom.getAttrib(n, 'style')}, p)); - - return ob; + return data; }, - _spansToImgs : function(p) { - var t = this, dom = t.editor.dom, im, ci; + /** + * Get type item by extension, class, clsid or mime type. + * + * @method getType + * @param {String} value Value to get type item by. + * @return {Object} Type item object or undefined. + */ + getType : function(value) { + var i, values, typeItem; - each(dom.select('span', p), function(n) { - // Convert object into image - if (dom.getAttrib(n, 'class') == 'mceItemObject') { - ci = dom.getAttrib(n, "classid").toLowerCase().replace(/\s+/g, ''); + // Find type by checking the classes + values = tinymce.explode(value, ' '); + for (i = 0; i < values.length; i++) { + typeItem = this.lookup[values[i]]; - switch (ci) { - case 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000': - dom.replace(t._createImg('mceItemFlash', n), n); - break; + if (typeItem) + return typeItem; + } + }, - case 'clsid:166b1bca-3f9c-11cf-8075-444553540000': - dom.replace(t._createImg('mceItemShockWave', n), n); - break; + /** + * Converts a tinymce.html.Node image element to video/object/embed. + */ + imgToObject : function(node, args) { + var self = this, editor = self.editor, video, object, embed, iframe, name, value, data, + source, sources, params, param, typeItem, i, item, mp4Source, replacement, + posterSrc, style; - case 'clsid:6bf52a52-394a-11d3-b153-00c04f79faa6': - case 'clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95': - case 'clsid:05589fa1-c356-11ce-bf01-00aa0055595a': - dom.replace(t._createImg('mceItemWindowsMedia', n), n); - break; + // Adds the flash player + function addPlayer(video_src, poster_src) { + var baseUri, flashVars, flashVarsOutput, params, flashPlayer; - case 'clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b': - dom.replace(t._createImg('mceItemQuickTime', n), n); - break; + flashPlayer = editor.getParam('flash_video_player_url', self.convertUrl(self.url + '/moxieplayer.swf')); + if (flashPlayer) { + baseUri = editor.documentBaseURI; + data.params.src = flashPlayer; - case 'clsid:cfcdaa03-8be4-11cf-b84b-0020afbbccfa': - dom.replace(t._createImg('mceItemRealMedia', n), n); - break; - - default: - dom.replace(t._createImg('mceItemFlash', n), n); + // Convert the movie url to absolute urls + if (editor.getParam('flash_video_player_absvideourl', true)) { + video_src = baseUri.toAbsolute(video_src || '', true); + poster_src = baseUri.toAbsolute(poster_src || '', true); } - + + // Generate flash vars + flashVarsOutput = ''; + flashVars = editor.getParam('flash_video_player_flashvars', {url : '$url', poster : '$poster'}); + tinymce.each(flashVars, function(value, name) { + // Replace $url and $poster variables in flashvars value + value = value.replace(/\$url/, video_src || ''); + value = value.replace(/\$poster/, poster_src || ''); + + if (value.length > 0) + flashVarsOutput += (flashVarsOutput ? '&' : '') + name + '=' + escape(value); + }); + + if (flashVarsOutput.length) + data.params.flashvars = flashVarsOutput; + + params = editor.getParam('flash_video_player_params', { + allowfullscreen: true, + allowscriptaccess: true + }); + + tinymce.each(params, function(value, name) { + data.params[name] = "" + value; + }); + } + }; + + data = node.attr('data-mce-json'); + if (!data) + return; + + data = JSON.parse(data); + typeItem = this.getType(node.attr('class')); + + style = node.attr('data-mce-style') + if (!style) { + style = node.attr('style'); + + if (style) + style = editor.dom.serializeStyle(editor.dom.parseStyle(style, 'img')); + } + + // Handle iframe + if (typeItem.name === 'Iframe') { + replacement = new Node('iframe', 1); + + tinymce.each(rootAttributes, function(name) { + var value = node.attr(name); + + if (name == 'class' && value) + value = value.replace(/mceItem.+ ?/g, ''); + + if (value && value.length > 0) + replacement.attr(name, value); + }); + + for (name in data.params) + replacement.attr(name, data.params[name]); + + replacement.attr({ + style: style, + src: data.params.src + }); + + node.replace(replacement); + + return; + } + + // Handle scripts + if (this.editor.settings.media_use_script) { + replacement = new Node('script', 1).attr('type', 'text/javascript'); + + value = new Node('#text', 3); + value.value = 'write' + typeItem.name + '(' + JSON.serialize(tinymce.extend(data.params, { + width: node.attr('width'), + height: node.attr('height') + })) + ');'; + + replacement.append(value); + node.replace(replacement); + + return; + } + + // Add HTML5 video element + if (typeItem.name === 'Video' && data.video.sources[0]) { + // Create new object element + video = new Node('video', 1).attr(tinymce.extend({ + id : node.attr('id'), + width: node.attr('width'), + height: node.attr('height'), + style : style + }, data.video.attrs)); + + // Get poster source and use that for flash fallback + if (data.video.attrs) + posterSrc = data.video.attrs.poster; + + sources = data.video.sources = toArray(data.video.sources); + for (i = 0; i < sources.length; i++) { + if (/\.mp4$/.test(sources[i].src)) + mp4Source = sources[i].src; + } + + if (!sources[0].type) { + video.attr('src', sources[0].src); + sources.splice(0, 1); + } + + for (i = 0; i < sources.length; i++) { + source = new Node('source', 1).attr(sources[i]); + source.shortEnded = true; + video.append(source); + } + + // Create flash fallback for video if we have a mp4 source + if (mp4Source) { + addPlayer(mp4Source, posterSrc); + typeItem = self.getType('flash'); + } else + data.params.src = ''; + } + + // Do we have a params src then we can generate object + if (data.params.src) { + // Is flv movie add player for it + if (/\.flv$/i.test(data.params.src)) + addPlayer(data.params.src, ''); + + if (args && args.force_absolute) + data.params.src = editor.documentBaseURI.toAbsolute(data.params.src); + + // Create new object element + object = new Node('object', 1).attr({ + id : node.attr('id'), + width: node.attr('width'), + height: node.attr('height'), + style : style + }); + + tinymce.each(rootAttributes, function(name) { + if (data[name] && name != 'type') + object.attr(name, data[name]); + }); + + // Add params + for (name in data.params) { + param = new Node('param', 1); + param.shortEnded = true; + value = data.params[name]; + + // Windows media needs to use url instead of src for the media URL + if (name === 'src' && typeItem.name === 'WindowsMedia') + name = 'url'; + + param.attr({name: name, value: value}); + object.append(param); + } + + // Setup add type and classid if strict is disabled + if (this.editor.getParam('media_strict', true)) { + object.attr({ + data: data.params.src, + type: typeItem.mimes[0] + }); + } else { + object.attr({ + classid: "clsid:" + typeItem.clsids[0], + codebase: typeItem.codebase + }); + + embed = new Node('embed', 1); + embed.shortEnded = true; + embed.attr({ + id: node.attr('id'), + width: node.attr('width'), + height: node.attr('height'), + style : style, + type: typeItem.mimes[0] + }); + + for (name in data.params) + embed.attr(name, data.params[name]); + + tinymce.each(rootAttributes, function(name) { + if (data[name] && name != 'type') + embed.attr(name, data[name]); + }); + + object.append(embed); + } + + // Insert raw HTML + if (data.object_html) { + value = new Node('#text', 3); + value.raw = true; + value.value = data.object_html; + object.append(value); + } + + // Append object to video element if it exists + if (video) + video.append(object); + } + + if (video) { + // Insert raw HTML + if (data.video_html) { + value = new Node('#text', 3); + value.raw = true; + value.value = data.video_html; + video.append(value); + } + } + + if (video || object) + node.replace(video || object); + else + node.remove(); + }, + + /** + * Converts a tinymce.html.Node video/object/embed to an img element. + * + * The video/object/embed will be converted into an image placeholder with a JSON data attribute like this: + * + * + * The JSON structure will be like this: + * {'params':{'flashvars':'something','quality':'high','src':'someurl'}, 'video':{'sources':[{src: 'someurl', type: 'video/mp4'}]}} + */ + objectToImg : function(node) { + var object, embed, video, iframe, img, name, id, width, height, style, i, html, + param, params, source, sources, data, type, lookup = this.lookup, + matches, attrs, urlConverter = this.editor.settings.url_converter, + urlConverterScope = this.editor.settings.url_converter_scope; + + function getInnerHTML(node) { + return new tinymce.html.Serializer({ + inner: true, + validate: false + }).serialize(node); + }; + + // If node isn't in document + if (!node.parent) + return; + + // Handle media scripts + if (node.name === 'script') { + if (node.firstChild) + matches = scriptRegExp.exec(node.firstChild.value); + + if (!matches) return; + + type = matches[1]; + data = {video : {}, params : JSON.parse(matches[2])}; + width = data.params.width; + height = data.params.height; + } + + // Setup data objects + data = data || { + video : {}, + params : {} + }; + + // Setup new image object + img = new Node('img', 1); + img.attr({ + src : this.editor.theme.url + '/img/trans.gif' + }); + + // Video element + name = node.name; + if (name === 'video') { + video = node; + object = node.getAll('object')[0]; + embed = node.getAll('embed')[0]; + width = video.attr('width'); + height = video.attr('height'); + id = video.attr('id'); + data.video = {attrs : {}, sources : []}; + + // Get all video attributes + attrs = data.video.attrs; + for (name in video.attributes.map) + attrs[name] = video.attributes.map[name]; + + source = node.attr('src'); + if (source) + data.video.sources.push({src : urlConverter.call(urlConverterScope, source, 'src', 'video')}); + + // Get all sources + sources = video.getAll("source"); + for (i = 0; i < sources.length; i++) { + source = sources[i].remove(); + + data.video.sources.push({ + src: urlConverter.call(urlConverterScope, source.attr('src'), 'src', 'source'), + type: source.attr('type'), + media: source.attr('media') + }); } - // Convert embed into image - if (dom.getAttrib(n, 'class') == 'mceItemEmbed') { - switch (dom.getAttrib(n, 'type')) { - case 'application/x-shockwave-flash': - dom.replace(t._createImg('mceItemFlash', n), n); - break; + // Convert the poster URL + if (attrs.poster) + attrs.poster = urlConverter.call(urlConverterScope, attrs.poster, 'poster', 'video'); + } - case 'application/x-director': - dom.replace(t._createImg('mceItemShockWave', n), n); - break; + // Object element + if (node.name === 'object') { + object = node; + embed = node.getAll('embed')[0]; + } - case 'application/x-mplayer2': - dom.replace(t._createImg('mceItemWindowsMedia', n), n); - break; + // Embed element + if (node.name === 'embed') + embed = node; - case 'video/quicktime': - dom.replace(t._createImg('mceItemQuickTime', n), n); - break; + // Iframe element + if (node.name === 'iframe') { + iframe = node; + type = 'Iframe'; + } - case 'audio/x-pn-realaudio-plugin': - dom.replace(t._createImg('mceItemRealMedia', n), n); - break; + if (object) { + // Get width/height + width = width || object.attr('width'); + height = height || object.attr('height'); + style = style || object.attr('style'); + id = id || object.attr('id'); - default: - dom.replace(t._createImg('mceItemFlash', n), n); - } - } - }); - }, + // Get all object params + params = object.getAll("param"); + for (i = 0; i < params.length; i++) { + param = params[i]; + name = param.remove().attr('name'); - _createImg : function(cl, n) { - var im, dom = this.editor.dom, pa = {}, ti = '', args; + if (!excludedAttrs[name]) + data.params[name] = param.attr('value'); + } - args = ['id', 'name', 'width', 'height', 'bgcolor', 'align', 'flashvars', 'src', 'wmode', 'allowfullscreen', 'quality', 'data']; + data.params.src = data.params.src || object.attr('data'); + } - // Create image - im = dom.create('img', { - src : this.url + '/img/trans.gif', - width : dom.getAttrib(n, 'width') || 100, - height : dom.getAttrib(n, 'height') || 100, - style : dom.getAttrib(n, 'style'), - 'class' : cl - }); + if (embed) { + // Get width/height + width = width || embed.attr('width'); + height = height || embed.attr('height'); + style = style || embed.attr('style'); + id = id || embed.attr('id'); - // Setup base parameters - each(args, function(na) { - var v = dom.getAttrib(n, na); + // Get all embed attributes + for (name in embed.attributes.map) { + if (!excludedAttrs[name] && !data.params[name]) + data.params[name] = embed.attributes.map[name]; + } + } - if (v) - pa[na] = v; - }); + if (iframe) { + // Get width/height + width = iframe.attr('width'); + height = iframe.attr('height'); + style = style || iframe.attr('style'); + id = iframe.attr('id'); - // Add optional parameters - each(dom.select('span', n), function(n) { - if (dom.hasClass(n, 'mceItemParam')) - pa[dom.getAttrib(n, 'name')] = dom.getAttrib(n, '_mce_value'); - }); + tinymce.each(rootAttributes, function(name) { + img.attr(name, iframe.attr(name)); + }); + + // Get all iframe attributes + for (name in iframe.attributes.map) { + if (!excludedAttrs[name] && !data.params[name]) + data.params[name] = iframe.attributes.map[name]; + } + } // Use src not movie - if (pa.movie) { - pa.src = pa.movie; - delete pa.movie; + if (data.params.movie) { + data.params.src = data.params.src || data.params.movie; + delete data.params.movie; } - // No src try data - if (!pa.src) { - pa.src = pa.data; - delete pa.data; + // Convert the URL to relative/absolute depending on configuration + if (data.params.src) + data.params.src = urlConverter.call(urlConverterScope, data.params.src, 'src', 'object'); + + if (video) + type = lookup.video.name; + + if (object && !type) + type = (lookup[(object.attr('clsid') || '').toLowerCase()] || lookup[(object.attr('type') || '').toLowerCase()] || {}).name; + + if (embed && !type) + type = (lookup[(embed.attr('type') || '').toLowerCase()] || {}).name; + + // Replace the video/object/embed element with a placeholder image containing the data + node.replace(img); + + // Remove embed + if (embed) + embed.remove(); + + // Serialize the inner HTML of the object element + if (object) { + html = getInnerHTML(object.remove()); + + if (html) + data.object_html = html; } - // Merge with embed args - n = dom.select('.mceItemEmbed', n)[0]; - if (n) { - each(args, function(na) { - var v = dom.getAttrib(n, na); + // Serialize the inner HTML of the video element + if (video) { + html = getInnerHTML(video.remove()); - if (v && !pa[na]) - pa[na] = v; - }); + if (html) + data.video_html = html; } - delete pa.width; - delete pa.height; - - im.title = this._serialize(pa); - - return im; - }, - - _parse : function(s) { - return tinymce.util.JSON.parse('{' + s + '}'); - }, - - _serialize : function(o) { - return tinymce.util.JSON.serialize(o).replace(/[{}]/g, ''); + // Set width/height of placeholder + img.attr({ + id : id, + 'class' : 'mceItemMedia mceItem' + (type || 'Flash'), + style : style, + width : width || "320", + height : height || "240", + "data-mce-json" : JSON.serialize(data, "'") + }); } }); diff --git a/plugins/TinyMCE/js/plugins/media/img/flash.gif b/plugins/TinyMCE/js/plugins/media/img/flash.gif deleted file mode 100644 index cb192e6ceda8d19ad8e7d08dd1cfde0aa72ead2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmVOzlLa+Za}7>m0&NpCfJ0FQc3~F7DE)S%o1)Qi1n@vxX46qnD4hRS-NE*Pw!4UvE=#^N( diff --git a/plugins/TinyMCE/js/plugins/media/img/flv_player.swf b/plugins/TinyMCE/js/plugins/media/img/flv_player.swf deleted file mode 100644 index 042c2ab969e98a6fdbe08848c4a73bd2c41de906..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11668 zcmV;FEo;(4S5pYUVE_PloV|PrTvNvr@V+F3a36As0Rb-#MGjBSfQpD35b>z>Admpj zkkAkitwp@*Rqv`rs-o69lDZ&@y{HKo3{JcK8Rt^ z72Hab0Fi(9n@~bYkV2y_)Fy`HtF#7{J|rojb4e1a7ekY%Jpqu!GtXQ6#>m0qvY zqk05XkPr<=DTomvJ9PBuQB+V+fX0s>j}|Rjgg*T6Llosb@Z|f-K0(8m{He?6zo^!s zgW%o|yBiCa{N=g3_eV+xKc?-B?2)mXBGanczVGz$;(Jq8W!}yB$#d7jwz;Cki@c`f zWnSDHobzK#aT@9u=8^8x_Ib_e#Xl4Y`Zer+8u>-bA6`uVXi-Ep^6uWh%d8KaJS&g= z)KA}qY1=qz((;kczfDdZmcI1pls2gC!tgBV;pBqfKiK7u7MDbR)&C>$gyc05A7uO} zTU6zl(L392O7^D-J^u?tL2G}Nl|dGb6UZS!lq5p+9>gp}0$|zy zkSG#qbPAfg3zp?lIyJ5j#n!UMW{%nE-W&j!ZI})Q-KC5ph&MP(<)Js zTB%fN`{MEmC|{-4pi+ZEZQoGP^zA& zLSxF+rRqEl+hmTqSfx>GRVc3zjiF2!xFY<5N}=@HB8fb_IYAXlu?mZ7o| zrNW>xk}{1xtqwkmRR+Z{LK(lMQ+^9H0Gff% zJX2#B5lWP0dWAs^!o=T2Duogl*TKM!LUG8TsxY9=AQJ=bIZ~7vbc1o5C@Ly0DylPi zB6X=;AxGtErAn8jC@Te$;}vQ{nof_KL}N>PDKwfqMgBNcpw_5zCX}d9MX?4f1q5BH zQjIf;K8tpwpGg@hdc9%-(x|kBAc=g9I)9w8e;9k(1AMm0;^LIo2w|sWvCp)nqQ>Q7OIBoG-c3dwN`BaqJ6M4 zOw%ihS>0nCrK&(trZKR9V0>jIgTY<~VtawF!NoeAp$Mx6j|!@8ZhRE#47wDpaxk_w zZ9bB#483$(tty`=BA>qE(!oTHNMSH2@{4Fs^2!PdRC?S%DtRNC0b9$_Vc`%-0KWsl z4tpyM3N%(xt|-mdt4j=V07SGG+5vUw2tQ$nS`eWC^bEjRP@go6ZIn-bkt%;2?kwgU zO4Mu->COPIH>?q}HbxaOMi1RbgUQ$i;+&MUN@8Pb=p;x%p_xEbqg59ZRT$-mKTO69 z!yNNKBTkW_Sd)Vd6GVm$l)xKwg@qbbTA4-zomHu{D2EgTnM#5}(?In_K|MQ0b&T%O zv0GG-P9IbR152e3=^iR;{1rz?#t z)>Wug`QQd3^L53YQGQveL060kl%kTdQtS=buB4W!HHLm#TBTH%Vl9C#4A_6@i(xPp z0H1>?=P*pb)mTQ;z)w9I8i3J zGPPErptgE+fycR@b$bnIc#*`@ZkZw?a&b6jjeW{^Wky@if#fot%>Nv=VB$=K+nQI}A85~NO@ z;yQJrXo!Rj&atr$y{rUU0DqzfQ5x9-^=WZ&iLR8b!m3t6j%Nl|TsjW-XP^RpW0y9R zhP+-d-V8_q17$oKlV7ICVlALkB!tps zE=VF0Ble%j&I#b{0T@Z_2zhaKCjMnF^;{`HJ&_4XA`*&3d`O3Er%bk5gd~pmH+)It znbiW+kwX*{M7GXJ?zGGS*{0%58U#Gx`7~4m%Z`L)7pW(%aUnJJTn)6*ft2iR7Iw3Z znpPZN@N|_gb3zg~qbxEpv+g2+$k8dl1mz*ez4H_aGEHSIXqm)a$}99Dg(4FOJVoT` zF71o?!4380A$b2cghV3(70zUH=6T58JY;@}r<@RyTD0u*Pmm=98RR|u-!^aAaUUze z8>@VclI3idkLdT(+Lr%Ko{SN}U&;q{HG$&s0FdcqSlJvH{+vyVLnPq?r*F@f zI(GNCT^@`l*P=*lge0iA*jh0`|H2;4^c3_8_W1AAc8TG87F^PSQ{+oVDu`nU;@iG8 z;vq}KLoA|{0}~NhXPUk|O<%OPAYVbc=K!GXi+oKrPI6A?=_HQVB5DyGY*<7n&muwz zb_bqCbdZ{0Y*|FGr9}i=TSTyJiwL%~i2wf{3jYe@=PgD%vZ``2+975(sa(J|3?zK`XS zCPH@M=z<8-?L@qnB$6O^CS9QKQF0gO01Oe$hwvg0F;ZM7;PSCftU5c9FPeN}92aNX zJ)&6AELQYC!iqIZVxz4R>u6(Q%}049n>O|k;1Y;#&B3~48`DlBDA67UcD5!;=cNR~ z5z5oqnHR9%RmAkAw8&i4s#egK;)3&KB;EQFr{9-OUIo1A6c~MXkx0^m^tGpyrtWc4 z5*?grbm+;BQz-F5X2{S`cS$@!iI!UM?vTwXBb|=$7L*zfFd>oFNN7!>)a)~f&L*o# zBu$o*Dpy)1BQ2!#BLIGAnzzNWWgo3FGz<}5Q=3N&Ld)DuR!&)>O6ir2rwgqaGZer$ zPe}GAC4I;C4(UcYG&kSQC*iq$#*dZPR6H|7GI$(EUZqD<)EmqGE z5{9GCc>STP37J;w3t2plEqN#;ZX$qVfse+8N}5XAA?!kung=sUpcxnFfSnvE9|X#A zru!@qgVd-snJs3wr&1dnN0c69OC2_K6w$omI*~OLPg_;d%~Ulrf^z5x8e;N&&^yATxs&TCd(CJ-oKnKR{%vS@4$o+Gkt zxBzVWE=cmaskM=^fMpWID(ZCtJSv+o5Q#sz&X1M_un~|ep=t6M+DfjeoEor#mgiZP z=V$XGsdByxKDJ;t7KwCuW6@0p$F@L-ZHznszqW=~0ey{u*BCkBAx8SrP)!$wW27|5 zHXo#g|1AuYm1L`0VPA?1JoNwH z!O&Q!<|o|V)H|xB{FO2q7z+qVHPmGUurNdj#8o=5l`+x)YkblXKxu} zY1pIn!8U9Xe8ph7G54UWcVpXwuyBQ>l{AyLir$j2H2_niPKMa%IEhA@Ip2e~ql%Cq z3>gTiwx+y>&JL`{1@#X+v2#PHt*JY7mQkGTYr7jPw_4z%rH#E%@WWx~3eH4``?H(? z>9TFkid>wHRwdx)Sg$mT(h^a1FwUH?#3Z4{*;2qOio%A82Acs;1;+W-c$n|4BQynB zW>)?-axt3wM7%6Zvz4a2Bogx+S4|7cGXV%KC2S>9mm7|-Hx!`eydmpUtH}s_so&(B zE2T|s)dAU=h3FEJagx|=hb$_H-SCbWfR779LVWVThoM4#LvFN2y^QAgPT1ez5^!~; zl!+lCA#cKE9)FFQ25~^m1z`(hgN+S}EK?!}zRw1Rz{V`uf&e!;C)O>n;hM$S#sWTS z87K1jZpJeJWW2|7;S(sAvnYeNHM9RLe4ZRvd)NEI@U5|8|ugIm>8*) z%Xx#>#dM|vvCDS@yAV4XKnIFN?mQ9t7p-u2uTI5g!rSAg=0sTaM4%LmVC+_ECIlO^vs4JDBLZ&EVS!{J z#9?oX!&jhCh`|D!%Px{EmMoFHOFEUx69E0k3%VG9WIO3(m4I$`E``xZ`m&5&SP_Z@ z@=P1`%gOZNJ@Xi40aI;j2bT{6FDuwJObgVE`FKMaJ1Z~Novbho|C&T!TR86#cN9cOdLp7vK^BoISnGxtn8HG0&H;#R4W6qxVVEbs z{H+x}c$g1 zpG_0Fp2+tVpg*KBj6CTEJK)phF7v2Ea!<3fS#%hwmFNUApVN~*M#px}TbN-#q9@OR)B3i*0Q?^Cwv)$r*hsAeC%Bl|``w0>2 zQXo(LOr7Nbv;hWhpW1=MeR(JR7~~L+BwBn9`y831_Ay0{0Bc7Nv0osPNOsDpoQS($ zMI0MjC=#%zNQkfdjKF;^H!kgQMQL*5J}6i8g`5UcUePW&jiS7w-SU~-p)!!K2WAHc zPZ5MsAxU6TEu3ioCT^e`kM0=LS8Fq{L3M8t!#5uhW7~Sz@>ejP z3IDH*!`tGFCrshO&}pF=7Ce_)iO1YlxRqRPL=j7o3a|kQAvy}l>Ob~)mQ>;SB|Eor z#91Xi@+81QB$E=l<4t7)PM+7M$)E(1J#-&NBsPa;2Q_O{LYN2Ar4C2p4EGvsO~7sB zh(u(uLLm9Vj0jN^TeI7&M#QUGArfX%YBo)Yk0xNbvLjsC3F(@X4+%qdbjm7_d__c1 zoJ}XP=E2FAJ(o~#)e-bfJCErSUp9k#7yx8jeHd!3lYq2=Mv17SJz*Uk%lnkG1 zvRq(>+w8J{RRtM*afr_=%Cu~Yzjk1Ch``(8uZ}>4;b?`(B+Y}SR{7#Rlt8h6EChRp$6lOftRMFA0$ZuGMvhL!{1Vd4Tsq%M#rM4oAw z9iKIpnk}!>m3x~eZYD)?2uzqsw;en&QKMxDB@J{XKdgB=4P;k@hsT$`6F!RKK!+a3 zr8A#t_WTVyH>G9Y(IYTsW&3TEnRl3&TsPkM+-Hp4=01_{%|?*5)NC7AjFsO!Vw5^J z*E3u6wIEAFM1zzbo(rV=o+2aXPR3A2asW%-_rH|){mt;c-v;mdU!8X&Su^_vJgdKI z5c5E2Cf3Z~H?YV2hw+TK`BUC2ZHyUqo8D*`_V{ShTtv??#=jETnJ*X_MI$|1bXVa5AVDKCif@+*5fHKbb^HrG6?P;jBm9rosSX{-zLOxtv=$mH}G z6p@{UQ{4<9cW?!q!XkIYV zbYN4jadEs{(<1A%-dJmvr;8?@E}HRV#O86vFI#1!m4Cx!KYsddA@y`t>U>C3_U_6* zV06h6lqBwa#8tKtFDF{&>^4`>`2PQuSa3CC!S&y;VBrRhg|Etjj~NR-|BMBCp3b&j z`m@bM@L~K+L)v1=By*W3lE_S3=Qv(qZz|vx{cwSkacP3qTp=OxYIXwt#owX#MXWRC z2I4ic$rOZMx>B<}(HAv2;J%CTl_K!FUhE3bZXyiCuooUAyWx{D_V81SDhLd|?4rFG zijE;@0+GuR>dBh~6`@vD2xS3weSJN0ciGl}>_16wwb}LCM(qXmq6`P_q6`VWD5KtP z9y}eqwYSFCDg{O)>u5$QQ<`O({-1kWbW=~p;X14q7^+7)lR35F$=-NUu zvPRh$+wM{~G~fbyuR10#SEy`oDW84jwe{as4Q$Vh8#nX!vp!!s{l4|b6A)paKYtztc{PL;U2Hrgo-;L}^M>h-(x}{F(}Fl2JvbY2XKe)G zzv1*mBbH=O3;Gl)F$s6?v02LTIevi;rUCD$H9)igjw5AA@{mFI?%e~3xeHOC*PCnS z_s~YpI0VFf0LTmQ-@(LNpkqX8|S(sH6w)^49?S?t6rsux-nX{OQ7xcTjO4 zib5%<6m3C=kQYII>$u&1hb&+- zy1(7NxC#mm*bQeMWeGoN2<(Q+LxtZqxE??i7nlpRZmm$f7jv`LUR9NlgTd!i1uVlP zZcber^Vab9D?*uj@om0tK)DIt2If*N;7$Al!;P&<=!hO{2fV~WO!BjaKp2 zS>ORQX&ovbE<9HP_3;{L$MrHM+5l|a&jOa9&C9uzha0&-E50NBF25k$Cv!cE2_BHS z9zo?BfoIweXpr=AeHHKwv~EMM-}GW`<=W4v;(AKRy4j)l9NaZ;1Y`-z6&sn0xj?pJ zIBw<$Zia~GVHOqz{w7_n0g5?HCtQOv*%goIoeF=mCQI`sf00#FQ{Yapg`Km&7TiZr9a#b62OAn z&e=44;$C9CRG>}9k9ZA2olqp|3@~-k8Y9% z&ST3*L|@&W8^77v86`V(0e}Ex=K(IK;!=LD-;2g%*Bwo5?>1#lxiY!q&yq*8qlKfc z%c@hhj@jt(;rH_|uW>|f2cu8WY$Fi-=VtJqOs@cRQHE$%)}mo^$vUZbq033u@3rRq zULfat0}#$zvVeI^XLJxcV$@knZbuj=$%9)syjFe@Ch(GcSt2FE^S+qcp@yt>)=}+ zp7Rd1*f!OzHYLRWk%PPAzKkx)xrM&N)@G;oJ~=0&(pWs=gcaHA; z^6=hWPd2UUC+}7lTOZrh)HBxq*b~>f!^*r~5Q?`AU0+$>`HzW-Yeq)aO_4SH{pisn z?|V-w67uRUPJdADbpD?A=#PEp9l0&oayDb@`FoY0Uw)oEG|*XGQh%MXuT;JE_L-kV zpI@H$qD{}+L$}->ziZ^=aUb3Zzkj0y^;?`PQH2+l5Hxu`cp5Yt5)bWqGaf=jwKh$-(Q&1N?>7CyW-dc2S zYEg^qP49l)|EhNRIfwI$4nB^lcHVk^od2mJ=Zd6(J8%5`s3QG9-k{s@D_w8D5pW{s z_nV`$$It4$w&9J0Q3rdT3i5We8!~xQ&f1-6ZioIpUGw&By~ErCQy+SKmp|~0>lFz; zes2%Dcjxib+-^1do<0BY>7a-ckE2$fP?t#USFe`-@#mzZDObYI-6+}kJl20+-nOCZ zUMvj^jb14~n-mgXJ>VNhcbEU(>e7SH-b-)$x6j<$N1m)ZfA6&oXTqlMSIquB zE99D;zJB=P%UjQmt$(^}Y^C7NUbi{ab+qG#f3LQD*HK%tQR-vwQUzA?jKOD9j8+pr z_vbA4gU>@8yM^S9ThqEB&2EQB@{~C~i^pj{9dueUHCGipYvZ=zug(2tSep?a);)Ya z-`~5>fx5!C2j(t+^Ycqnf`dydW1FgDPZd?3?^sY*?KX3N>aLN?ChlGJ{e$uuc{>i- zPfMA5Sozm%mx{fkcZ~jc$%FF#ADxewuy^#`6eYH-(&wm0m!KPE&X`1ahru5lNNy4-v#Y4z7m>$4r6*{y5{>$+}`&)$ogkp6{L zb+u1tC}TD~%-(QjU(bLAeU)pj71XWKcqRJGU9vA%<}=ss#|a66*-5L1JuUxoUP95Z z;XUj-9y}n~|M$KNlahvYN#8Y6es)Z#SIN1P(@uAI|5lG*oZ@SaJ-h;@GJM&PJ9nNu zi~h5+e$nfZ%Qr4n_$hOLb?Z?@1DMc%n(qEF@fz6fqV(Pw8_r~hFZH}z`KZh1eYTu^@!PMP zpCT7u{}^f}9gJqu-lmx}IRulqCouYb;$GX~NHaq$WPkwmK^MT9!i?55c;J?lL0*6K z4QMryujzI{$jKq5F--kksSxZ$3G` zt;2~!o6hdKT6g}^xL@lQ$e&znH+;%`;xUom#wDfh&{6Lp10kLLEiw4a}; zIDuAP)Vv)ChJEZIV}o1o=@sDa)R-{;C&PD%3r9w7c-q;^@xr)`%QQgIBU$tI$DsPM~TZtCLia_!cmJ!8M!6F&aStJ$fNQ6HaQG3CS6elc5S##RpqA0r{AvF=pozs2fVM3+IQo9{D96nf>VEXn9-D_xI)gr)#o&!{AM4$5x!LikG@>R3)vx<(x9wr`O?v zx;z`iKeD|p0{m(CIbk`T0D)PFb{oHGI@ASBp z?bn88XucBp)SS8ZN9)RucIyr_x^|#O(#dEf9baN3k(`lq;?@whfRS`2>oa(3w>^U( z8G;NAfP}~s=W@QdScEgR_r8=Nr|fA##%od8G)@eO)q(D5L8z0=5%Cf$d}}2OA|W8X zF^F#iFD=7YsMd=y|B;Sddgd~;u@mCK&?{E!#eo>gnS*i~IQ1m2Esd%G!-QZMSDbiq z%<>2sFFR#h^gzAC82hU|g?s{WV}mbgTK#ceruOOfj6{MDrJ) zV!6^5v~;pVdw6z%X6R-7R7di^MB2Q%&x%H9~#H-8QIUz(Ln45_OAge~rzKY(Z zN$kU;1MVY}0BlLWpOS+YO}Wd789{x0eG|TgoBS|sCOf3TYY$LYg8hB>#s`+_y5EFy z)CP?zNLLVKC{hI#Xv*>By!Zl9Y?VO+bb3{Bkh&x?G7?nZ1~7U8t+<1>X7Cr9P*hA@ zOftB+zizKzKBewZKps5XY6i;Ke4&Bn>%d3@Tm6gZ+=B0g9S(D!OZdT|wxoI+8 z=+X?B&#f8#aj$Jdr=_iXbU1Iv$@eCYi}L&8uYq0s*DpNME6Ba7pw8jFmRg36;}QujUXdwq|5!y7UViX(-j1q2 zCO&6&PS`Pg&$~x%?|G3J=mtUyJTxi2e)?M*&Rl%_>yu~Glc(L^R99CwFDLx=ql49_ zeSLkMV=51<-k$vM;5GI4x;NhV!}+hp7n4G6B~HHC?~~U5@tu31aCUEf*~E$8&FUR; z?a9oyI&W`U-FtGb{9H+o=@2;oY<>5#r{j!=ZqHro>i7MXyK}^XNA^D~_mPOMM+t}3 ze|_=3Wb&TU`%SO6(2ZQZqf&|yfMthy(G*fa6>Yl^Hx8=GtqqH9}^n3 z?n|l4A|t<=x|*Yb?<6<<7TA&>f9U>1dpj5?ep3Zerh8l2F(?MB_nTf-LE=C)bwEc0 zd=pU2pqcEdMpN>MhiCy_w@5%qF4s?{o$NOgP4-e7%Us?WKuxEPeDVi{|B8v^R zB>cGn?UUW+E~#=aaYWFkwhoKc;CAT!w6v!!;h98w>O^~*NS!XbLWOrSlF@Laq(1%H zwQI=TMN<`1aa?+*WrOkuCFk2^oD7pW8IFQy3V04~Lb8bZ?L&=BI^DTJ=v^#E8S4m$fXGF-bTg^FJ?Eia`h^T diff --git a/plugins/TinyMCE/js/plugins/media/img/quicktime.gif b/plugins/TinyMCE/js/plugins/media/img/quicktime.gif deleted file mode 100644 index 3b0499145b16138249f653a1a3f2c80230fb292c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 303 zcmV+~0nq+ONk%w1VGsZi0K^{vH>m7Qv+~s9^fsC5ZpZP=*zu3F=Jxpf8k_5u%JNv6 z=md-84VLU4w)kSE=yI&-yw>b=v+SqE?+kq47pC+YrR?bJ^yu>Zyvpn;hTp*6^mM!O zu+8$^=JX7bb<~J01ZTA{q@86#&8&6~H`Ss{{?p%K!-p%L6P2TpFYz90?pD06UU# BbnE~C diff --git a/plugins/TinyMCE/js/plugins/media/img/shockwave.gif b/plugins/TinyMCE/js/plugins/media/img/shockwave.gif deleted file mode 100644 index 5f235dfc7363bd4957b5fe352e16a7eee9a38574..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmZ?wbhEHb6lD-#xXJ(m|AF9|(f@B(e|&xQ_v6XWFR%Td$?$)n^p7RFzqSScKhyN< z>ipLaF8n=^^LJP4|1^gGRdo_Rl+a*grZQ1hw@Zo1ikN$oB{QbRq&z?QIckdq1aE3;Fq_(WV>Kc7gjQtQh+9OrtFhn-)LUqD<|MOIl_!(Ed#pPRE;S)g;ew3>pd zn`Wa(lc2DGa)peFw3f88dp-|`@*)AXj;@(8hwDr|7Sxsp;&YxjN*Y{PBB!TIU|!b7Zgv0OaG5)&Kwi diff --git a/plugins/TinyMCE/js/plugins/media/js/media.js b/plugins/TinyMCE/js/plugins/media/js/media.js index 86cfa98563..a8acdd12d1 100644 --- a/plugins/TinyMCE/js/plugins/media/js/media.js +++ b/plugins/TinyMCE/js/plugins/media/js/media.js @@ -1,630 +1,355 @@ -tinyMCEPopup.requireLangPack(); +(function() { + var url; -var oldWidth, oldHeight, ed, url; + if (url = tinyMCEPopup.getParam("media_external_list_url")) + document.write(''); -if (url = tinyMCEPopup.getParam("media_external_list_url")) - document.write(''); + function get(id) { + return document.getElementById(id); + } -function init() { - var pl = "", f, val; - var type = "flash", fe, i; + function getVal(id) { + var elm = get(id); - ed = tinyMCEPopup.editor; + if (elm.nodeName == "SELECT") + return elm.options[elm.selectedIndex].value; - tinyMCEPopup.resizeToInnerSize(); - f = document.forms[0] + if (elm.type == "checkbox") + return elm.checked; - fe = ed.selection.getNode(); - if (/mceItem(Flash|ShockWave|WindowsMedia|QuickTime|RealMedia)/.test(ed.dom.getAttrib(fe, 'class'))) { - pl = fe.title; + return elm.value; + } - switch (ed.dom.getAttrib(fe, 'class')) { - case 'mceItemFlash': - type = 'flash'; - break; + function setVal(id, value, name) { + if (typeof(value) != 'undefined') { + var elm = get(id); - case 'mceItemFlashVideo': - type = 'flv'; - break; - - case 'mceItemShockWave': - type = 'shockwave'; - break; - - case 'mceItemWindowsMedia': - type = 'wmp'; - break; - - case 'mceItemQuickTime': - type = 'qt'; - break; - - case 'mceItemRealMedia': - type = 'rmp'; - break; + if (elm.nodeName == "SELECT") + selectByValue(document.forms[0], id, value); + else if (elm.type == "checkbox") { + if (typeof(value) == 'string') { + value = value.toLowerCase(); + value = (!name && value === 'true') || (name && value === name.toLowerCase()); + } + elm.checked = !!value; + } else + elm.value = value; } - - document.forms[0].insert.value = ed.getLang('update', 'Insert', true); } - document.getElementById('filebrowsercontainer').innerHTML = getBrowserHTML('filebrowser','src','media','media'); - document.getElementById('qtsrcfilebrowsercontainer').innerHTML = getBrowserHTML('qtsrcfilebrowser','qt_qtsrc','media','media'); - document.getElementById('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); - - var html = getMediaListHTML('medialist','src','media','media'); - if (html == "") - document.getElementById("linklistrow").style.display = 'none'; - else - document.getElementById("linklistcontainer").innerHTML = html; - - // Resize some elements - if (isVisible('filebrowser')) - document.getElementById('src').style.width = '230px'; - - // Setup form - if (pl != "") { - pl = tinyMCEPopup.editor.plugins.media._parse(pl); - - switch (type) { - case "flash": - setBool(pl, 'flash', 'play'); - setBool(pl, 'flash', 'loop'); - setBool(pl, 'flash', 'menu'); - setBool(pl, 'flash', 'swliveconnect'); - setStr(pl, 'flash', 'quality'); - setStr(pl, 'flash', 'scale'); - setStr(pl, 'flash', 'salign'); - setStr(pl, 'flash', 'wmode'); - setStr(pl, 'flash', 'base'); - setStr(pl, 'flash', 'flashvars'); - break; - - case "qt": - setBool(pl, 'qt', 'loop'); - setBool(pl, 'qt', 'autoplay'); - setBool(pl, 'qt', 'cache'); - setBool(pl, 'qt', 'controller'); - setBool(pl, 'qt', 'correction'); - setBool(pl, 'qt', 'enablejavascript'); - setBool(pl, 'qt', 'kioskmode'); - setBool(pl, 'qt', 'autohref'); - setBool(pl, 'qt', 'playeveryframe'); - setBool(pl, 'qt', 'tarsetcache'); - setStr(pl, 'qt', 'scale'); - setStr(pl, 'qt', 'starttime'); - setStr(pl, 'qt', 'endtime'); - setStr(pl, 'qt', 'tarset'); - setStr(pl, 'qt', 'qtsrcchokespeed'); - setStr(pl, 'qt', 'volume'); - setStr(pl, 'qt', 'qtsrc'); - break; - - case "shockwave": - setBool(pl, 'shockwave', 'sound'); - setBool(pl, 'shockwave', 'progress'); - setBool(pl, 'shockwave', 'autostart'); - setBool(pl, 'shockwave', 'swliveconnect'); - setStr(pl, 'shockwave', 'swvolume'); - setStr(pl, 'shockwave', 'swstretchstyle'); - setStr(pl, 'shockwave', 'swstretchhalign'); - setStr(pl, 'shockwave', 'swstretchvalign'); - break; - - case "wmp": - setBool(pl, 'wmp', 'autostart'); - setBool(pl, 'wmp', 'enabled'); - setBool(pl, 'wmp', 'enablecontextmenu'); - setBool(pl, 'wmp', 'fullscreen'); - setBool(pl, 'wmp', 'invokeurls'); - setBool(pl, 'wmp', 'mute'); - setBool(pl, 'wmp', 'stretchtofit'); - setBool(pl, 'wmp', 'windowlessvideo'); - setStr(pl, 'wmp', 'balance'); - setStr(pl, 'wmp', 'baseurl'); - setStr(pl, 'wmp', 'captioningid'); - setStr(pl, 'wmp', 'currentmarker'); - setStr(pl, 'wmp', 'currentposition'); - setStr(pl, 'wmp', 'defaultframe'); - setStr(pl, 'wmp', 'playcount'); - setStr(pl, 'wmp', 'rate'); - setStr(pl, 'wmp', 'uimode'); - setStr(pl, 'wmp', 'volume'); - break; - - case "rmp": - setBool(pl, 'rmp', 'autostart'); - setBool(pl, 'rmp', 'loop'); - setBool(pl, 'rmp', 'autogotourl'); - setBool(pl, 'rmp', 'center'); - setBool(pl, 'rmp', 'imagestatus'); - setBool(pl, 'rmp', 'maintainaspect'); - setBool(pl, 'rmp', 'nojava'); - setBool(pl, 'rmp', 'prefetch'); - setBool(pl, 'rmp', 'shuffle'); - setStr(pl, 'rmp', 'console'); - setStr(pl, 'rmp', 'controls'); - setStr(pl, 'rmp', 'numloop'); - setStr(pl, 'rmp', 'scriptcallbacks'); - break; - } - - setStr(pl, null, 'src'); - setStr(pl, null, 'id'); - setStr(pl, null, 'name'); - setStr(pl, null, 'vspace'); - setStr(pl, null, 'hspace'); - setStr(pl, null, 'bgcolor'); - setStr(pl, null, 'align'); - setStr(pl, null, 'width'); - setStr(pl, null, 'height'); - - if ((val = ed.dom.getAttrib(fe, "width")) != "") - pl.width = f.width.value = val; - - if ((val = ed.dom.getAttrib(fe, "height")) != "") - pl.height = f.height.value = val; - - oldWidth = pl.width ? parseInt(pl.width) : 0; - oldHeight = pl.height ? parseInt(pl.height) : 0; - } else - oldWidth = oldHeight = 0; - - selectByValue(f, 'media_type', type); - changedType(type); - updateColor('bgcolor_pick', 'bgcolor'); - - TinyMCE_EditableSelects.init(); - generatePreview(); -} - -function insertMedia() { - var fe, f = document.forms[0], h; - - tinyMCEPopup.restoreSelection(); - - if (!AutoValidator.validate(f)) { - tinyMCEPopup.alert(ed.getLang('invalid_data')); - return false; - } - - f.width.value = f.width.value == "" ? 100 : f.width.value; - f.height.value = f.height.value == "" ? 100 : f.height.value; - - fe = ed.selection.getNode(); - if (fe != null && /mceItem(Flash|ShockWave|WindowsMedia|QuickTime|RealMedia)/.test(ed.dom.getAttrib(fe, 'class'))) { - switch (f.media_type.options[f.media_type.selectedIndex].value) { - case "flash": - fe.className = "mceItemFlash"; - break; - - case "flv": - fe.className = "mceItemFlashVideo"; - break; - - case "shockwave": - fe.className = "mceItemShockWave"; - break; - - case "qt": - fe.className = "mceItemQuickTime"; - break; - - case "wmp": - fe.className = "mceItemWindowsMedia"; - break; - - case "rmp": - fe.className = "mceItemRealMedia"; - break; - } - - if (fe.width != f.width.value || fe.height != f.height.value) - ed.execCommand('mceRepaint'); - - fe.title = serializeParameters(); - fe.width = f.width.value; - fe.height = f.height.value; - fe.style.width = f.width.value + (f.width.value.indexOf('%') == -1 ? 'px' : ''); - fe.style.height = f.height.value + (f.height.value.indexOf('%') == -1 ? 'px' : ''); - fe.align = f.align.options[f.align.selectedIndex].value; - } else { - h = ' 0) { - var html = ""; - - html += ''; - - return html; - } - - return ""; -} - -function getType(v) { - var fo, i, c, el, x, f = document.forms[0]; - - fo = ed.getParam("media_types", "flash=swf;flv=flv;shockwave=dcr;qt=mov,qt,mpg,mp3,mp4,mpeg;shockwave=dcr;wmp=avi,wmv,wm,asf,asx,wmx,wvx;rmp=rm,ra,ram").split(';'); - - // YouTube - if (v.match(/watch\?v=(.+)(.*)/)) { - f.width.value = '425'; - f.height.value = '350'; - f.src.value = 'http://www.youtube.com/v/' + v.match(/v=(.*)(.*)/)[0].split('=')[1]; - return 'flash'; - } - - // Google video - if (v.indexOf('http://video.google.com/videoplay?docid=') == 0) { - f.width.value = '425'; - f.height.value = '326'; - f.src.value = 'http://video.google.com/googleplayer.swf?docId=' + v.substring('http://video.google.com/videoplay?docid='.length) + '&hl=en'; - return 'flash'; - } - - for (i=0; i 0 ? s.substring(0, s.length - 1) : s; - - return s; -} - -function setBool(pl, p, n) { - if (typeof(pl[n]) == "undefined") - return; - - document.forms[0].elements[p + "_" + n].checked = pl[n] != 'false'; -} - -function setStr(pl, p, n) { - var f = document.forms[0], e = f.elements[(p != null ? p + "_" : '') + n]; - - if (typeof(pl[n]) == "undefined") - return; - - if (e.type == "text") - e.value = pl[n]; - else - selectByValue(f, (p != null ? p + "_" : '') + n, pl[n]); -} - -function getBool(p, n, d, tv, fv) { - var v = document.forms[0].elements[p + "_" + n].checked; - - tv = typeof(tv) == 'undefined' ? 'true' : "'" + jsEncode(tv) + "'"; - fv = typeof(fv) == 'undefined' ? 'false' : "'" + jsEncode(fv) + "'"; - - return (v == d) ? '' : n + (v ? ':' + tv + ',' : ":\'" + fv + "\',"); -} - -function getStr(p, n, d) { - var e = document.forms[0].elements[(p != null ? p + "_" : "") + n]; - var v = e.type == "text" ? e.value : e.options[e.selectedIndex].value; - - if (n == 'src') - v = tinyMCEPopup.editor.convertURL(v, 'src', null); - - return ((n == d || v == '') ? '' : n + ":'" + jsEncode(v) + "',"); -} - -function getInt(p, n, d) { - var e = document.forms[0].elements[(p != null ? p + "_" : "") + n]; - var v = e.type == "text" ? e.value : e.options[e.selectedIndex].value; - - return ((n == d || v == '') ? '' : n + ":" + v.replace(/[^0-9]+/g, '') + ","); -} - -function jsEncode(s) { - s = s.replace(new RegExp('\\\\', 'g'), '\\\\'); - s = s.replace(new RegExp('"', 'g'), '\\"'); - s = s.replace(new RegExp("'", 'g'), "\\'"); - - return s; -} - -function generatePreview(c) { - var f = document.forms[0], p = document.getElementById('prev'), h = '', cls, pl, n, type, codebase, wp, hp, nw, nh; - - p.innerHTML = ''; - - nw = parseInt(f.width.value); - nh = parseInt(f.height.value); - - if (f.width.value != "" && f.height.value != "") { - if (f.constrain.checked) { - if (c == 'width' && oldWidth != 0) { - wp = nw / oldWidth; - nh = Math.round(wp * nh); - f.height.value = nh; - } else if (c == 'height' && oldHeight != 0) { - hp = nh / oldHeight; - nw = Math.round(hp * nw); - f.width.value = nw; + window.Media = { + init : function() { + var html, editor; + + this.editor = editor = tinyMCEPopup.editor; + + // Setup file browsers and color pickers + get('filebrowsercontainer').innerHTML = getBrowserHTML('filebrowser','src','media','media'); + get('qtsrcfilebrowsercontainer').innerHTML = getBrowserHTML('qtsrcfilebrowser','quicktime_qtsrc','media','media'); + get('bgcolor_pickcontainer').innerHTML = getColorPickerHTML('bgcolor_pick','bgcolor'); + get('video_altsource1_filebrowser').innerHTML = getBrowserHTML('filebrowser_altsource1','video_altsource1','media','media'); + get('video_altsource2_filebrowser').innerHTML = getBrowserHTML('filebrowser_altsource2','video_altsource2','media','media'); + get('video_poster_filebrowser').innerHTML = getBrowserHTML('filebrowser_poster','video_poster','media','image'); + + html = this.getMediaListHTML('medialist', 'src', 'media', 'media'); + if (html == "") + get("linklistrow").style.display = 'none'; + else + get("linklistcontainer").innerHTML = html; + + if (isVisible('filebrowser')) + get('src').style.width = '230px'; + + if (isVisible('filebrowser_altsource1')) + get('video_altsource1').style.width = '220px'; + + if (isVisible('filebrowser_altsource2')) + get('video_altsource2').style.width = '220px'; + + if (isVisible('filebrowser_poster')) + get('video_poster').style.width = '220px'; + + this.data = tinyMCEPopup.getWindowArg('data'); + this.dataToForm(); + this.preview(); + }, + + insert : function() { + var editor = tinyMCEPopup.editor; + + this.formToData(); + editor.execCommand('mceRepaint'); + tinyMCEPopup.restoreSelection(); + editor.selection.setNode(editor.plugins.media.dataToImg(this.data)); + tinyMCEPopup.close(); + }, + + preview : function() { + get('prev').innerHTML = this.editor.plugins.media.dataToHtml(this.data, true); + }, + + moveStates : function(to_form, field) { + var data = this.data, editor = this.editor, data = this.data, + mediaPlugin = editor.plugins.media, ext, src, typeInfo, defaultStates, src; + + defaultStates = { + // QuickTime + quicktime_autoplay : true, + quicktime_controller : true, + + // Flash + flash_play : true, + flash_loop : true, + flash_menu : true, + + // WindowsMedia + windowsmedia_autostart : true, + windowsmedia_enablecontextmenu : true, + windowsmedia_invokeurls : true, + + // RealMedia + realmedia_autogotourl : true, + realmedia_imagestatus : true + }; + + function parseQueryParams(str) { + var out = {}; + + if (str) { + tinymce.each(str.split('&'), function(item) { + var parts = item.split('='); + + out[unescape(parts[0])] = unescape(parts[1]); + }); + } + + return out; + }; + + function setOptions(type, names) { + var i, name, formItemName, value, list; + + if (type == data.type || type == 'global') { + names = tinymce.explode(names); + for (i = 0; i < names.length; i++) { + name = names[i]; + formItemName = type == 'global' ? name : type + '_' + name; + + if (type == 'global') + list = data; + else if (type == 'video') { + list = data.video.attrs; + + if (!list && !to_form) + data.video.attrs = list = {}; + } else + list = data.params; + + if (list) { + if (to_form) { + setVal(formItemName, list[name], type == 'video' ? name : ''); + } else { + delete list[name]; + + value = getVal(formItemName); + if (type == 'video' && value === true) + value = name; + + if (defaultStates[formItemName]) { + if (value !== defaultStates[formItemName]) { + value = "" + value; + list[name] = value; + } + } else if (value) { + value = "" + value; + list[name] = value; + } + } + } + } + } } + + if (!to_form) { + data.type = get('media_type').options[get('media_type').selectedIndex].value; + data.width = getVal('width'); + data.height = getVal('height'); + + // Switch type based on extension + src = getVal('src'); + if (field == 'src') { + ext = src.replace(/^.*\.([^.]+)$/, '$1'); + if (typeInfo = mediaPlugin.getType(ext)) + data.type = typeInfo.name.toLowerCase(); + + setVal('media_type', data.type); + } + + if (data.type == "video") { + if (!data.video.sources) + data.video.sources = []; + + data.video.sources[0] = {src: getVal('src')}; + } + } + + // Hide all fieldsets and show the one active + get('video_options').style.display = 'none'; + get('flash_options').style.display = 'none'; + get('quicktime_options').style.display = 'none'; + get('shockwave_options').style.display = 'none'; + get('windowsmedia_options').style.display = 'none'; + get('realmedia_options').style.display = 'none'; + + if (get(data.type + '_options')) + get(data.type + '_options').style.display = 'block'; + + setVal('media_type', data.type); + + setOptions('flash', 'play,loop,menu,swliveconnect,quality,scale,salign,wmode,base,flashvars'); + setOptions('quicktime', 'loop,autoplay,cache,controller,correction,enablejavascript,kioskmode,autohref,playeveryframe,targetcache,scale,starttime,endtime,target,qtsrcchokespeed,volume,qtsrc'); + setOptions('shockwave', 'sound,progress,autostart,swliveconnect,swvolume,swstretchstyle,swstretchhalign,swstretchvalign'); + setOptions('windowsmedia', 'autostart,enabled,enablecontextmenu,fullscreen,invokeurls,mute,stretchtofit,windowlessvideo,balance,baseurl,captioningid,currentmarker,currentposition,defaultframe,playcount,rate,uimode,volume'); + setOptions('realmedia', 'autostart,loop,autogotourl,center,imagestatus,maintainaspect,nojava,prefetch,shuffle,console,controls,numloop,scriptcallbacks'); + setOptions('video', 'poster,autoplay,loop,preload,controls'); + setOptions('global', 'id,name,vspace,hspace,bgcolor,align,width,height'); + + if (to_form) { + if (data.type == 'video') { + if (data.video.sources[0]) + setVal('src', data.video.sources[0].src); + + src = data.video.sources[1]; + if (src) + setVal('video_altsource1', src.src); + + src = data.video.sources[2]; + if (src) + setVal('video_altsource2', src.src); + } else { + // Check flash vars + if (data.type == 'flash') { + tinymce.each(editor.getParam('flash_video_player_flashvars', {url : '$url', poster : '$poster'}), function(value, name) { + if (value == '$url') + data.params.src = parseQueryParams(data.params.flashvars)[name] || data.params.src; + }); + } + + setVal('src', data.params.src); + } + } else { + src = getVal("src"); + + // YouTube + if (src.match(/youtube.com(.+)v=([^&]+)/)) { + data.width = 425; + data.height = 350; + data.params.frameborder = '0'; + data.type = 'iframe'; + src = 'http://www.youtube.com/embed/' + src.match(/v=([^&]+)/)[1]; + setVal('src', src); + setVal('media_type', data.type); + } + + // Google video + if (src.match(/video.google.com(.+)docid=([^&]+)/)) { + data.width = 425; + data.height = 326; + data.type = 'flash'; + src = 'http://video.google.com/googleplayer.swf?docId=' + src.match(/docid=([^&]+)/)[1] + '&hl=en'; + setVal('src', src); + setVal('media_type', data.type); + } + + if (data.type == 'video') { + if (!data.video.sources) + data.video.sources = []; + + data.video.sources[0] = {src : src}; + + src = getVal("video_altsource1"); + if (src) + data.video.sources[1] = {src : src}; + + src = getVal("video_altsource2"); + if (src) + data.video.sources[2] = {src : src}; + } else + data.params.src = src; + + // Set default size + setVal('width', data.width || 320); + setVal('height', data.height || 240); + } + }, + + dataToForm : function() { + this.moveStates(true); + }, + + formToData : function(field) { + if (field == "width" || field == "height") + this.changeSize(field); + + if (field == 'source') { + this.moveStates(false, field); + setVal('source', this.editor.plugins.media.dataToHtml(this.data)); + this.panel = 'source'; + } else { + if (this.panel == 'source') { + this.data = this.editor.plugins.media.htmlToData(getVal('source')); + this.dataToForm(); + this.panel = ''; + } + + this.moveStates(false, field); + this.preview(); + } + }, + + beforeResize : function() { + this.width = parseInt(getVal('width') || "320", 10); + this.height = parseInt(getVal('height') || "240", 10); + }, + + changeSize : function(type) { + var width, height, scale, size; + + if (get('constrain').checked) { + width = parseInt(getVal('width') || "320", 10); + height = parseInt(getVal('height') || "240", 10); + + if (type == 'width') { + this.height = Math.round((width / this.width) * height); + setVal('height', this.height); + } else { + this.width = Math.round((height / this.height) * width); + setVal('width', this.width); + } + } + }, + + getMediaListHTML : function() { + if (typeof(tinyMCEMediaList) != "undefined" && tinyMCEMediaList.length > 0) { + var html = ""; + + html += ''; + + return html; + } + + return ""; } - } + }; - if (f.width.value != "") - oldWidth = nw; - - if (f.height.value != "") - oldHeight = nh; - - // After constrain - pl = serializeParameters(); - - switch (f.media_type.options[f.media_type.selectedIndex].value) { - case "flash": - cls = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'; - codebase = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'; - type = 'application/x-shockwave-flash'; - break; - - case "shockwave": - cls = 'clsid:166B1BCA-3F9C-11CF-8075-444553540000'; - codebase = 'http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0'; - type = 'application/x-director'; - break; - - case "qt": - cls = 'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B'; - codebase = 'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0'; - type = 'video/quicktime'; - break; - - case "wmp": - cls = ed.getParam('media_wmp6_compatible') ? 'clsid:05589FA1-C356-11CE-BF01-00AA0055595A' : 'clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6'; - codebase = 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'; - type = 'application/x-mplayer2'; - break; - - case "rmp": - cls = 'clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA'; - codebase = 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'; - type = 'audio/x-pn-realaudio-plugin'; - break; - } - - if (pl == '') { - p.innerHTML = ''; - return; - } - - pl = tinyMCEPopup.editor.plugins.media._parse(pl); - - if (!pl.src) { - p.innerHTML = ''; - return; - } - - pl.src = tinyMCEPopup.editor.documentBaseURI.toAbsolute(pl.src); - pl.width = !pl.width ? 100 : pl.width; - pl.height = !pl.height ? 100 : pl.height; - pl.id = !pl.id ? 'obj' : pl.id; - pl.name = !pl.name ? 'eobj' : pl.name; - pl.align = !pl.align ? '' : pl.align; - - // Avoid annoying warning about insecure items - if (!tinymce.isIE || document.location.protocol != 'https:') { - h += ''; - - for (n in pl) { - h += ''; - - // Add extra url parameter if it's an absolute URL - if (n == 'src' && pl[n].indexOf('://') != -1) - h += ''; - } - } - - h += ' - -
-
+ + + @@ -24,28 +25,29 @@
{#media_dlg.general} - +
-
- + - - + - - + + +
- - - + @@ -56,10 +58,10 @@
+ + + - +
 
- +
- - + +
x    x   
@@ -78,18 +80,18 @@
{#media_dlg.advanced} - +
- + - + - + - + + +
- @@ -100,9 +102,9 @@ - +
- +
 
@@ -111,9 +113,91 @@
+
+ +
+ {#media_dlg.html5_video_options} + + + + + + + + + + + + + + + + +
+ + + + + +
 
+
+ + + + + +
 
+
+ + + + + +
 
+
+ + + + + + + + + +
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
@@ -121,11 +205,11 @@
{#media_dlg.flash_options} - +
- @@ -137,7 +221,7 @@ - @@ -150,7 +234,7 @@
- @@ -160,7 +244,7 @@ - @@ -176,18 +260,18 @@
- +
- +
- +
- +
@@ -196,18 +280,18 @@
- +
- +
- +
- +
@@ -215,134 +299,38 @@
- +
- + - +
-
- {#media_dlg.flv_options} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
- - - - - -
-
-
- -
+
{#media_dlg.qt_options} - +
@@ -350,19 +338,19 @@ @@ -370,19 +358,19 @@ @@ -390,19 +378,19 @@ @@ -410,27 +398,27 @@ - - + - - + + - - + + - - + + - - + + - - + + - - + + - +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- - - - - -
 
+ + + + + +
 
-
+
{#media_dlg.wmp_options} - +
@@ -504,19 +492,19 @@ @@ -524,19 +512,19 @@ @@ -544,86 +532,86 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
-
+
{#media_dlg.rmp_options} - +
@@ -631,19 +619,19 @@ @@ -651,19 +639,19 @@ @@ -671,19 +659,19 @@ @@ -691,10 +679,10 @@ @@ -705,19 +693,19 @@ - - + + - - + + - - + + - - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
- +
- - + +
@@ -725,11 +713,11 @@
{#media_dlg.shockwave_options} - +
- +
- @@ -738,13 +726,13 @@
- @@ -754,7 +742,7 @@ - @@ -765,18 +753,18 @@
- +
- +
- +
- +
@@ -786,18 +774,18 @@
- +
- +
- +
- +
@@ -806,6 +794,13 @@
+ +
+
+ {#media_dlg.source} + +
+
diff --git a/plugins/TinyMCE/js/plugins/media/moxieplayer.swf b/plugins/TinyMCE/js/plugins/media/moxieplayer.swf new file mode 100644 index 0000000000000000000000000000000000000000..2a040358df0d1f8eb784d2ec0919626198d6eb47 GIT binary patch literal 33931 zcmV(xK0*ZhFf=CoW0g?C2+$1+GrGCZV z?|I($|NQejx%b?;XU^ zWphSTjoy-@udA!BD$`?eNsS5SN@LlCN%{su0#~g!S9VVl7_lEqm8IH{qbWC*8X~mS zhQ^502#w&MaPusfxm<{7j!QE2*mq)?u_md`WGt^QgE(;@igT4s^De)1> zDz%!A26pY9gmc#=x9u)afH_pSSA9^lI(o7uy4MiRNR2+Zv2x^q>PZ6{HHOUI$%RRj z)pNjsAHLg;QesD5eE#f^C){4^<#kEaoyw>0-McqRE`mxSfj@%|=D-bp|Jm?LQvy_y z!}6l4n!0Mk0Apj7VQ{s6vcW{%^B?3*QScIe-FrgqiD)pG%ur%IBGrki$OuDinX$a8 zwxUPm&|+;uW@OJCcX{_3EC2{uce7=3wIQOayhmhdy~Sdzjf|L7Rc@*55t$5rD-Bf@ zl@_4WA|ouux*n0>mek5y9YmwVY=K;fj40KYO{g##>uW(=vMK_5yN_L8Z#J~W-!^-L zvAVv-P*PvlmKO*jt&JGj{ggwMXv@nn88%8uhmCJn5(83pv=^f5oN||qp3$^l$QJ;TaDF_p%zm;WHBj*6ySzN zTV~OhR)Zf7;sCEmR^u|QF_!a1%EvDlf zN7fx8XZPS*r%0->Oe56mb{TMix64pjWw98{mUei$C-E`=?~;M5vP(K58mi1yE(Ov? zx?C%N+X-uvqeaTv*8 zh_lgJs%i{|YJHvAP!4?q?$bd_lU{~bv#HR0?HzkMkoxMX3g`n!6%ZQGeG;+XR^sfn zMveP+hd@U+4^5EtF}U&Jrq|tES5;dJTHB%ctBra*6lvLxp^t<@;5)XOs`Bz`r%o+{ zK`Cza_Ha@`wK!BzD(E0{oxuS8qA&zV!X2MIaG?_vGWEag2vc!pIRZ*+rR*TKS@628 zp3o6pM|Y^ka!ioodUKCRXFdA|eWODl>GLz3%2d!w{}1+)jx@FEEBWGYGmUL@WvvDS zZF0D_z`8a$S~b45nA&Q0F1?JiV!OCGt7~#5vwoy_4Khl5j$-rX;zPK`z|31ya)Wumu|4$4V z@Z5o)5ZTiRwb`!xQ`#CKwKW%NGsW#Py0+SO8Cx~pc6i%r!{+L$a+iLIFIV2to?3Of zqmZGeYpXr-exS7pjT~Bly{p1~lI!fr+1?%90Ze=N`5K~y{}tuZ=ir9=IGafR# zhbSPOqS_jK{9iJ1=ng{&Y#He(TM0%Lni3~dzoABSRabTJm9Lb;7M48z<;u5$O+zpK zcqKRb6VIOWdW{O`x$fn-rTre;_IUUw{e9nvoaa;USYY1bW54A;*ZDtQ*9R9p^4OZ# z$H!kjtpDcjJIgPQIP=%d9cO-5l$^R&{z|#w>dxg`k9~V(@|oY4T|0I0n`_VPym_); zw&u&MiyeMsvTmLzTjl%xrIk-D8TjxZpU$ zt39S}JNRNs;gD>@guNL{W9IrVe16lU`uaXG`@z|;cR|pzhr5nW+4WxctamEkSv>vo z#a$1}lB*6!|H!dCD{eqr^42@dO7{bn~$8^bf->b`o8y%enINe$By|-I1+H`$=g|HxQ#0|4!Nn{ z^Y{}7e%|wu_4WK!qH@ofS)wmFChmpEeqA{IK~@&R1&n zx@Q`@&p&#qWZEwUp1TL--0Jmr|=l6K_T-^KIGWEK#^r;v)@>EJ-uZ2&XGGVHb|DCiVuV8@U2O)|B0C8U7qUs*Y*xG|NLdk)}niEXXbam z^V8<52VeZW)Ab8qe0AgCjVs3w1XV11=GUrYHxG5pe>}d&@2Aa%J&(J8aiPnTn@{hD zQchZ`YY3Xw=}%*#e&_35);)5kr^G#Yi{I~^=LT=s_I2g7FH4rsxLtK%Vf@HVy=MG% zt77D?X<6sKUzqXj(-&WznX`1IV(NFxr~dqC{LUN4Mvu(zcID~k|2 zAMO+LnP<;GBjzg;p56Rqw%dd=2J;tZZ`4<;>w46Z_#ee{XJ+2pnYi_QzuND&9v^#t z<1?%JE&cpJ((VP*vY&EG-2PhpB=50XwiSP0^6A*U3)dM>n+_z5==c4-vR`jsS%2W% zr}Ni*Kj_wJ|6@0xQH8RuY5A9ckH(P!}c!x;P&M;vwrz_Yhu#Q-+X@EAGiL4 zk0J#G|Vs4O^i>CEnX-<+8H^oab*^!3XoeLHzc$h6vsrDIS15q9?b=LRi#*|;m{ z;?T`yZ=4(K_U)OX5u4NRexN#CS@XxAZfE8kIo@H?x!>!)IQHoF7ecbmKIVI5(V;~r zrw)s|HEC#k&Yl~04sW=*Wz7Zax{0gi9Gc(o#YfjOMPD|he5bJAEQzA`U-g|D=h@@8 z!LkW;n-1mN*$=f;*XO(Wfj>>%Gxk8ljwic*^VJj66Gak*HS6rRchBybdwkCH%Ypf! z^9mMi=(%NlsOhs#OLO18z4X>+CpMPV|8?TI53@|+^qq~|fMZGT6hsdHy79vwR?JU) zc3;@k{++h0`DF2}OF5oLo_@CRub(z^dp{g|>dGV8-+nyD?T6RrhCO@AxLYT_IxcR0 z+@2eOPao&fF25PN@^s_-$Gm=C+Pu~Kou>wmn=nzA|CH#)2{Q1kiuwM_R9QuCclaJgD|MBvg^@%qxh4$KY>%z;mhd*8(^xn;r z6Mg_a_{hkOrJX9`%s$r(3pB~%y!`5w|J|-`(tXB?gqrP132E0(bY3%T?TP_o8_$Z@il-jF zw*9=v$&jO_Q#J1%&HB1e{U_$dF|SVB^!%0N)A!ywzGvOKm4&(!Zs9*a_vF>-ZzXM? ztNQ8eQ1zXApKb|RTlld#bjtpyr@9}mT&}%)2JM-V{qt4#tJ>?<-80Sv{=ReT z_H73~7`o->n7wyrH!c@NLy@nV_S1~PHFML>EG{vAZ8=zH47=F;Q|9~o{3my5e0aP!4nG`FO~slFu>KKyp>+R^Wp-V@zk`~87+ zS2t~&mGQE@j2V|sn*Iz`T&%61f961HQOqK@FV#E8ethp4>!sB> z8Ff9bY#n!T+4#9v#Jj#YSW)qbrElnt>ywY}pLklg{klR`o_zx(ItyB&U7 zJ2~ySfPLbNBT{BAO-)(8Pf+f;XDV_p%snHY_2=}zx|%-!;Fd{ldHUALDA!r}{zyMA}?;Wy%*T)i`XP;KIZv>bEZw^^Gju01_cbDX(Rxnt4r z-`sxbQCgI~;Kh)nxt%U_TQgzF!ONGQ{aO>1w8j725yOnPPDGBb{UG**8!x79?iUd_ z|KzqOibfyYR@69jbgXBo{*eCI>bO59&AG@<`r?JR>T@Se@LipFeRE@MXG6bF#w{u^ zchnB(dHKb!Dvp%tUk-Zgg`-3N9I|m^!qU}pZaUZhPkx5 zA9>#y=cJ!Ia*VxtV!ijvUp)VLe)qY}6~Dgm8U14RHD85PngaR{irnj*dyyZrmcG`>dMk56E=M`@QKMQclNEey{MWo>+?@uTWbxQ zaAkIbeEs;%?+sCZVh)_XH(Wh7TeB!|(qp-MLtaldZi?BwUa zet%)bY3=nMAxlKC|-jePy)q(0=czEs{m2ihNgp`^eOduYOvj z?mBv;;+GX8PRv(*;IJ z8#i23UD>?n-Khzmymc>o><=>*ysnKub!6khhVhH$=F}WfmM#443e#iSh(89bcPq2&6{e=JPAvT}Dw$`+;Xh5aLLd#xVU{XE-!QNpIPzgIrF_kcbsuuvCLbaCG8 z*{{@mxnp$CKVB>OEUE6RsPs)g{963clt0GJIQ#pvj~`Dx`GRQXfz_v`eGWBFyzO-3 z&UsOR2Qo)a%?I)OrXV{Km8vG79$7rj3H>fJ?X zwdd9>Zk4?{YkG@8zYH9Idt~=5tVf48ha4KdM?aUe=(0C!mY?9vBYSRpVzcKL z>FUdmis)g{^Wr{!r^gS&j}BWhw=p(+qsL*<&5+l2Kesmc>SD#4U%yq9Q!sgmy6ekd zytv0aV*jJp*)&`C(r)Y496WSxLBi%$b&%zy;fs#TrtF^nyKmf^vb)>UujDT~xwjbd zEqzJNxu5bk4_GkejB2>__OZF3Aq+DMoE<_Vt*z0?%bF z$hmv-QcP&X^m~iy*4yV!|NqS~i~QF)abkMVA3gWJPLX3Q<=4{KWnlZ=rLt48WTTkb$onyrw5D9yGY5e}T4GOss55z-&$GW#IJn)s}n!e87s}07GrP z2k}r;rpHjCa)Wf>ppv3|P5%O!+2O>Pj7E!`53WxwXO!3JP5K%GEXSE8W)g9aO1*i| zq}stIW1YcdncUHi;t~*Cnxd4XWR)r%AQe^Bma1A2V3WKt>I7Ex_}F8?;(`WvR`A&d zCQpE&N%IE{7~H?0xWI=G2{Y##G49D?@Y0u;6CeGn%pk~MQuG;AU@{p^#8KL3P)Wg% zA%li^2|l&@s%k^I972T=cm33 zq7dGasSjSX#4DZ+2A(mb<@**wI`HrKglCgP;P-k<835ZPynhB4gRiqX_0n7PT7u7G ziVH>*%gde5o{+mReQqIWG^}!Nb36Pae zwiq-flYX)rpUw4_s%o<=&*3VmHq=&FDir_{EC+BLb~nfTt#m%J?gI_D2Gl}D063Kh z8a&P}{3wGrMHY}*BQf(gesRK!)CtHcTyZe+O3p9O6~ofKco?il811pFF_c&7#SPfS zQ*W{8%PO4`y<1m*bM%AbD-@eM5!R=6Fi~qFP#+RN{Q$5|T4f%L*G9`_Rpufv(AOEt z#bh0n8KAdRN^u3iF_o6rn+OV2%vBqWCdOXyCX%U{z~}u3y&g<11vV_ zYt0x<>S1p2C^H)@!w9y|6L6gn$Yh5MZ=##*jRa_m!A(1~e}7O=LkbE8D$4mLNM1+= z4jM8*)8B2tprJ(tp!GDv3KW%)Z4OcL0Y*q0iIkk@888S~uugQa__QvRXcdD|1X2fs z+>CYWaEys`BV=!aiIflSuNhgA-@i|OKexde96X^t1`iojIHaJch<|h+HmLv50r0N3 zW?*4~2mds5F#pnvf9y4A_&~b@PA8vCy8}+2tAmH8SFeIzCB>kwi!~q+rv#U29)WIp zl1E&e{Ie7)OMYclb-4tpBfu`&X^O3LfdN&oXR1IyGk_j7_&O_KA`UJQR~0eTAcMt& zywO|g&3ravutgDpQOX6}g_x9s)ZPZG7#vSet&@}YNxB}=3>XY%VeN}lZnzDbu~q{m zPUvEzMPJSLgyp{Xw+EHnSUUh>kJY54thx$%6#2k{Vw_{eLyO!B1{N0#DbWtm3@C_u zaMQU@teDh)IcZ0HWgsM98ALTzwPFH$6_fQY3BT$O3rCY#th*ua<&Lt@SlVf^E_qN3 zy)A>A*Ztj95|+t;iZ-(xWXqs>OXmlt#I-$0FngcccDP-ehOfy`11r^}bR4}cYj3P> z{5w*++R?|YnzlF}aN}liK~1TlTmt&QRA!KxVPun7S6dNKQc__ou^3Cr4IEKi#@dof zLvF)rOuG# zRat8EbwH=7;gXrbsMX0TxTK}PB{PjtC##d$JfpGNps$68G;m2#0Ygek7E@nUYXK@V zSu(I5l5Aqssp?cFIW;wfNlwd9Gs)?h=}dAaP${Z(6_b*hk-?;8sMJh)W}1r0NXyJ* zGSaisnT(9gWF{jsJww6|N<2xC2*U(-yRzg*3*PsQKa?%rW5q^>Egc*=UIqyH`?6h~ znwBieOiA+>BPFAhC~0YkGF%)JKnJ2=6x=1aYjA9ETyT7Ff-+zEh*Gayh-i1jh*_yj z?xt|}@br2Sv9y>Ku`DBHk&I>JEOKKR50>_1884RcW*Hxr_GKAAmhop9CCdb`OdyMb zSaC3mI>comV%YqQgB(kC;mQk^cnnlShN|AK{$8?zj z$uba&GFc{@WqQbRz_BOGFOAC~FMiu$prKZ^#k%plfhFpGw; zOc9HUSu{*G96XL-(MT4JVwuq_GlpeySfpc_u`E-S}@6)auJ zGF2=yo@FMmOf`#YSV=9*7+F-u`kGnB!ZP(N)4(#5Sf-I>CbP^GmYK>j(^zIY%gkUA zNS?_uO%U*-h?SaHW)_l-g{K6TnS*4HBOvD?R`LYgpG2(R0=O@N=cgdKPXql7{GWyY zbMRjb|L5WV0{o#En3v%H3jCMD|5f%9RP0cSiUm&iqu9PQ=4^d+yytnw&qhz80my`6tLdi45Q?oMo-A-iCIeooKh< z`k_F6ERcHy@)LplR3P^XNUK0L3*=#e{7N8?2;@&TsRg6nyNoH{lFN}?g9$e`LS9iC*c0O&t)axor>lmNAm2<4<%RruXefW=U$3E*NExo70#LwE z4eYN99HF6tP|zR^1sV&C1R;=uUJ&n)4jm|jq%x6JRS3=^kxagl{zYU0ISvrWe4{-qy33^Vcak zB^O}j0<}SOS6eQ23Fd;i5G&V#xM-Snp$;irSl>{j4M$yV`8v8UP2uSGI;@M}BDjwF zNL#^Shp;H(ReRVWDw;eO9(EDc$u7#v1ESQ&s_j5^we_`Xqv19X@`|QunY<%p)gxBb zHIzm@Vk@#XbDg;uu1lqlt=OvV3XDU6QG^-8fN?m_INUbUYVFHVz%`2J8Vy{Gh>?31 z0hi9I8XkKLM0Q6y18S~8Sh&tM&Z>(uplSpm#P^Lum3}ro@43_~kfN-r!>UnK?D1Gt zTn)07>7sEoL!}~{p%4WnXC@?~Bnl}hF$3kB3V~GcQK`6w@=%qn%Gy^#HK~r-#zP>7 z4|8g5GUCISz=u%{5tN9KOg;(x8m%hZL@30Fcc2WtStvs*=LZiyuvg1wDzsUwx|F^t zRAs8I-pZv$Xw#rH8mzi>c<7ssDl=@8t?>i2nczCj%4I~$^;x#*RviF(sLF1(8CI?v zxN5t@>n3E?_JB-$6hZJT4XvaX1V10?a=4r&J^>Kg0;CIf7JW}#?p|)-{4~;KfQ(%5 z`z#u(iK*1soz>&Nv2zkT~7 z{Q%pW*ozwtp#xObeNz2&B zI}YQ9al>^ZxDmv0KlbOvisXtNSZ6$j994HBdJNg?u8DdK*&at$-AG(}q1r%Y!BON! zk?ZKbBgK_k+Y|6ctLw}4<;LW)ST=}T>U7iPO6_jToo-`uWp=kWoNgt#a=Y8xPPcKn zZg#izPB(q7!tS=!=~kNSZg=~@=~kBOVRzd@+;EnZ=X%=R4q!JcXV4eg4)SC_QZiq{ zgT@CdjYHU3%TZmuN0mz#X$>ovPAn&MCxV%r3 z@*Znw<|f1*t27*z(h$@)IM01>#ps4>&RNWO9yN0{Ty6YZw8F-$K@^Y=>h_pXk5W@)8rcT zlWdO)kB!7}^2+G)75XW**))jq7twMB2cnLXT6Gi@;u1t1N4ArYjT!MvaimY7T<@Vs zKh<^?yXoqUH0n>B+>`ss2(3A}5=x1;xo=aO* zU5;Ku%MkShZJSSnKH_FXQ|qv<6BAvR)8NBEY8KFiwx?*U6!_{)7+3O@8q+gZYMT&U zf7JFYmVx;QNAn8pqX_9|A=`7V?lbM~vyp8nEeM>2JUT*HFF06T-@G18uOzadfxX20 z8I6OO&HH(|g&+GHr=K~<_6jg)WAu+B+j3er7jm#0RF%01`qxK;*%wB3GVppM{iHeN^JErUr8 zGa8w)Qg}rMeyTvhc9`9QL!l`uDkv^08B(C>HIi}zYk|RH#^%|{E(SLlmJODjvI(xH zH&~$n%NKEOZH04eoggn;+T;|xv9b&x*cFCW20C~CU40$#cb~b=lYfm7>pVki^PQ() z0pl53oAW%eVVK9*6NbWnVCLv1WOBC_SqRn+#sY>7VmI&npp0%=Fm?lByEd4A5;?Mx z)>aL0m}0}y1Mah|2q7*PTq^eUysTt{_wA2()x>_Yl&rmp&i1=HJn@{$h9N6Mv`k3xki&~Cvxpft}zMN zZz7?SkiuOihG~gB7a9nXQ8J`OZVZCyik5bhAea+rMQ&1rXhzGp$>C9~6}u@AVkBCL zn+HN-R?E71AtaG%rEWf8Es$wtZhp|d5segh)+2X=$b*H3!zzuY*s&;{sf2;H7)i&{ z@sdjV8cg41V@2`OO3^hW6UoOi@$yRM8pOhFtT?;9Dg?Q6G zZy6&B23sFe0&vB*b7Z@6X#Z&&vkU3wBE-?eq_A3AjrU^6LG$G6>n!yqgA~@ojIgjf znFY7u2K@wyfh=k=b@k@Tzh5N1Z+)}N0}_(d+C)uO+w2Wls;#dj>rxKWqzFurs7h3$ zZ?vy@wPoD(YMI376gQW!|LQIBJSt+3Il093+6fDiD$!;#uY6UfD+YH=7CqAT2Sd^NY;VnjiNb07f#R1B| zfIzUF1O*2NhXi*B4h;@d#wim;9*7n(Vu{1nizIK)*Y`Y;y#vqv( zEQTFfrVA^HWj*6%u{6tsv0e$RXAaA?yJ@TVyz zl8)*W-I-it$h9lECL=Fz8BK{qD3|g89U;<#GDV))dISmqG03YI+(cN#IxRn9iAHIi9 zmCm2@SK%R|N*BNdsC3?(H@P?mY+fJ=>*w8mJK&U=*4k7{maAOV={qzMHf#t=OW|{$80rs1x|VSCatDIaX92Q>pjQD3ZsX;?x4o#wE6b>S!sBSC)P^*CK`crfR5o9tr+IDfn%8nJwv9RBC*KL{aHK_l{?IF zzDRCB9cR_h1{BdGsS(*tb4p5XQ(%jN55%a@=3ziq;IVlckWPZF`Pg6=EnlgX!L_f1 z#y)M{W7*D?tj!1BiF9&K&bj3xt%BI={GD#@xwPFa7`tgbAcoL6h&(Ce1?w3&OBqTe z0h_ly!JSp$$FBmOR6Jl9rnH|kPB4lg18_RUZPOxLbwonp9US9qyGx6^aU~ebl~k!p#y6* z-6T^15%gUYbqD!k-NQ3D?G04kKb;Bi0-UpL&>*rB2QZ4Lzg8h6IbJ3Kn9hy?5I5+n z>kUrbEyb$7Kb*3H5~LPm@7{g-6csUKi**|@7UY3dg!B~B5<5zU=;_wM+uz~P-EcSs z{P{3$4s%GJ-XyIxOd@a=9=O6_GzQFI_+ympFcuG!q1>3~JlU78pjv6q? zr_FM)qmOX*I;MgSV3i#~<${rGIaDBcHg{t!!3XkyvY@sKkifuN_J8eQq3t~$!PrU6 z1W1f=!Dtey^mUlA+D1ovwRqhgD4NCRYk-N+4Wp(9>rH_3PG-tY`bjQ8R={53(+)BE z*&Qb8z2O9g{CbnwXp&Z#^mUb0WoB8ap`xl*TUA{x#eRnXvXeE`mSYERV{NgqqN17{ z!ASDwz9E$h-pj4FzJ>s$OorMHZRMaNVfM+p9dm@Sul_X{z&Hq!W9J#HuQgO7gF7BO zV~j8v;yD`ud1__+gklCO#fX+xPhuM+t;Il$6K+N1JPhJr!lP9^cul;Gh8H93thZ zp~ViAojcTXlGS}`%MFbLJ}1Xok&mhZDzo!}hq<~DqcQ*5sTbi)54%~IKTE^@z~_;; zsDGbc1ri?7DRo$g<$^8P1^4JB7=Za8-U)40N(Zd_zN+3DW$I#>C$_5A zy^tVC$oy8oRaY~9*Y+dhqK$|>r*&wpAh3~bNh3VYiXegJ3E({FetDEEQjwXD+|eCJ zt5{f8FxHlvX_X3Pqbg*U@EtWy*?qH%A+WK^Qn>w48Wiq$u#E zre!heG!=kO(=s5`bagUZQsFT@6JBKCOJ+JCN>#}jaLLL7L}^MUlbn?d*wU=5R34$t zq^JSAnv#{OW-zS|X)Vkdz8zv=1l`2Y4O$&rY8(JKtj1GvFb|Mqx&cQJ)fT*d;Ol7vR zRJjHz*COR1M0>TGEqgr*U`d9hB`i%asQ^f&6)f$+B2N}pF%SS!{aD(cEc*ZyHJGJg zb{z@`R9PgFCBpKEilx;ooy>Ztuyh)W(pjG@*0&q$)177VSd`B)y;xMh(mhzF4@>uD zQ9qXM&(Z@}dLT;=V(Gyw{RoDc(nTy?%+f zSH>a(OFPh|bQMdFXXyznUBl7@S4vN0X%kCZSk%CxNi3kvVTMnKuxJ`fPiJWWmCk|$ zKZaN_phm@j8l?d-N&{k)2DB&*Xi>>hxC25|{4)GCtQY{IVgQJW0U#=V9bUnj7+^yY z;6mxu@P8BjfDiS58}5;;5@4d<028Ix!yllcVkt`}vh-$n+6tZkFWZy#*^5}^0mKGa z!9wvB&`05|nWevn+f{J-748YF_jSbj{09FU@V^OMzoQ6ZgrLD(3kz~hEJb@^DyWHt zYZ!hGhiCt!rU;77pv06)olMiintJ5)%+-M50Yj(YeIVU58nM~r%G3Djcu%pgQVvWD zQPTogFAIFyet!<%DRwa!2-xQVf~XovH!VR(MXx}!UIxaID-lG11Tb%B3181 z@q^_Mnie5{DSuab^7nw!T&fa+4ix2qH7-b$59=hs$~>^wg(&j@W!oVjA5gZT0eN7% z3!9Wru_(MzLrGCYCk^F;I>u`#UliF#L;0boV2r+vF2?BFPQx(zwzC-HZeu26+-(h)A8imla9VJHq_6^^FhCF%Ht2nZY&rge*T>onDHN#qba z2*f^O<)k2%k%-(BE3n z8AkK#_E1W!oLq>DsKE!UoUjOl#@WU-!z<2h1;l7&{V|*VFnRO<3#+Y^kl^9U7-Cw@=Rmcs7UJoN(Wos0g?zP{u&fY}W!8Cd zUd>u>1n5f=&wfK#>V0(D^M z_6k67J3(Rq0UO#kl)~Wy+_hBNS>M^V0`4*T7~4v? zb6ujr1g`B01@(sWkw}RJDXWN+HVy>+2S`4}RxVzf0Q`WDO$4_jE-4zlu1y3N0*;jf zR72qbS+D_(P3c^j0_a!B88?UPW^j!G*DcspA)ytD>}zN=wGU_7XGoW-OS65BbZJ}~ zmu@?NNDTmlATd~Dlp)lHzG<{J6>|IwEWw=t2~k+WQ7qv&kwCm>Hgj1H))Sc3LjXhP7aNO<8jR40}=L^Ee0WLpz02f#kkFCY7L-) zBbxGR>^A@eBG62V_*!i~s_bQ32eqzOgHLD32@KNhMJh-EfO(;QfTT@MH!Xm9dAIGn z05cZg12AXOEZsrC`}ltSBvR4j1-0EDgFfCe87b3BSAx`RXvPQ}>Q0lI81n;Qu7Xd>^F(`}H`?OR^j zOf0RN?F?{qYw+;_X&5NmjSm{I&3sl~<(Zoh=I#ObUn{P-nA?U)JGZBu`%j+xQNlgg zb{AL%^W1-7($4K==blBA0+>y>9|2^qm3xHeehia#Zf`sHJf3?F;g;E+02b(fFrxoS zOvXQsyPpL-(_F&D*cQSY=#DVcB2325!%R;>U8ILlD327ZEeOdX)oLzy@(&MGJXlyXg?A7#VQ=|vQU}9?<=(JRobd8#(Gg` z2SXk0fWT$}zRdgLVYA?ihs|n-fv?qqui*|~1U##RB`-w^goVMg1T_nF5Jzbp#I-MO z)PR=7br`#C#3XM1n{YG(9A2F`S-aQm*ehnkFj%|S9hk)8KEPf9va3+U5PbC~xR!lN zH%H6X<1m^5{5=QfN&E{4)342eUNMLfDLj6|6?`|ulHaTH5<O0uSJTmy2W-@{9deOJYfuZuX3Qw=O-V+&JQd!^26T5@a?zdYIF=JVFrYVNa0qGp*BW z^-y81VdoAw-?!s@KjX~zRS2DdsF7VlQtAwCI}1TX#y^Vu%n-zRcqoks0;rAcdrWG} zK-Le0DhKKUhCi2j;f*wxXe%TT6&Rq_|48dNj??0e3O~_SU1cY$XEf?tNmrKIu42Es zDz1tfpBrLtv^FAd0*rsKpx*?~H(X@?0SSP90F6YVP}~-0Kq_vNJd#qkY1>_pL1Nt> zMBIai6aukt5*6BJiAZc}AU3l_*5(2|#Bh#?q$>oNAIBs~*IYv3bj=fybm2C#z~N<) zAm%9%WM&v1?%~emSr~BJ7K2|XBiva(k4bGUhyCVl^>O5h@Q#Hgl%hU^2FAAe0XA}U4+nz4yqW~?QG=;g zU+tEf2p<(oRHv&l(jT&LtY|e+JUYWTDP9v(s zi@x|+1nEGy427dyq>v_Zq>C5%rki1CZ55pGgWrnnXT>kk238OF-S)-yRRb`B^Hok@OmeI!{4dllAryz9J1s5QxrD*MnFDEZ zfych0Xh+Dmw&1o{_HBt9ZQnARtV&4{WhE!e0YWZPik0pG-bx>(cOX)B0=pWRQE65L zTmBWS$b%JmvLY{RB9!>DV!(>}vtl_bQnI2zRus;%9a%}FtRsLfqgYuqE9ngNSqu$B zDpv$NDN-o>0B;Wm3s7>{tOYL^0-5JQ_YpA|MBjzDbVZ(CGAWo8JoI4BfHnmfdO60> z0|3Vp8WR{o7*yV!Mg+wb8MjV&Tfur&Ni9gn5?9}fU}BLc1&`8P59+n86?0@$aj z98NH5m9&h%ll*|Z0*FVudF9zEui8~S|EQpaZmm^P?DYVDK!Cr;*~ew1!=e}*X%h6n z#KY25irS%<10Il4QD$m7qeN1<(vODj60h1ISd4)68XwRdGJnJ)m!S)Vep1pTrf4Z> z1{nQ7H^?YxcTW#5a`h%xUvgCmyP9QeNz@GoO9^54c_c|Zh^B;-9@s!p=A1sBA>^8fJRlhf+{Mfkk`hp&nJIeGu0CfWr+3<@8v9+bi9ng)%T zpAh1R{Ex_i`1F0a_!#T-FohM+);LP`dE5V#M2K9khl?C+RX0{wVDV?2_Q5Kzu$ijvK#^^Iyt=nB+fPM!`p*Ys)dV7{}#b%Xs*BSRALX z;&{lMXR$tHj09=_rV7EC(^-Y4s&X795Au1~e_wf=G9hB(IwM%C9x{m))y7hNb+NHO z22G0x{|iY3c3o^NBm({U1C{gP>|8hu6efg4bugNLNTm#L{fl{ zJX|*E%gO*^T~%6D4V(D^tyu@BoL9ji@sMg?9^2W1BS6zO|Nn64P{I2?oQ3ATIU!6Y zdp}&()EM+;IO?FhH#rI!=g33$nhrr^3lf%-{g4rY9UsoEOfuNh#K-I*t0UyGrp!{W zuP%ZU&jB3&z{$=16MxS>cGEKK7|}y7;MIrhslan0{z&&0##R7cKS(w?fB%2Oe$!%l z=4x0VN91N^q~qPc6$U^vtFwr;9o8+rr506$JiW$-)}EIs%{+^pmb$Mz5g z;LpiSax(Z$P6bm?aw>qNlQV!nIU_w)!q0u+xLZI$1FScNcNoc}0A?A0zR4L9erCX= z0N|OY;bmq@s?;%FXHr#JsSF$yqvp4TGpQ+=Y9=*Roo3&`mYSZP%%sAxx%S;_Olnpt zIAmpHxVISVF=@#FhE9WMd9@yMF==T4mQG8{OqUBI9wsd_H483TYSuo^VA9p8nQ+NW zkvaQ&COs9T0!CXcbM}@@dPZ_8T+-7(oTH~=GE~WMsIMwL)xAZZ!(>1HUx`(56@{Q>qsU5*y*p}LX3ZhcGJH(U557j}fhFxI|1}OWKEWD9NXoFC`>6s3b zq0jxT4k~N1S_;P$BV~fJpK^qBq;eaa_yC9EAT}M=+KBBC4);;82+kh{lsBwR#Ihm) zE2~*iIxFfyu-pA*!;ow^%}PeGl5wo0l$97*Nd+qz&q}ncq>zGKrN;W+hWu z$qZKVC_tzIUM-mme}Gp@7Q!D6=64k7lwGz*S3LgZ~Qn1E5+0fNBYV zsU-lUmaK(8pr<8p$gTtq*=65FvUiaPfHh!Z#7l%Um^uMh45#V1HOVP4tf?c|Qw--> zz>~xquUz;7#rgroDlrv+sX$BxVJa9?A(-lbDcCW~hQS~3(+q&?z@;OmA~A&#s%$i- zI$^3aP?8v+Bwc`#b_Gfr2b3%xC|MFvasab3@?@YyaM~*)N(IU-4Jfw^%$JGzvYWDC zX}^0@H@N1&Rfck#dcsxH)RS@t@Tmk9H1!fmSXR;pAFHG->`i&}1&49{OuY3_AGx}%-^2pZ%g^x3;gXR{`N9|dxgKf%HLk+Z!7uRD*m>bzrDrZ*6_D? z$ZZ{3Z@+J}-#6RuTkZGl2&KXnbx*I1bZ-nBrhM}7I-74EHlq7t*s#bi4`9QLKZXs9 z{V{A<0-$2R#{;NXhNJ)|mLnNJi`|esFpp9ox4?YL9VvqHC=cWwluvmgkKjBw($_OM zpYldtA$b5c_U-^+Cgc;E2Vi60(0l+J`-SBJ*w{ZTAHc@S@H{x`Hy}J8Ajg3b07pSV z5%~Zo3GSE&z~hjP`2alb5Sa(yhtSA;DjbDH2cjMS<;Dg`C0^QcsmlB}W9P-=>XN{3S@DU^v) z@v=iYUUpy@yvU#FSaui)i~MPL*&)@wlt%+#$936(A8E8ePwd4z-T5Jf%iDjs&hLd) z_%N7Q!*@>d@d5sx@NE!NRU=-3C(l&=LybsXVhBS~`@qON89wV%7uWz9fCYGF_p*8uw%+qkevT~3c1egke7y+1i)8=O0KZMm9XeIP&94kTIRr7_ zCjj>Jd$){qbgFYD>+d(5w}HTDbr20N{NH{q$juJxC`m0*@kise7<7usH$)V0d>9Pi z$%p4n_w8N|cVwAMa+6%>ma9lEa0)w;f}koK3k)9os-)Hc+xKDDDr#hThY_$D+CKax zm6%^ybg;o*^ZP1tlIxNIzxo^CSYmY=H~7l=0PirYAZxq$!yIH?d1RZ6WNqL9Z$Jc^ zV)s3&O`a)uCi8$d;M>J+##I8@F|R{ib{(xsFc)@Ht2+^ zxD-wjZak7c!5QD3_7A6j}S%s*g34NGT>u^lh|s2=qi6?dtM;`nPWUZ!oFrb z#BPrt(Xp*Co!mIszu|C|KC+eck?r~=>j{6u;VOMpE9s-!^*ics<30+ns5oaj5$$CJ zmeoE3h_X+&+AIowCWgh313E|4IS`4V&!mS5b~x4L@nZ0l~pn4`y>(KJ1h02P`%} z2qz(_slp$>vsXlC9ys;)1K<_GxZl&1H|T524CVcaB6R3or@g~fqdXAI0f(rxk+!z2 zF>SUE$VOqF#~()krwH6H)3Kf2wcGOR(?-AH%NMmHIb?w1%#Q4~(~L(51V@;iEevg> zoV~+JZ!bO%&Pb-poYKn+4kLEu{tX~J+q~~0^G7vGsR%!fOG*$G7V_BWx2UzuM0f0H6XJkD#s4qY#)l5ngJP~ zlAfLlpKAgvrcB9-{gui9r8I!-ln-E}voYhO^^3<1;)FoQWLE`o!TcF(LR2Q!>lov*TDMgZ0T|ePKg9 z?EjXqKDjK?;LY(2Y>qEreY7mo8-IGqryt7obgHMv@OL@t;`I zvrIYbV_*?{RtdhT1US-K*4xNR>R3M$i!7`USYxKKXgcdN3pS0z6v&qZ@@0WsCXlZPEfpW z(@a-LlooklAh#$N%%KQ%$c2*>0r?q?dSh63Y+NTuJu405Vcp)s(dHHSG~Y@B@D@vD zucBY1cwaMo;i(KCY);LD4>}>ZxYIM?4eV-eKKvD+xaS}YypHfo#rwEDL~{{rY}U~n z%`w=cZ5}FR;=N$=H`x&W1R5*SNr(%Jv=XEj;ZO8{f4n6ec8qt$bi5xYCHGKHx`E%U z4jZF&GET<9X~1sy97Wh64e+ObT%|MI035EEwucL!b|K+5BeHc<$%hM{cCj53!aae* zRg!Q|^Wg@-*If8;&*1b*9N}KV;a+wLH_#bw5Dpi5CqBKfL6d}QL$+UmJ&+IgI)r;e z2={j!ZXgNw4j*n1e4m96_b(i-R4kIpDk1yuw@)IPg5lKW9@Ijb?7xJRvyf4+|B?ym z4LdA#9k>n=zER)=-#!64_E>yRP6~VZy|_>-7p4p6!np{INJ@hk+cR`?gAWu~GY16* zB>^&U^kpK5eg%XFyDmxem(qC8B^Sa+A9h{Zmcb(gjf-nJ?8X#_c&UM0fnA&Rq2&7` zURJJSG___4-n9is3v^sr?*%Ia(NsNr=L^0{LW=V(yl+nKNZuBgI%dP@9wi_`ZXM@&ZN#<$F9x#7}(m!hkFx;3*VID+X&vpXZzD7 z+%C>=yW(&?9pTP`jdr+g&Vmm`!5+IVe7JL9iyz*(XAk!Y*smw+J~l6??d^h-|L{dn_OBYY^@VA>21`xUnSM zH~DbmY;W1aU4z5*afG`8hr7uo-1wH^!d7FxZEm-RyIo{^AK2shaCbnsJB4s}<8b3i zxO*Joeqs-IFAf(V|9n0l!r?Z%gqz?DHxj28HXKW3qoLLvw}*RNWcwP}6ZmjXLb#`e zaKFXjCV0Vk&vuRvH_~<<6S_n$v00l0dZObBXlUQt<8lGV1$HO%ak+-$@(VAGz!H|WQKsMn>Hjmg4HV4^+4UkQ;n?T61Nywoi*vsbF z9B*@M4tF+r`@Sz9;P?AichB_5l0jJez4zIwuBooBs;;W8>;M1%euy5i%kmeLw0X2|aLqlieo?@`tIAfiX@l6*+TP-8zWh8h(miHg>E!Y)b7deX`FDayBu0Q2+kVlPm> zUqPHkWKvF1#QKTOm5t?a#;^r&U%mn5^WP; z0yEnYe)Np>er=LwaxQ>of|XAn6}(;#Yvb|Nc;FE{5UgB46YFE-olLH=K8Snxc!Mhu z_+f3*gHsbcS_s<_>y#Vwv>nrWLWA{g(0WQEgE8yl+Jq>!^;g=&(Si-&1Nfwdx?3va zEtlgZpTkR@WA)N=U}R}z&uP}@wDE~#f%OmC_++x!`aDIhbR)kcBHt#xgviI(OPcjH zMD8oMzK+O!)z&vCauq{kE<(yLi^#W2FT<=HMWbf>9z|HDBJ1;1!9PF@ET2Gn<-!}pGD&(>vtHHQWzs9w54DN#yJ(R_b@L-_JfYKXu|xvm!oO)^+F3|;+CM|g zJ1Hi;{Li)h6%_SOJ8H7R`lZNa!5x-PTItY2&6U27#O!GCC&hF4rAX z$P-P*tlyKT24nai$g={2>N)a+lb2Z*c?z%u`XhOYlO@)FlBYDe$odm`$}tN3SsTan zg^%!mQ$+=>|3mdqP2XS#s^JY(gEgj$wy#I2PmtHVLcHtU`nbB3eqNdE2$Bi>NjIP~ zS!vy;Bb^Y0e7q6Hd_L=@L>I9nMiN`it&zkwb6X^_-P|5YY%#Y8$FZaC+l;ujN#DPa zun=3m3pl?$xVf$YQdPx8W3^xG?uA6!o(x=V4DXS~-0e%Vx}uCEw~Ld0qX zV^+;Tmjm*l21N^l>jAFhka7w75iYo@xq4o(aA8qNe!&7(T)GI`H6pfJN^T`A;S5!D zI&8YgEFC{&1;%&y95CIXM`Mp?_;msDj$dS{?u(8`5(s)qbWhklO^abDNdi4X5GI;QMVL-dy?#|GN73p8!5zu>&=LV1ZsjPxz%)4q5I2IqYQeD>|_ z=z+o@JfDog!8rzCNE|I<6@jxj7=afWL3GFk=y#epxuUCLfci3!yO7)>;V;JdB#13Q zoq*022k#lS|CAVdA3C+oW#-s%7iR3Zq4T8&Vg0;MSW4dj6fo;Xr$ee$B5V_g9z-t` zoe~apz&OhgX1dyJPFpMKgb_6s2+2TeFO+cxaXeajHJk7Ty+`uK^Me?6VAz zxHIDb**s4Jr0)=5uXls5uoUVWuFglpP|s*;bmhn>s2>l_aR{Ad#zO_W-$7GTY_@Ms zX>5t;neh`H4Op>Rqi6P@X>fl|Ua(+6Q6M*;6)prPV5z(aR9TD31>VYR!zOJ1-CC34z;kYP&SB<+X=FO_ zHTLtUKp`#Gfid1YkYdLaK&3l+w>_!;0sVkrw}4*9^qd>S4Iyqm0_zL~qLyq7doKdL z2bkW$S)V;c$Pa}=hZj%Si+w$V0!*GzfH|;x$AMkDJ2!3gkOEww2LmOJ3*N-83R_fZ z>!3Ig`(7r648(dUrY46EjyM_>8AB1*KN;* zTK4ehhT-Hvuo4{f**ErFokJ{9Zm6xg9kB0h-Pn2UMjzy*0ubLeh*HsBd&$|y?Izso zT=!+MGuf{=177@0tbx;^$pxCY(aN{8u7=?Lg67IR=BX!v;eWAAC~s2O7p0qRun-gUTs|on=%+s^=X-U> zq*x=!P+M9R0=vdMsx-DWk>pirZ*6vQ)&cQNVBd|v9*;pc9W!mD#laq*W#yeMNX%Yr zzh$Iuhq2?LQ@_#{jVjUhCLqCJ=@~38g6J_+QiLVwb(pbNgQAKP#VW>9fH+_^U_ct- zKyL#W#^zd87jg~g)xh0e#AQHlF9y&v*FajejO*2$E$4C#mutDag3EQB)pPkW&ccKq zO`y{aT&^N`ZXV@4#(5*>OV*}u?i`t`CcgpfR{OI?~!sk@VD+BikrJ$ z-VoooNw}MZyG6KN!o5nkTZOw#xI2V9$`FFX z8Q}8z1KoIjF&#zZN{g+f6Co)F`B{}AY4nv~K73UZcos4XYgwpw^c5?Fa|doMM?RDt z?ma1TqpTn^sYw_KzYSJ8(dCyxz*Q$0u>gJL55$mDJxY2Rt>?nyiQKMSsZX_5IzHKI z7$@3TGauXTcmZT7v?WmiOcw~9V-*syvv1g6D6%yd(3T|gl7-er#MOXQlzU1+JnYJC zc)v>4m|}Pr0{@{40RHHr+850MpsSJ^tyX~eITff8Ke^8Ekktl;Eo4+g^;-0Ig=LcD zMnVw61uZ$E+9&v<$iQ0dWMQrGKKq%>vu<)1JgZr2#}maNLjS{Q30{wKMHvU=)2At{ zt61$Tv983enq;Zffh*lZwRhTH1xFw2;Uxx1v#dj4<2XN;hb`2%?PAv93n1I!aO#05ro3bkp6qs_`mx zf<5rb!guW^Nn0kdY6v_4_p+R_C~Z@&{aVdFL^;(VdXh3CPxrXE^q^yK>gXGgte{P;Rs_uhi! zYRAnI!VI(qkd}|qBEHcf`e>@8Ap&uh>25#wP=Q3=}`&Zc!oY`MQuxEJ5KSD%9VhXp3baF%htUV8>21lIL zo*mXBh-`Yr#BPVsTz@##yK%0ISi3aN8dj8s7P4uMbiomGVTrx3=j_xS4!4W02j)^b zu^zB<_U7iU38K*!C5klx=`h7wu`Y<&3}^Ne-W7AUg130Zx3Xgg?Rrz14!x|nf;Q_4 z2r;~b=r$XAkSpa}U2H%dNM3@TfbF*g7&W3ifUXRF@&dVV;esOJ77MpTxTV5fw3O~v z3V#*Oj0DrU)&Z>*rb1UC&UD({gIZSyBsnpi>ptwAz;vzy5D~T|%tuogHcgoERIP!! z{aa@+$5-G`kq0bsV2~r_Va{TCRuCt<8rXkrD)K@^q=PGQP7ts(Oh*AT5FsJGaKt%* z?~eiJgLpN4P}SdHvk*17L|)>Y)N@j>teifIX;ek&Na2gzydX)jH?mW@kPyu|6PtFT z^Z(faf~PK4O|LNb^fhW9F3bZ7(7YcnKplD3_I5v9XduouMktM~O>{u37VB6Y%i@3* z%VMlQI1oVvK%$X-#1P;(VZhNsX)aD?i%J%iLH1U$Wbx8Ua;yH^ju>9MuzPzbi`+A? z3NhR}J==SKF2kTWX|U5+<4FUx>FhnScP?puO3#MbA)8EZcg2`~VX+!K$t zwqmqbIgBv@xu^KJVt`QCD5S$$u7eo~+p`kv(478>#XiXm0sz0y%@=NP5&6r6zZ{00 zG|bD`!roE*y8s(?=-X z_KN3h6$*=Y^nCChLdo=s=MT*L4R~YBr4xC-0Z$tA4P;m{y}jBKslnsV{!|=^8c|6K zTYjGGA@$~wJXpW&xNQ($!(pIW9Dj4$wE|BTC{rjJ_4MZo8xF%+LW$MKhBV-T)4{zQ zbDp&5M9^Ja5zA&MLNFqN9n?NobkEJ!xrjR2*3Nw!ugO^4L!thdFrqNvv5hV`UUzH% z$f(@k%MSsBXYZi_U&_Wg9Z6&421Wt$avO*>lOrjdn;joW1*iZHo@IIUX{ z>FXcpl~V(rNo=+EbtnmO9vRFg%?(A=aX zY>r&820PG!Z1nPC&Qzy%38*lFKUz13hGA;r>rI)-BLnDdX%0fCl8KnmF9JnG)da&T zhm|Y(W>SNwd}vr5ffb?(nRqXtHu?_^=4WDe(rQ1tLDNBX$Ccn=BvI?K`&PO~58o`cCkJC~7Cn=G%n6s91YgQK-Y( zpd)YE!QG+A79ZH+4xStsz{uGP+p}IsfdpGBtCl0j_;3pC)RWS$NgdpH?6ADQ8eMT@ zlvU!p1&ES5I(#Ih5}&O$OvbGI<|8Ac{pNArPh`D2%mNyb$vAZncKKplRU6+ka$4M;0*4db75i_QopalqfkdkcbcW_lz27?875F1_zESx1^4zIfrK(T;1>8 z9*^_9HH`@i^NuEFAl;sR0I_EJ{rKK5F^c zalKnW<@@am0oi*bOFct}k6%sr`6Ky)!`ikwii5a1w-;@H4N02_Jmvyk>o+T?cOv?4 zSw4FPHh1~l(%Py3CPx8nsRAGzrL{c*mev@tLX&Vr@Op!bwXJO$O+8SGT0xiE4m6-x zV|#nRGYxYydo6vV=v7t6j} zEw4DgBwtv01@f!f^0P|@zel9m^fK5}xc`@fDTv@?+Dd%;Z14buoG%zDV z1gS<0F&jB+;tJSQn>k;_c?dF@yePuk31>&Sg7eEczmh8*Twlj?HgILLu?3JI$hXV5 z3YIF&*aZI;u3W`)cNjb2huCK~XV-G&I7yLy%I!S&9b7qP z97D`^8SlbT*WJtrF{7U4!Mzs;sW|WAFtFn60aV8Sz#jmAln3z#z#kQWKMMF%Re=7e ze}lhjt^)H%J&oW`F(Zc=AQ9#KGx#HzAHW33pChOrW&l>j_yYbwY{Qj*Vm#+dxPF-# zFCgrr_>Ut{vu**~*yuy3-o_gfk7w=>?C zGv4oHyx+}uzn}3=WV}-u?+-HGS2EtS8SkqZ?+-KHA7{M(mht{9KrR( za7tu2rOGM`BEA7;n_(pbRx{CgD4>LFA&=UZYqgE9Af;~}Ys<9xx)J9eVSm&iBs z!}2=TqX$<&9MkRV=G8q$w^85YuOJo0WT4ZY4H-AiCiAzdcmiWCHLvp`c0BvN(UN?AU&&PWs*|PlnP0O zyOwQf%JgG!0%TEX{FSly>} zt3H)-w7T#vO1xS+S{T9GU4{1+O+Lj@)C#POg@+D2-8spFD#ObGGV4k6Jla(*qUxdTHl5*2;FBV^Mkc zIaa6a!E375T6-tV%P3dGw)Rb=8|35}$QmcZZKvX4R(K_fm>93`(J8=06Hat8pN_Px z15;!|08x0|lz18Nw2|0Ro3fj=TTODSyIb9C_112NO&o^n08zg7xw7artS`lCNfIqs z&n}nxET~^mRp52WegPG5CZG~4D<&f&>mB1$lW}UP zcTM4Wm`>b@Ya2NF#@G}p!l(E&{d-ipdtmfuw~}hN(mh~w-Nx>P8qh(6M$peX#rT+8j8C90;!B9RHTzr$!o1|pcORpy5wFE zl1?V}nfuJ^lQ&r3g#SkKMl+Gz4{}_JLEY?S;iDG$uJE-a4_Mz9RS=+6^Dt@vbfnG) zano7)7N+RE*(-35$*(Z5sfCYEnMr)wpeDtS z+o#NK{P-zz`ufkvLuL4d=)*3PPgjpL z)^pZ6m(CgnvQuX7_=K5qhDp)Y|45-GLJxXF|Kt|t&u(GqC>ij*Kv4JGs!P3U1wQ4TD3n#Tt{z*Pd** zz>+GslIiQeTgKQ2`%2BH8^0$d95TwawQx={b{~d43{5op(d>?Ch%QiI5o2M!bRSvm zrq~`y%meqsi;o&+YO>jn`ABo;qqD&#)8`WyR! zQW031^#J9SdEh?h0kFza-1rcP&D15N18^7@&G06r2T|*>oo2?D+i%2VOXD|#Q&O!)c?UvovK5m zPP3#)y-lS4g-q&gV6YATNJa`@qSWb$bn0!^m*wD#bnhj35*-&U@l`qa84CC&0^9;} zu*?QONTJ`M&=C~m11$V7i;v3j5r&7pD+h0<+v6xBs@R&46GzM=V82~QGvHB1>Sxv@ z$~4lgWj%UDkd~Z3kTI%;Kg8m6hB7%vri+FAIZTY3jeuV)L+O! z6#-zJ4L{Dp@i3;nU&`02)V^S5#i~)o!|~%RbiNGV8KQxs6%A+omR05jR<*ySa2*2fXVy>Mkb)o<*yvv%({*wwNPrrWt+pnK5 zc_Z_`;f?d@{~d3f$Mg7DX=}9iHL*3aEO|1#1%t>VLLcyt@?=QDhx8|eUX>30vj}ao z{!6B1OHjo!@fn&q$uOUWiF52@n6dC}f1EM8e1gez`6N^5@-$OllVQJ4Yrjd_blv1E z{FYGne;uCzt=4ley3=}r6YuS_!T{KMLki#?zK z7XSk&v!{`8@xo;&%=?t_@Mpx9C|n{oSK((I2I#+MC$JsaY`q^3(PLultzww-X!rO5 zN=h@UA1S;asXU5bs27r@i|Nz5om)xOl(n6sy>4dy^kKt0eM9%1%!V#I+sD$`EDFjor^fO^O{!W=Vwx6)?D9|@X z1oa8Lb8s6H`ly}$v!3)@5d754>Hn>hN;(gEPULZ#D)Hk=qFj`+98;PmrnD8Lr1~!G zvZXt*$(FE$(g3NzvETYWonCwjEsog?o2|QWl17IUpF-n?*rych)5@fIMPkGpc~Y4y?&Wuo~;Si^-xC*5?(h#!Y5o3w0lxq9xB%2vd&dIRW~C z=Z?^G_c1lm7?MH~ws-M&Go{Y@f~Txs6#j0tvbHAvS4^#=9DxI|$$CMV#IQ)~1dK4& ziy|7Of@G2Eq#I!)#ldY$Sjz)q4Ybv423Ou`k0TNyN zkBp?&Cl3?WE<~XHL&Kmi;Rw4fmApkgd}O5W&9yx)u!G7ntjWAV1FVaLx(8`n5Q?5q zeQ@+S(o!{7D}ePY5S2Mv4l`L21v4oN9g~>XkgLE1^mLyC(ed8ZIK0-0uG*aP8#__FW66d!2t#*M~0KD zz{yidP1s~%zf~|14p@bgd*ryv>R>oCF}YF0=CugJkD?;OJxFKKcqAkNOR7XF#{n~| zuqtRc^^csf7KfyfSAtkI7}kUZ4ngo+_BA8oXA!q-i2XdH07#rhDf8; z)z-;U$aUhyE`EQev^~mU3uZ`?JBrEy4<6>+6(MI-b^Ct`9^t9UY}IDFCLQhOSlhg5 zH_y>Dnr4+5b=B?ix#Lq)G&0*z2;0O~pI3dk7+_q4Fp;Ie%z1$GT+qHdnxeSiJ6H2{ zp~qY%)R@aFq{Z@*%B5Ay$gQ4Tk9pn^CccN#*q=v3&(LrR%4!ENiKd1JlLPKIq0b3D z7rL7_QcAd{Q$k%z>2B@`ukRZjJ-oW1;kMguTb1k`>Q1c!4sb&(5@~5LL9>9uG`NLP zigElc$&lQmv>5A9Xi&hz>mv`W0kPa+4kpYyc>0|LkZ}WP=Mh0edL^^I03V$Va_ru_ zM6e9rLkkuxmOAGOnjwm@#w`Y_N{4O^u^A1b)S6HS^1=LPcs;Zji=gPS6I@*VW`C+z zps3Ju-pNs3z1meFdh?}?4&^`S06D7=zne?vC_4b{+G!Qk&;$H|(bS&7esFS9wyvt` z4pH0^XNtFf?H<|%-J-#Rp-A??l&!sOuQY`9Ggf}~la2-#sf-;=L1{J5Q!}BqW}jQG z{4LiA?I$Ql4fI2`$n9VG{eyTEP~KYxd;39JSKtEa^Wi%a4L^=6P7!d`Jz?yeMQ zGO#$@NC@IA1=Xq%XbQ3+HbT`&31Qhcy+&qyWvInXkB3&XBByN)d} z48MfUk_Ia+pGsC*9da2~W2}599JyjAmM6;MotlDSN@Gi~7{f9QOEg8rT8PZFJZP-p z{Wx<;5|kpekrXJ({E@=|6|sC$=Q&V9L8R=Lw_pvXTy3qNc%%^7S{o`iTk(W45my+5 zty?C;d02jpoVB{9LgyFYjK;cZaw;UBg5p1JUp+Z#>LGR-*kL0$E8N+wh9b|n=xzAX z{%PCF^qR@=!c&O9dom%{_h_bE{~}}pTDP8*N&I{YXEU;Y9HlrSxYEhQ;zAA zCl~N?Xg2Fu@Flo+q*!<z(8$J%ncq z*C3TUVV)eMpm>m(1yojuSMggrS_noV>n`~5OAXghShzM`$WDdpPMxBZ?y>L5l}}T- zDb`6k*%Hy~PvIh;LXNUEB9g!>(mPwjxB>KB4a?a3SP-)AEU7d}qu)b0LLA-rW%=v! zf`wWU%+z7wjsuetN%2diWYxP!(gKo#m9=^^8sTx0iJb(ppHCt&sliUc^~)b))@e3D z<{i(Hlmb#w@#DUeXM)fjfgm*9b0GY5yUxdPv~hj`-oyF?M2G3l^Ry5EqKm6qKmb`G z+h^#sK*IuDDaUNft)+>jUVFg4B?z-o*=hk^=Ur9I#7*EXFOExF=Q5t9*B3LTiP_Uu z%iWkB^=Dv3z`6npjp5YlnUYv-Qzq;s`Vo5vZ(BReLy8zOFF6%K95N57%tu)SMaw0Z zMev$zxmc6DmG(+ghs;w-X#LG^zf5WFBGHZJCn2=hd?X|~(EKDcPbCuFXg*3LdeXMH z-)i=kpC(_T5nvuuLv77lYN8S6F}3+Dn`q8?E1PK3u1jsxU4rI|8g#yrLXFK&Qlcs6 zE2()am1xBIDb@V6piLP>E$Fd})9uhpE~k??YH#bM_B1=G#tl?bpZjC}QbiHhz5OB* z2@@Haxc)?V0Z=g^k{3W%?Y_4z;!Uiih+X5%V`O2_!!_~!PDi>tQ}Pl!8a2> ze0wGk4DjHGR~wt6p1|wX#@0pzw#C|~u`upcn__K^;Dv8(n|5cP3Yx5T*lsm7O}leF z&Tyj5YI9>W;-x0stKxv92_{|5E#BaLY6~EFh~g~f4ZhyyI|Jugn-gpghH7gx(g>%$ z*xJ97HKAnvPPf#&5~(ZJBZq& zZEny$wY|Bel_=F(^0GS|S)et=E+C^raAQ-NSbau1J*BOsNdvEXm9Me*C;%ds&}kKj zy@1LmFXwCpS77Y5hU~hOPOfa=$|e|cab+77n2W+=u9pp9~jY@Tt+_F&fxTle2dAqgnZycXG$e}3YgHD z8iG%)!T!G%e|7k)N2qog#RLO7lUI^&75N(I87NSxU~G|M;;6n3@EUF4sUvr_a4#3` zTH#(P+z#Qc6YhH9ZWL}@xSNH$MYvZ9cdKx>3wMWbcMA6!;qDgh9^qam+`YoRUbr_1 zHzC~p!o5kjN#XVgw^z8PaQlRNvv6+_?jhk03iq&ZZx!x{aE}Q07|`}Kscwb79@Qf0 z>qu71*ORQ4uaiIz?pu$8MAawg!HspWMAD7*Fht`1^+XTu7xdr(K@T1f^x!#y9y~|T zgXao*a8SmB9z0LbgXal)@ci{e51zk{=)r@69vs?jpa(Ay^xz;W2R%5j5c=h;yTQyu2L5xshy@Cl(WxcZC%|_zMf^ zjL$wSO3ULM2n2CNq)-=HF93XP`R!`=?p)ADactzKzQ%c;L@iz@1@3?gXhOfhD^$@& zNe?CqwZn#DXmFD9tVwOG24M$YD42RvoxoWb>|HNF8yu!$e@2R|0yDtOP#N1tP9uFo zK>zS+d}JXsIO|?t?-84!(Jx9Yv^TQUAhg|Ewr#xT0tFV5tqhOqX0jJT639o=0&nMS z8Yp{}0OmNw*>PlarbvCjuG5l(2Vr}2j2*Y%V1Qs9FrxR#S8vhnx5wel1?j_pcoY(@ zRPX8wYluV=7oD}|(&_>A0}A|*89QmkwV*IPy;(rr1j7pwW=YAcPAm=bMk4nX28gUuj-FPXq)%K$OE27p0zq@_ZD zMVvE06#=;}muq=k&xfWZmkYTJY}o~5vaFVHA5dk>xm@7@%j%_EhVZ3|%ORS`WEdH{ z*s=hYg|4RD#En*?6;`@!+}F+`;Y=DEYNe ze^~(YOW7(KPbi^Sm%;#}T8uGCR$%^1Dl?TfT2koeaSoM~D%&=a4%lHIxeO5%Majt{ z0~v^SY!i)zY!S&oa&5Uto?|Bn^%rT81*OPwx?@!c34v_-&A=FJ)vSLVbt^|bKJkpB^lPYt}{*E6f!$U~De#t3-)xt;AQTVKMf*sdnTbc9c?C{moM9s74!wyo+2UpCwU?UrbdO+YiI7(%5xBGK0 z&#)t5cSPxw)+MKbcUn8w*Kx}+LM6C_r;)d#UXVHY$Zpb$G0i#MBk!Ubv!2M!z@IxsqP0JuT|Pk(3-kT(N|g+jobK7h5c3w`&q=kioGXjDQpuHSqX5*TG!8IW{ll7n4D=|F z+CxN&Ujh7L*a*oicTB^6DSr$`IFLOezELC>mzFFNZkcc^gu6tzONCn{+-1TI33oZB z2~9G5+B#aYYwKyrj)i-A$&TfFddZIEJ1yA>JAhMx1RD$UWtO}IH|#8V%MyNC@~T2U vdgX$LP(+&3GHau36*+=Sl`qa|#b&u}KRR2&juzt#d|6Tl%JhE$aI&Xx7{a|1 literal 0 HcmV?d00001 diff --git a/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin.js b/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin.js index eb40a6a39c..73947355f0 100644 --- a/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?' ':" ")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(tinymce.isIE&&f.keyCode==9){d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");tinymce.dom.Event.cancel(f)}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?' ':" ")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(tinymce.isIE&&f.keyCode==9){d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");tinymce.dom.Event.cancel(f)}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin_src.js index ca83ee26e5..b3ea82ee03 100644 --- a/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/nonbreaking/editor_plugin_src.js @@ -17,7 +17,7 @@ // Register commands ed.addCommand('mceNonBreaking', function() { - ed.execCommand('mceInsertContent', false, (ed.plugins.visualchars && ed.plugins.visualchars.state) ? ' ' : ' '); + ed.execCommand('mceInsertContent', false, (ed.plugins.visualchars && ed.plugins.visualchars.state) ? ' ' : ' '); }); // Register buttons diff --git a/plugins/TinyMCE/js/plugins/noneditable/editor_plugin.js b/plugins/TinyMCE/js/plugins/noneditable/editor_plugin.js index 9945cd8580..cc7de78466 100644 --- a/plugins/TinyMCE/js/plugins/noneditable/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/noneditable/editor_plugin.js @@ -1 +1 @@ -(function(){var a=tinymce.dom.Event;tinymce.create("tinymce.plugins.NonEditablePlugin",{init:function(d,e){var f=this,c,b;f.editor=d;c=d.getParam("noneditable_editable_class","mceEditable");b=d.getParam("noneditable_noneditable_class","mceNonEditable");d.onNodeChange.addToTop(function(h,g,k){var j,i;j=h.dom.getParent(h.selection.getStart(),function(l){return h.dom.hasClass(l,b)});i=h.dom.getParent(h.selection.getEnd(),function(l){return h.dom.hasClass(l,b)});if(j||i){f._setDisabled(1);return false}else{f._setDisabled(0)}})},getInfo:function(){return{longname:"Non editable elements",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/noneditable",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_block:function(c,d){var b=d.keyCode;if((b>32&&b<41)||(b>111&&b<124)){return}return a.cancel(d)},_setDisabled:function(d){var c=this,b=c.editor;tinymce.each(b.controlManager.controls,function(e){e.setDisabled(d)});if(d!==c.disabled){if(d){b.onKeyDown.addToTop(c._block);b.onKeyPress.addToTop(c._block);b.onKeyUp.addToTop(c._block);b.onPaste.addToTop(c._block)}else{b.onKeyDown.remove(c._block);b.onKeyPress.remove(c._block);b.onKeyUp.remove(c._block);b.onPaste.remove(c._block)}c.disabled=d}}});tinymce.PluginManager.add("noneditable",tinymce.plugins.NonEditablePlugin)})(); \ No newline at end of file +(function(){var a=tinymce.dom.Event;tinymce.create("tinymce.plugins.NonEditablePlugin",{init:function(d,e){var f=this,c,b;f.editor=d;c=d.getParam("noneditable_editable_class","mceEditable");b=d.getParam("noneditable_noneditable_class","mceNonEditable");d.onNodeChange.addToTop(function(h,g,k){var j,i;j=h.dom.getParent(h.selection.getStart(),function(l){return h.dom.hasClass(l,b)});i=h.dom.getParent(h.selection.getEnd(),function(l){return h.dom.hasClass(l,b)});if(j||i){f._setDisabled(1);return false}else{f._setDisabled(0)}})},getInfo:function(){return{longname:"Non editable elements",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/noneditable",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_block:function(c,d){var b=d.keyCode;if((b>32&&b<41)||(b>111&&b<124)){return}return a.cancel(d)},_setDisabled:function(d){var c=this,b=c.editor;tinymce.each(b.controlManager.controls,function(e){e.setDisabled(d)});if(d!==c.disabled){if(d){b.onKeyDown.addToTop(c._block);b.onKeyPress.addToTop(c._block);b.onKeyUp.addToTop(c._block);b.onPaste.addToTop(c._block);b.onContextMenu.addToTop(c._block)}else{b.onKeyDown.remove(c._block);b.onKeyPress.remove(c._block);b.onKeyUp.remove(c._block);b.onPaste.remove(c._block);b.onContextMenu.remove(c._block)}c.disabled=d}}});tinymce.PluginManager.add("noneditable",tinymce.plugins.NonEditablePlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/noneditable/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/noneditable/editor_plugin_src.js index 656c971b8c..b6cf15430b 100644 --- a/plugins/TinyMCE/js/plugins/noneditable/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/noneditable/editor_plugin_src.js @@ -73,11 +73,13 @@ ed.onKeyPress.addToTop(t._block); ed.onKeyUp.addToTop(t._block); ed.onPaste.addToTop(t._block); + ed.onContextMenu.addToTop(t._block); } else { ed.onKeyDown.remove(t._block); ed.onKeyPress.remove(t._block); ed.onKeyUp.remove(t._block); ed.onPaste.remove(t._block); + ed.onContextMenu.remove(t._block); } t.disabled = s; diff --git a/plugins/TinyMCE/js/plugins/pagebreak/css/content.css b/plugins/TinyMCE/js/plugins/pagebreak/css/content.css deleted file mode 100644 index c949d58cc4..0000000000 --- a/plugins/TinyMCE/js/plugins/pagebreak/css/content.css +++ /dev/null @@ -1 +0,0 @@ -.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} diff --git a/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin.js b/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin.js index a212f69633..35085e8adc 100644 --- a/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.PageBreakPlugin",{init:function(b,d){var f='',a="mcePageBreak",c=b.getParam("pagebreak_separator",""),e;e=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(g){return"\\"+g}),"g");b.addCommand("mcePageBreak",function(){b.execCommand("mceInsertContent",0,f)});b.addButton("pagebreak",{title:"pagebreak.desc",cmd:a});b.onInit.add(function(){if(b.settings.content_css!==false){b.dom.loadCSS(d+"/css/content.css")}if(b.theme.onResolveName){b.theme.onResolveName.add(function(g,h){if(h.node.nodeName=="IMG"&&b.dom.hasClass(h.node,a)){h.name="pagebreak"}})}});b.onClick.add(function(g,h){h=h.target;if(h.nodeName==="IMG"&&g.dom.hasClass(h,a)){g.selection.select(h)}});b.onNodeChange.add(function(h,g,i){g.setActive("pagebreak",i.nodeName==="IMG"&&h.dom.hasClass(i,a))});b.onBeforeSetContent.add(function(g,h){h.content=h.content.replace(e,f)});b.onPostProcess.add(function(g,h){if(h.get){h.content=h.content.replace(/]+>/g,function(i){if(i.indexOf('class="mcePageBreak')!==-1){i=c}return i})}})},getInfo:function(){return{longname:"PageBreak",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("pagebreak",tinymce.plugins.PageBreakPlugin)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.PageBreakPlugin",{init:function(b,d){var f='',a="mcePageBreak",c=b.getParam("pagebreak_separator",""),e;e=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(g){return"\\"+g}),"g");b.addCommand("mcePageBreak",function(){b.execCommand("mceInsertContent",0,f)});b.addButton("pagebreak",{title:"pagebreak.desc",cmd:a});b.onInit.add(function(){if(b.theme.onResolveName){b.theme.onResolveName.add(function(g,h){if(h.node.nodeName=="IMG"&&b.dom.hasClass(h.node,a)){h.name="pagebreak"}})}});b.onClick.add(function(g,h){h=h.target;if(h.nodeName==="IMG"&&g.dom.hasClass(h,a)){g.selection.select(h)}});b.onNodeChange.add(function(h,g,i){g.setActive("pagebreak",i.nodeName==="IMG"&&h.dom.hasClass(i,a))});b.onBeforeSetContent.add(function(g,h){h.content=h.content.replace(e,f)});b.onPostProcess.add(function(g,h){if(h.get){h.content=h.content.replace(/]+>/g,function(i){if(i.indexOf('class="mcePageBreak')!==-1){i=c}return i})}})},getInfo:function(){return{longname:"PageBreak",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("pagebreak",tinymce.plugins.PageBreakPlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin_src.js index 4e1eb0a7aa..a094c19162 100644 --- a/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/pagebreak/editor_plugin_src.js @@ -11,7 +11,7 @@ (function() { tinymce.create('tinymce.plugins.PageBreakPlugin', { init : function(ed, url) { - var pb = '', cls = 'mcePageBreak', sep = ed.getParam('pagebreak_separator', ''), pbRE; + var pb = '', cls = 'mcePageBreak', sep = ed.getParam('pagebreak_separator', ''), pbRE; pbRE = new RegExp(sep.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g, function(a) {return '\\' + a;}), 'g'); @@ -24,9 +24,6 @@ ed.addButton('pagebreak', {title : 'pagebreak.desc', cmd : cls}); ed.onInit.add(function() { - if (ed.settings.content_css !== false) - ed.dom.loadCSS(url + "/css/content.css"); - if (ed.theme.onResolveName) { ed.theme.onResolveName.add(function(th, o) { if (o.node.nodeName == 'IMG' && ed.dom.hasClass(o.node, cls)) diff --git a/plugins/TinyMCE/js/plugins/pagebreak/img/trans.gif b/plugins/TinyMCE/js/plugins/pagebreak/img/trans.gif deleted file mode 100644 index 388486517fa8da13ebd150e8f65d5096c3e10c3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43 ncmZ?wbhEHbWMp7un7{x9ia%KxMSyG_5FaGNz{KRj$Y2csb)f_x diff --git a/plugins/TinyMCE/js/plugins/paste/editor_plugin.js b/plugins/TinyMCE/js/plugins/paste/editor_plugin.js index 3785ab2d09..22149cc6a3 100644 --- a/plugins/TinyMCE/js/plugins/paste/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/paste/editor_plugin.js @@ -1 +1 @@ -(function(){var c=tinymce.each,d=null,a={paste_auto_cleanup_on_paste:true,paste_block_drop:false,paste_retain_style_properties:"none",paste_strip_class_attributes:"mso",paste_remove_spans:false,paste_remove_styles:false,paste_remove_styles_if_webkit:true,paste_convert_middot_lists:true,paste_convert_headers_to_strong:false,paste_dialog_width:"450",paste_dialog_height:"400",paste_text_use_dialog:false,paste_text_sticky:false,paste_text_notifyalways:false,paste_text_linebreaktype:"p",paste_text_replacements:[[/\u2026/g,"..."],[/[\x93\x94\u201c\u201d]/g,'"'],[/[\x60\x91\x92\u2018\u2019]/g,"'"]]};function b(e,f){return e.getParam(f,a[f])}tinymce.create("tinymce.plugins.PastePlugin",{init:function(e,f){var g=this;g.editor=e;g.url=f;g.onPreProcess=new tinymce.util.Dispatcher(g);g.onPostProcess=new tinymce.util.Dispatcher(g);g.onPreProcess.add(g._preProcess);g.onPostProcess.add(g._postProcess);g.onPreProcess.add(function(j,k){e.execCallback("paste_preprocess",j,k)});g.onPostProcess.add(function(j,k){e.execCallback("paste_postprocess",j,k)});e.pasteAsPlainText=false;function i(l,j){var k=e.dom;g.onPreProcess.dispatch(g,l);l.node=k.create("div",0,l.content);g.onPostProcess.dispatch(g,l);l.content=e.serializer.serialize(l.node,{getInner:1});if((!j)&&(e.pasteAsPlainText)){g._insertPlainText(e,k,l.content);if(!b(e,"paste_text_sticky")){e.pasteAsPlainText=false;e.controlManager.setActive("pastetext",false)}}else{if(/<(p|h[1-6]|ul|ol)/.test(l.content)){g._insertBlockContent(e,k,l.content)}else{g._insert(l.content)}}}e.addCommand("mceInsertClipboardContent",function(j,k){i(k,true)});if(!b(e,"paste_text_use_dialog")){e.addCommand("mcePasteText",function(k,j){var l=tinymce.util.Cookie;e.pasteAsPlainText=!e.pasteAsPlainText;e.controlManager.setActive("pastetext",e.pasteAsPlainText);if((e.pasteAsPlainText)&&(!l.get("tinymcePasteText"))){if(b(e,"paste_text_sticky")){e.windowManager.alert(e.translate("paste.plaintext_mode_sticky"))}else{e.windowManager.alert(e.translate("paste.plaintext_mode_sticky"))}if(!b(e,"paste_text_notifyalways")){l.set("tinymcePasteText","1",new Date(new Date().getFullYear()+1,12,31))}}})}e.addButton("pastetext",{title:"paste.paste_text_desc",cmd:"mcePasteText"});e.addButton("selectall",{title:"paste.selectall_desc",cmd:"selectall"});function h(s){var m,q,k,l=e.selection,p=e.dom,r=e.getBody(),j;if(e.pasteAsPlainText&&(s.clipboardData||p.doc.dataTransfer)){s.preventDefault();i({content:(s.clipboardData||p.doc.dataTransfer).getData("Text")},true);return}if(p.get("_mcePaste")){return}m=p.add(r,"div",{id:"_mcePaste","class":"mcePaste"},'\uFEFF
');if(r!=e.getDoc().body){j=p.getPos(e.selection.getStart(),r).y}else{j=r.scrollTop}p.setStyles(m,{position:"absolute",left:-10000,top:j,width:1,height:1,overflow:"hidden"});if(tinymce.isIE){k=p.doc.body.createTextRange();k.moveToElementText(m);k.execCommand("Paste");p.remove(m);if(m.innerHTML==="\uFEFF"){e.execCommand("mcePasteWord");s.preventDefault();return}i({content:m.innerHTML});return tinymce.dom.Event.cancel(s)}else{function o(n){n.preventDefault()}p.bind(e.getDoc(),"mousedown",o);p.bind(e.getDoc(),"keydown",o);q=e.selection.getRng();m=m.firstChild;k=e.getDoc().createRange();k.setStart(m,0);k.setEnd(m,1);l.setRng(k);window.setTimeout(function(){var t="",n=p.select("div.mcePaste");c(n,function(v){var u=v.firstChild;if(u&&u.nodeName=="DIV"&&u.style.marginTop&&u.style.backgroundColor){p.remove(u,1)}c(p.select("div.mcePaste",v),function(w){p.remove(w,1)});c(p.select("span.Apple-style-span",v),function(w){p.remove(w,1)});c(p.select("br[_mce_bogus]",v),function(w){p.remove(w)});t+=v.innerHTML});c(n,function(u){p.remove(u)});if(q){l.setRng(q)}i({content:t});p.unbind(e.getDoc(),"mousedown",o);p.unbind(e.getDoc(),"keydown",o)},0)}}if(b(e,"paste_auto_cleanup_on_paste")){if(tinymce.isOpera||/Firefox\/2/.test(navigator.userAgent)){e.onKeyDown.add(function(j,k){if(((tinymce.isMac?k.metaKey:k.ctrlKey)&&k.keyCode==86)||(k.shiftKey&&k.keyCode==45)){h(k)}})}else{e.onPaste.addToTop(function(j,k){return h(k)})}}if(b(e,"paste_block_drop")){e.onInit.add(function(){e.dom.bind(e.getBody(),["dragend","dragover","draggesture","dragdrop","drop","drag"],function(j){j.preventDefault();j.stopPropagation();return false})})}g._legacySupport()},getInfo:function(){return{longname:"Paste text/word",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_preProcess:function(i,f){var l=this.editor,k=f.content,q=tinymce.grep,p=tinymce.explode,g=tinymce.trim,m,j;function e(h){c(h,function(o){if(o.constructor==RegExp){k=k.replace(o,"")}else{k=k.replace(o[0],o[1])}})}if(/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(k)||f.wordContent){f.wordContent=true;e([/^\s*( )+/gi,/( |]*>)+\s*$/gi]);if(b(l,"paste_convert_headers_to_strong")){k=k.replace(/

]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi,"

$1

")}if(b(l,"paste_convert_middot_lists")){e([[//gi,"$&__MCE_ITEM__"],[/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi,"$1__MCE_ITEM__"]])}e([//gi,/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi,[/<(\/?)s>/gi,"<$1strike>"],[/ /gi,"\u00a0"]]);do{m=k.length;k=k.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi,"$1")}while(m!=k.length);if(b(l,"paste_retain_style_properties").replace(/^none$/i,"").length==0){k=k.replace(/<\/?span[^>]*>/gi,"")}else{e([[/([\s\u00a0]*)<\/span>/gi,function(o,h){return(h.length>0)?h.replace(/./," ").slice(Math.floor(h.length/2)).split("").join("\u00a0"):""}],[/(<[a-z][^>]*)\sstyle="([^"]*)"/gi,function(u,h,t){var v=[],o=0,r=p(g(t).replace(/"/gi,"'"),";");c(r,function(s){var w,y,z=p(s,":");function x(A){return A+((A!=="0")&&(/\d$/.test(A)))?"px":""}if(z.length==2){w=z[0].toLowerCase();y=z[1].toLowerCase();switch(w){case"mso-padding-alt":case"mso-padding-top-alt":case"mso-padding-right-alt":case"mso-padding-bottom-alt":case"mso-padding-left-alt":case"mso-margin-alt":case"mso-margin-top-alt":case"mso-margin-right-alt":case"mso-margin-bottom-alt":case"mso-margin-left-alt":case"mso-table-layout-alt":case"mso-height":case"mso-width":case"mso-vertical-align-alt":v[o++]=w.replace(/^mso-|-alt$/g,"")+":"+x(y);return;case"horiz-align":v[o++]="text-align:"+y;return;case"vert-align":v[o++]="vertical-align:"+y;return;case"font-color":case"mso-foreground":v[o++]="color:"+y;return;case"mso-background":case"mso-highlight":v[o++]="background:"+y;return;case"mso-default-height":v[o++]="min-height:"+x(y);return;case"mso-default-width":v[o++]="min-width:"+x(y);return;case"mso-padding-between-alt":v[o++]="border-collapse:separate;border-spacing:"+x(y);return;case"text-line-through":if((y=="single")||(y=="double")){v[o++]="text-decoration:line-through"}return;case"mso-zero-height":if(y=="yes"){v[o++]="display:none"}return}if(/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(w)){return}v[o++]=w+":"+z[1]}});if(o>0){return h+' style="'+v.join(";")+'"'}else{return h}}]])}}if(b(l,"paste_convert_headers_to_strong")){e([[/]*>/gi,"

"],[/<\/h[1-6][^>]*>/gi,"

"]])}j=b(l,"paste_strip_class_attributes");if(j!=="none"){function n(r,o){if(j==="all"){return""}var h=q(p(o.replace(/^(["'])(.*)\1$/,"$2")," "),function(s){return(/^(?!mso)/i.test(s))});return h.length?' class="'+h.join(" ")+'"':""}k=k.replace(/ class="([^"]+)"/gi,n);k=k.replace(/ class=(\w+)/gi,n)}if(b(l,"paste_remove_spans")){k=k.replace(/<\/?span[^>]*>/gi,"")}f.content=k},_postProcess:function(h,j){var g=this,f=g.editor,i=f.dom,e;if(j.wordContent){c(i.select("a",j.node),function(k){if(!k.href||k.href.indexOf("#_Toc")!=-1){i.remove(k,1)}});if(b(f,"paste_convert_middot_lists")){g._convertLists(h,j)}e=b(f,"paste_retain_style_properties");if((tinymce.is(e,"string"))&&(e!=="all")&&(e!=="*")){e=tinymce.explode(e.replace(/^none$/i,""));c(i.select("*",j.node),function(n){var o={},l=0,m,p,k;if(e){for(m=0;m0){i.setStyles(n,o)}else{if(n.nodeName=="SPAN"&&!n.className){i.remove(n,true)}}})}}if(b(f,"paste_remove_styles")||(b(f,"paste_remove_styles_if_webkit")&&tinymce.isWebKit)){c(i.select("*[style]",j.node),function(k){k.removeAttribute("style");k.removeAttribute("_mce_style")})}else{if(tinymce.isWebKit){c(i.select("*",j.node),function(k){k.removeAttribute("_mce_style")})}}},_convertLists:function(h,f){var j=h.editor.dom,i,m,e=-1,g,n=[],l,k;c(j.select("p",f.node),function(u){var r,v="",t,s,o,q;for(r=u.firstChild;r&&r.nodeType==3;r=r.nextSibling){v+=r.nodeValue}v=u.innerHTML.replace(/<\/?\w+[^>]*>/gi,"").replace(/ /g,"\u00a0");if(/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o]\s*\u00a0*/.test(v)){t="ul"}if(/^__MCE_ITEM__\s*\w+\.\s*\u00a0{2,}/.test(v)){t="ol"}if(t){g=parseFloat(u.style.marginLeft||0);if(g>e){n.push(g)}if(!i||t!=l){i=j.create(t);j.insertAfter(i,u)}else{if(g>e){i=m.appendChild(j.create(t))}else{if(g]*>/gi,"");if(t=="ul"&&/^[\u2022\u00b7\u00a7\u00d8o]/.test(p)){j.remove(w)}else{if(/^[\s\S]*\w+\.( |\u00a0)*\s*/.test(p)){j.remove(w)}}});s=u.innerHTML;if(t=="ul"){s=u.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^[\u2022\u00b7\u00a7\u00d8o]\s*( |\u00a0)+\s*/,"")}else{s=u.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^\s*\w+\.( |\u00a0)+\s*/,"")}m=i.appendChild(j.create("li",0,s));j.remove(u);e=g;l=t}else{i=e=0}});k=f.node.innerHTML;if(k.indexOf("__MCE_ITEM__")!=-1){f.node.innerHTML=k.replace(/__MCE_ITEM__/g,"")}},_insertBlockContent:function(l,h,m){var f,j,g=l.selection,q,n,e,o,i,k="mce_marker";function p(t){var s;if(tinymce.isIE){s=l.getDoc().body.createTextRange();s.moveToElementText(t);s.collapse(false);s.select()}else{g.select(t,1);g.collapse(false)}}this._insert('',1);j=h.get(k);f=h.getParent(j,"p,h1,h2,h3,h4,h5,h6,ul,ol,th,td");if(f&&!/TD|TH/.test(f.nodeName)){j=h.split(f,j);c(h.create("div",0,m).childNodes,function(r){q=j.parentNode.insertBefore(r.cloneNode(true),j)});p(q)}else{h.setOuterHTML(j,m);g.select(l.getBody(),1);g.collapse(0)}while(n=h.get(k)){h.remove(n)}n=g.getStart();e=h.getViewPort(l.getWin());o=l.dom.getPos(n).y;i=n.clientHeight;if(oe.y+e.h){l.getDoc().body.scrollTop=o0)){if(!d){d=("34,quot,38,amp,39,apos,60,lt,62,gt,"+j.serializer.settings.entities).split(",")}if(/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(v)){q([/[\n\r]+/g])}else{q([/\r+/g])}q([[/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi,"\n\n"],[/]*>|<\/tr>/gi,"\n"],[/<\/t[dh]>\s*]*>/gi,"\t"],/<[a-z!\/?][^>]*>/gi,[/ /gi," "],[/&(#\d+|[a-z0-9]{1,10});/gi,function(i,h){if(h.charAt(0)==="#"){return String.fromCharCode(h.slice(1))}else{return((i=y(d,h))>0)?String.fromCharCode(d[i-1]):" "}}],[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi,"$1"],[/\n{3,}/g,"\n\n"],/^\s+|\s+$/g]);v=x.encode(v);if(!s.isCollapsed()){z.execCommand("Delete",false,null)}if(m(o,"array")||(m(o,"array"))){q(o)}else{if(m(o,"string")){q(new RegExp(o,"gi"))}}if(g=="none"){q([[/\n+/g," "]])}else{if(g=="br"){q([[/\n/g,"
"]])}else{q([/^\s+|\s+$/g,[/\n\n/g,"

"],[/\n/g,"
"]])}}if((l=v.indexOf("

"))!=-1){k=v.lastIndexOf("

");r=s.getNode();e=[];do{if(r.nodeType==1){if(r.nodeName=="TD"||r.nodeName=="BODY"){break}e[e.length]=r}}while(r=r.parentNode);if(e.length>0){p=v.substring(0,l);f="";for(t=0,u=e.length;t";f+="<"+e[e.length-t-1].nodeName.toLowerCase()+">"}if(l==k){v=p+f+v.substring(l+7)}else{v=p+v.substring(l+4,k+4)+f+v.substring(k+7)}}}j.execCommand("mceInsertRawHTML",false,v+' ');window.setTimeout(function(){var h=x.get("_plain_text_marker"),B,i,A,w;s.select(h,false);z.execCommand("Delete",false,null);h=null;B=s.getStart();i=x.getViewPort(n);A=x.getPos(B).y;w=B.clientHeight;if((Ai.y+i.h)){z.body.scrollTop=A")});return}}if(o.get("_mcePaste")){return}l=o.add(q,"div",{id:"_mcePaste","class":"mcePaste","data-mce-bogus":"1"},"\uFEFF\uFEFF");if(q!=d.getDoc().body){i=o.getPos(d.selection.getStart(),q).y}else{i=q.scrollTop+o.getViewPort(d.getWin()).y}o.setStyles(l,{position:"absolute",left:tinymce.isGecko?-40:0,top:i-25,width:1,height:1,overflow:"hidden"});if(tinymce.isIE){t=k.getRng();j=o.doc.body.createTextRange();j.moveToElementText(l);j.execCommand("Paste");o.remove(l);if(l.innerHTML==="\uFEFF\uFEFF"){d.execCommand("mcePasteWord");s.preventDefault();return}k.setRng(t);k.setContent("");setTimeout(function(){h({content:l.innerHTML})},0);return tinymce.dom.Event.cancel(s)}else{function m(n){n.preventDefault()}o.bind(d.getDoc(),"mousedown",m);o.bind(d.getDoc(),"keydown",m);p=d.selection.getRng();l=l.firstChild;j=d.getDoc().createRange();j.setStart(l,0);j.setEnd(l,2);k.setRng(j);window.setTimeout(function(){var u="",n;if(!o.select("div.mcePaste > div.mcePaste").length){n=o.select("div.mcePaste");c(n,function(w){var v=w.firstChild;if(v&&v.nodeName=="DIV"&&v.style.marginTop&&v.style.backgroundColor){o.remove(v,1)}c(o.select("span.Apple-style-span",w),function(x){o.remove(x,1)});c(o.select("br[data-mce-bogus]",w),function(x){o.remove(x)});if(w.parentNode.className!="mcePaste"){u+=w.innerHTML}})}else{u="

"+o.encode(r).replace(/\r?\n/g,"
")+"
"}c(o.select("div.mcePaste"),function(v){o.remove(v)});if(p){k.setRng(p)}h({content:u});o.unbind(d.getDoc(),"mousedown",m);o.unbind(d.getDoc(),"keydown",m)},0)}}if(b(d,"paste_auto_cleanup_on_paste")){if(tinymce.isOpera||/Firefox\/2/.test(navigator.userAgent)){d.onKeyDown.addToTop(function(i,j){if(((tinymce.isMac?j.metaKey:j.ctrlKey)&&j.keyCode==86)||(j.shiftKey&&j.keyCode==45)){g(j)}})}else{d.onPaste.addToTop(function(i,j){return g(j)})}}d.onInit.add(function(){d.controlManager.setActive("pastetext",d.pasteAsPlainText);if(b(d,"paste_block_drop")){d.dom.bind(d.getBody(),["dragend","dragover","draggesture","dragdrop","drop","drag"],function(i){i.preventDefault();i.stopPropagation();return false})}});f._legacySupport()},getInfo:function(){return{longname:"Paste text/word",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/paste",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_preProcess:function(g,e){var k=this.editor,j=e.content,p=tinymce.grep,n=tinymce.explode,f=tinymce.trim,l,i;function d(h){c(h,function(o){if(o.constructor==RegExp){j=j.replace(o,"")}else{j=j.replace(o[0],o[1])}})}if(k.settings.paste_enable_default_filters==false){return}if(tinymce.isIE&&document.documentMode>=9){d([[/(?:
 [\s\r\n]+|
)*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
 [\s\r\n]+|
)*/g,"$1"]]);d([[/

/g,"

"],[/
/g," "],[/

/g,"
"],])}if(/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(j)||e.wordContent){e.wordContent=true;d([/^\s*( )+/gi,/( |]*>)+\s*$/gi]);if(b(k,"paste_convert_headers_to_strong")){j=j.replace(/

]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi,"

$1

")}if(b(k,"paste_convert_middot_lists")){d([[//gi,"$&__MCE_ITEM__"],[/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi,"$1__MCE_ITEM__"],[/(]+(?:MsoListParagraph)[^>]+>)/gi,"$1__MCE_ITEM__"]])}d([//gi,/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|img|meta|link|style|\w:\w+)(?=[\s\/>]))[^>]*>/gi,[/<(\/?)s>/gi,"<$1strike>"],[/ /gi,"\u00a0"]]);do{l=j.length;j=j.replace(/(<[a-z][^>]*\s)(?:id|name|language|type|on\w+|\w+:\w+)=(?:"[^"]*"|\w+)\s?/gi,"$1")}while(l!=j.length);if(b(k,"paste_retain_style_properties").replace(/^none$/i,"").length==0){j=j.replace(/<\/?span[^>]*>/gi,"")}else{d([[/([\s\u00a0]*)<\/span>/gi,function(o,h){return(h.length>0)?h.replace(/./," ").slice(Math.floor(h.length/2)).split("").join("\u00a0"):""}],[/(<[a-z][^>]*)\sstyle="([^"]*)"/gi,function(t,h,r){var u=[],o=0,q=n(f(r).replace(/"/gi,"'"),";");c(q,function(s){var w,y,z=n(s,":");function x(A){return A+((A!=="0")&&(/\d$/.test(A)))?"px":""}if(z.length==2){w=z[0].toLowerCase();y=z[1].toLowerCase();switch(w){case"mso-padding-alt":case"mso-padding-top-alt":case"mso-padding-right-alt":case"mso-padding-bottom-alt":case"mso-padding-left-alt":case"mso-margin-alt":case"mso-margin-top-alt":case"mso-margin-right-alt":case"mso-margin-bottom-alt":case"mso-margin-left-alt":case"mso-table-layout-alt":case"mso-height":case"mso-width":case"mso-vertical-align-alt":u[o++]=w.replace(/^mso-|-alt$/g,"")+":"+x(y);return;case"horiz-align":u[o++]="text-align:"+y;return;case"vert-align":u[o++]="vertical-align:"+y;return;case"font-color":case"mso-foreground":u[o++]="color:"+y;return;case"mso-background":case"mso-highlight":u[o++]="background:"+y;return;case"mso-default-height":u[o++]="min-height:"+x(y);return;case"mso-default-width":u[o++]="min-width:"+x(y);return;case"mso-padding-between-alt":u[o++]="border-collapse:separate;border-spacing:"+x(y);return;case"text-line-through":if((y=="single")||(y=="double")){u[o++]="text-decoration:line-through"}return;case"mso-zero-height":if(y=="yes"){u[o++]="display:none"}return}if(/^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?!align|decor|indent|trans)|top-bar|version|vnd|word-break)/.test(w)){return}u[o++]=w+":"+z[1]}});if(o>0){return h+' style="'+u.join(";")+'"'}else{return h}}]])}}if(b(k,"paste_convert_headers_to_strong")){d([[/]*>/gi,"

"],[/<\/h[1-6][^>]*>/gi,"

"]])}d([[/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi,""]]);i=b(k,"paste_strip_class_attributes");if(i!=="none"){function m(q,o){if(i==="all"){return""}var h=p(n(o.replace(/^(["'])(.*)\1$/,"$2")," "),function(r){return(/^(?!mso)/i.test(r))});return h.length?' class="'+h.join(" ")+'"':""}j=j.replace(/ class="([^"]+)"/gi,m);j=j.replace(/ class=([\-\w]+)/gi,m)}if(b(k,"paste_remove_spans")){j=j.replace(/<\/?span[^>]*>/gi,"")}e.content=j},_postProcess:function(g,i){var f=this,e=f.editor,h=e.dom,d;if(e.settings.paste_enable_default_filters==false){return}if(i.wordContent){c(h.select("a",i.node),function(j){if(!j.href||j.href.indexOf("#_Toc")!=-1){h.remove(j,1)}});if(b(e,"paste_convert_middot_lists")){f._convertLists(g,i)}d=b(e,"paste_retain_style_properties");if((tinymce.is(d,"string"))&&(d!=="all")&&(d!=="*")){d=tinymce.explode(d.replace(/^none$/i,""));c(h.select("*",i.node),function(m){var n={},k=0,l,o,j;if(d){for(l=0;l0){h.setStyles(m,n)}else{if(m.nodeName=="SPAN"&&!m.className){h.remove(m,true)}}})}}if(b(e,"paste_remove_styles")||(b(e,"paste_remove_styles_if_webkit")&&tinymce.isWebKit)){c(h.select("*[style]",i.node),function(j){j.removeAttribute("style");j.removeAttribute("data-mce-style")})}else{if(tinymce.isWebKit){c(h.select("*",i.node),function(j){j.removeAttribute("data-mce-style")})}}},_convertLists:function(g,e){var i=g.editor.dom,h,l,d=-1,f,m=[],k,j;c(i.select("p",e.node),function(t){var q,u="",s,r,n,o;for(q=t.firstChild;q&&q.nodeType==3;q=q.nextSibling){u+=q.nodeValue}u=t.innerHTML.replace(/<\/?\w+[^>]*>/gi,"").replace(/ /g,"\u00a0");if(/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(u)){s="ul"}if(/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(u)){s="ol"}if(s){f=parseFloat(t.style.marginLeft||0);if(f>d){m.push(f)}if(!h||s!=k){h=i.create(s);i.insertAfter(h,t)}else{if(f>d){h=l.appendChild(i.create(s))}else{if(f]*>/gi,"");if(s=="ul"&&/^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(p)){i.remove(v)}else{if(/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(p)){i.remove(v)}}});r=t.innerHTML;if(s=="ul"){r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/,"")}else{r=t.innerHTML.replace(/__MCE_ITEM__/g,"").replace(/^\s*\w+\.( |\u00a0)+\s*/,"")}l=h.appendChild(i.create("li",0,r));i.remove(t);d=f;k=s}else{h=d=0}});j=e.node.innerHTML;if(j.indexOf("__MCE_ITEM__")!=-1){e.node.innerHTML=j.replace(/__MCE_ITEM__/g,"")}},_insert:function(f,d){var e=this.editor,g=e.selection.getRng();if(!e.selection.isCollapsed()&&g.startContainer!=g.endContainer){e.getDoc().execCommand("Delete",false,null)}e.execCommand("mceInsertContent",false,f,{skip_undo:d})},_insertPlainText:function(j,x,v){var t,u,l,k,r,e,p,f,n=j.getWin(),z=j.getDoc(),s=j.selection,m=tinymce.is,y=tinymce.inArray,g=b(j,"paste_text_linebreaktype"),o=b(j,"paste_text_replacements");function q(d){c(d,function(h){if(h.constructor==RegExp){v=v.replace(h,"")}else{v=v.replace(h[0],h[1])}})}if((typeof(v)==="string")&&(v.length>0)){if(/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(v)){q([/[\n\r]+/g])}else{q([/\r+/g])}q([[/<\/(?:p|h[1-6]|ul|ol|dl|table|div|blockquote|fieldset|pre|address|center)>/gi,"\n\n"],[/]*>|<\/tr>/gi,"\n"],[/<\/t[dh]>\s*]*>/gi,"\t"],/<[a-z!\/?][^>]*>/gi,[/ /gi," "],[/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi,"$1"],[/\n{3,}/g,"\n\n"],/^\s+|\s+$/g]);v=x.decode(tinymce.html.Entities.encodeRaw(v));if(!s.isCollapsed()){z.execCommand("Delete",false,null)}if(m(o,"array")||(m(o,"array"))){q(o)}else{if(m(o,"string")){q(new RegExp(o,"gi"))}}if(g=="none"){q([[/\n+/g," "]])}else{if(g=="br"){q([[/\n/g,"
"]])}else{q([/^\s+|\s+$/g,[/\n\n/g,"

"],[/\n/g,"
"]])}}if((l=v.indexOf("

"))!=-1){k=v.lastIndexOf("

");r=s.getNode();e=[];do{if(r.nodeType==1){if(r.nodeName=="TD"||r.nodeName=="BODY"){break}e[e.length]=r}}while(r=r.parentNode);if(e.length>0){p=v.substring(0,l);f="";for(t=0,u=e.length;t";f+="<"+e[e.length-t-1].nodeName.toLowerCase()+">"}if(l==k){v=p+f+v.substring(l+7)}else{v=p+v.substring(l+4,k+4)+f+v.substring(k+7)}}}j.execCommand("mceInsertRawHTML",false,v+' ');window.setTimeout(function(){var d=x.get("_plain_text_marker"),A,h,w,i;s.select(d,false);z.execCommand("Delete",false,null);d=null;A=s.getStart();h=x.getViewPort(n);w=x.getPos(A).y;i=A.clientHeight;if((wh.y+h.h)){z.body.scrollTop=w

' + dom.encode(textContent).replace(/\r?\n/g, '
') + '
'; + } // Remove the nodes - each(nl, function(n) { + each(dom.select('div.mcePaste'), function(n) { dom.remove(n); }); @@ -256,7 +293,7 @@ if (getParam(ed, "paste_auto_cleanup_on_paste")) { // Is it's Opera or older FF use key handler if (tinymce.isOpera || /Firefox\/2/.test(navigator.userAgent)) { - ed.onKeyDown.add(function(ed, e) { + ed.onKeyDown.addToTop(function(ed, e) { if (((tinymce.isMac ? e.metaKey : e.ctrlKey) && e.keyCode == 86) || (e.shiftKey && e.keyCode == 45)) grabContent(e); }); @@ -268,17 +305,19 @@ } } - // Block all drag/drop events - if (getParam(ed, "paste_block_drop")) { - ed.onInit.add(function() { + ed.onInit.add(function() { + ed.controlManager.setActive("pastetext", ed.pasteAsPlainText); + + // Block all drag/drop events + if (getParam(ed, "paste_block_drop")) { ed.dom.bind(ed.getBody(), ['dragend', 'dragover', 'draggesture', 'dragdrop', 'drop', 'drag'], function(e) { e.preventDefault(); e.stopPropagation(); return false; }); - }); - } + } + }); // Add legacy support t._legacySupport(); @@ -295,8 +334,6 @@ }, _preProcess : function(pl, o) { - //console.log('Before preprocess:' + o.content); - var ed = this.editor, h = o.content, grep = tinymce.grep, @@ -304,6 +341,8 @@ trim = tinymce.trim, len, stripClass; + //console.log('Before preprocess:' + o.content); + function process(items) { each(items, function(v) { // Remove or replace @@ -313,6 +352,23 @@ h = h.replace(v[0], v[1]); }); } + + if (ed.settings.paste_enable_default_filters == false) { + return; + } + + // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser + if (tinymce.isIE && document.documentMode >= 9) { + // IE9 adds BRs before/after block elements when contents is pasted from word or for example another browser + process([[/(?:
 [\s\r\n]+|
)*(<\/?(h[1-6r]|p|div|address|pre|form|table|tbody|thead|tfoot|th|tr|td|li|ol|ul|caption|blockquote|center|dl|dt|dd|dir|fieldset)[^>]*>)(?:
 [\s\r\n]+|
)*/g, '$1']]); + + // IE9 also adds an extra BR element for each soft-linefeed and it also adds a BR for each word wrap break + process([ + [/

/g, '

'], // Replace multiple BR elements with uppercase BR to keep them intact + [/
/g, ' '], // Replace single br elements with space since they are word wrap BR:s + [/

/g, '
'], // Replace back the double brs but into a single BR + ]); + } // Detect Word content and process it more aggressive if (/class="?Mso|style="[^"]*\bmso-|w:WordDocument/i.test(h) || o.wordContent) { @@ -332,7 +388,8 @@ if (getParam(ed, "paste_convert_middot_lists")) { process([ [//gi, '$&__MCE_ITEM__'], // Convert supportLists to a list item marker - [/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi, '$1__MCE_ITEM__'] // Convert mso-list and symbol spans to item markers + [/(]+(?:mso-list:|:\s*symbol)[^>]+>)/gi, '$1__MCE_ITEM__'], // Convert mso-list and symbol spans to item markers + [/(]+(?:MsoListParagraph)[^>]+>)/gi, '$1__MCE_ITEM__'] // Convert mso-list and symbol paragraphs to item markers (FF) ]); } @@ -484,6 +541,11 @@ ]); } + process([ + // Copy paste from Java like Open Office will produce this junk on FF + [/Version:[\d.]+\nStartHTML:\d+\nEndHTML:\d+\nStartFragment:\d+\nEndFragment:\d+/gi, ''] + ]); + // Class attribute options are: leave all as-is ("none"), remove all ("all"), or remove only those starting with mso ("mso"). // Note:- paste_strip_class_attributes: "none", verify_css_classes: true is also a good variation. stripClass = getParam(ed, "paste_strip_class_attributes"); @@ -503,7 +565,7 @@ }; h = h.replace(/ class="([^"]+)"/gi, removeClasses); - h = h.replace(/ class=(\w+)/gi, removeClasses); + h = h.replace(/ class=([\-\w]+)/gi, removeClasses); } // Remove spans option @@ -522,6 +584,10 @@ _postProcess : function(pl, o) { var t = this, ed = t.editor, dom = ed.dom, styleProps; + if (ed.settings.paste_enable_default_filters == false) { + return; + } + if (o.wordContent) { // Remove named anchors or TOC links each(dom.select('a', o.node), function(a) { @@ -573,14 +639,14 @@ if (getParam(ed, "paste_remove_styles") || (getParam(ed, "paste_remove_styles_if_webkit") && tinymce.isWebKit)) { each(dom.select('*[style]', o.node), function(el) { el.removeAttribute('style'); - el.removeAttribute('_mce_style'); + el.removeAttribute('data-mce-style'); }); } else { if (tinymce.isWebKit) { // We need to compress the styles on WebKit since if you paste it will become // Removing the mce_style that contains the real value will force the Serializer engine to compress the styles each(dom.select('*', o.node), function(el) { - el.removeAttribute('_mce_style'); + el.removeAttribute('data-mce-style'); }); } } @@ -603,11 +669,11 @@ val = p.innerHTML.replace(/<\/?\w+[^>]*>/gi, '').replace(/ /g, '\u00a0'); // Detect unordered lists look for bullets - if (/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o]\s*\u00a0*/.test(val)) + if (/^(__MCE_ITEM__)+[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*\u00a0*/.test(val)) type = 'ul'; // Detect ordered lists 1., a. or ixv. - if (/^__MCE_ITEM__\s*\w+\.\s*\u00a0{2,}/.test(val)) + if (/^__MCE_ITEM__\s*\w+\.\s*\u00a0+/.test(val)) type = 'ol'; // Check if node value matches the list pattern: o   @@ -637,9 +703,9 @@ var html = span.innerHTML.replace(/<\/?\w+[^>]*>/gi, ''); // Remove span with the middot or the number - if (type == 'ul' && /^[\u2022\u00b7\u00a7\u00d8o]/.test(html)) + if (type == 'ul' && /^__MCE_ITEM__[\u2022\u00b7\u00a7\u00d8o\u25CF]/.test(html)) dom.remove(span); - else if (/^[\s\S]*\w+\.( |\u00a0)*\s*/.test(html)) + else if (/^__MCE_ITEM__[\s\S]*\w+\.( |\u00a0)*\s*/.test(html)) dom.remove(span); }); @@ -647,7 +713,7 @@ // Remove middot/list items if (type == 'ul') - html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^[\u2022\u00b7\u00a7\u00d8o]\s*( |\u00a0)+\s*/, ''); + html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^[\u2022\u00b7\u00a7\u00d8o\u25CF]\s*( |\u00a0)+\s*/, ''); else html = p.innerHTML.replace(/__MCE_ITEM__/g, '').replace(/^\s*\w+\.( |\u00a0)+\s*/, ''); @@ -667,65 +733,6 @@ o.node.innerHTML = html.replace(/__MCE_ITEM__/g, ''); }, - /** - * This method will split the current block parent and insert the contents inside the split position. - * This logic can be improved so text nodes at the start/end remain in the start/end block elements - */ - _insertBlockContent : function(ed, dom, content) { - var parentBlock, marker, sel = ed.selection, last, elm, vp, y, elmHeight, markerId = 'mce_marker'; - - function select(n) { - var r; - - if (tinymce.isIE) { - r = ed.getDoc().body.createTextRange(); - r.moveToElementText(n); - r.collapse(false); - r.select(); - } else { - sel.select(n, 1); - sel.collapse(false); - } - } - - // Insert a marker for the caret position - this._insert('', 1); - marker = dom.get(markerId); - parentBlock = dom.getParent(marker, 'p,h1,h2,h3,h4,h5,h6,ul,ol,th,td'); - - // If it's a parent block but not a table cell - if (parentBlock && !/TD|TH/.test(parentBlock.nodeName)) { - // Split parent block - marker = dom.split(parentBlock, marker); - - // Insert nodes before the marker - each(dom.create('div', 0, content).childNodes, function(n) { - last = marker.parentNode.insertBefore(n.cloneNode(true), marker); - }); - - // Move caret after marker - select(last); - } else { - dom.setOuterHTML(marker, content); - sel.select(ed.getBody(), 1); - sel.collapse(0); - } - - // Remove marker if it's left - while (elm = dom.get(markerId)) - dom.remove(elm); - - // Get element, position and height - elm = sel.getStart(); - vp = dom.getViewPort(ed.getWin()); - y = ed.dom.getPos(elm).y; - elmHeight = elm.clientHeight; - - // Is element within viewport if not then scroll it into view - if (y < vp.y || y + elmHeight > vp.y + vp.h) - ed.getDoc().body.scrollTop = y < vp.y ? y : y - vp.h + 25; - }, - /** * Inserts the specified contents at the caret position. */ @@ -736,8 +743,7 @@ if (!ed.selection.isCollapsed() && r.startContainer != r.endContainer) ed.getDoc().execCommand('Delete', false, null); - // It's better to use the insertHTML method on Gecko since it will combine paragraphs correctly before inserting the contents - ed.execCommand(tinymce.isGecko ? 'insertHTML' : 'mceInsertContent', false, h, {skip_undo : skip_undo}); + ed.execCommand('mceInsertContent', false, h, {skip_undo : skip_undo}); }, /** @@ -769,9 +775,6 @@ }; if ((typeof(h) === "string") && (h.length > 0)) { - if (!entities) - entities = ("34,quot,38,amp,39,apos,60,lt,62,gt," + ed.serializer.settings.entities).split(","); - // If HTML content with line-breaking tags, then remove all cr/lf chars because only tags will break a line if (/<(?:p|br|h[1-6]|ul|ol|dl|table|t[rdh]|div|blockquote|fieldset|pre|address|center)[^>]*>/i.test(h)) { process([ @@ -790,26 +793,12 @@ [/<\/t[dh]>\s*]*>/gi, "\t"], // Table cells get tabs betweem them /<[a-z!\/?][^>]*>/gi, // Delete all remaining tags [/ /gi, " "], // Convert non-break spaces to regular spaces (remember, *plain text*) - [ - // HTML entity - /&(#\d+|[a-z0-9]{1,10});/gi, - - // Replace with actual character - function(e, s) { - if (s.charAt(0) === "#") { - return String.fromCharCode(s.slice(1)); - } - else { - return ((e = inArray(entities, s)) > 0)? String.fromCharCode(entities[e-1]) : " "; - } - } - ], [/(?:(?!\n)\s)*(\n+)(?:(?!\n)\s)*/gi, "$1"], // Cool little RegExp deletes whitespace around linebreak chars. [/\n{3,}/g, "\n\n"], // Max. 2 consecutive linebreaks /^\s+|\s+$/g // Trim the front & back ]); - h = dom.encode(h); + h = dom.decode(tinymce.html.Entities.encodeRaw(h)); // Delete any highlighted text before pasting if (!sel.isCollapsed()) { diff --git a/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin.js b/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin.js index cd9c985b7a..165bc12df5 100644 --- a/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){window.focus();a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin_src.js index 1433a06a4a..4c87e8fa79 100644 --- a/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/searchreplace/editor_plugin_src.js @@ -12,6 +12,10 @@ tinymce.create('tinymce.plugins.SearchReplacePlugin', { init : function(ed, url) { function open(m) { + // Keep IE from writing out the f/r character to the editor + // instance while initializing a new dialog. See: #3131190 + window.focus(); + ed.windowManager.open({ file : url + '/searchreplace.htm', width : 420 + parseInt(ed.getLang('searchreplace.delta_width', 0)), diff --git a/plugins/TinyMCE/js/plugins/searchreplace/js/searchreplace.js b/plugins/TinyMCE/js/plugins/searchreplace/js/searchreplace.js index c0a6243297..80284b9f3f 100644 --- a/plugins/TinyMCE/js/plugins/searchreplace/js/searchreplace.js +++ b/plugins/TinyMCE/js/plugins/searchreplace/js/searchreplace.js @@ -2,14 +2,18 @@ tinyMCEPopup.requireLangPack(); var SearchReplaceDialog = { init : function(ed) { - var f = document.forms[0], m = tinyMCEPopup.getWindowArg("mode"); + var t = this, f = document.forms[0], m = tinyMCEPopup.getWindowArg("mode"); - this.switchMode(m); + t.switchMode(m); f[m + '_panel_searchstring'].value = tinyMCEPopup.getWindowArg("search_string"); // Focus input field f[m + '_panel_searchstring'].focus(); + + mcTabs.onChange.add(function(tab_id, panel_id) { + t.switchMode(tab_id.substring(0, tab_id.indexOf('_'))); + }); }, switchMode : function(m) { @@ -42,21 +46,23 @@ var SearchReplaceDialog = { ca = f[m + '_panel_casesensitivebox'].checked; rs = f['replace_panel_replacestring'].value; + if (tinymce.isIE) { + r = ed.getDoc().selection.createRange(); + } + if (s == '') return; function fix() { // Correct Firefox graphics glitches + // TODO: Verify if this is actually needed any more, maybe it was for very old FF versions? r = se.getRng().cloneRange(); ed.getDoc().execCommand('SelectAll', false, null); se.setRng(r); }; function replace() { - if (tinymce.isIE) - ed.selection.getRng().duplicate().pasteHTML(rs); // Needs to be duplicated due to selection bug in IE - else - ed.getDoc().execCommand('InsertHTML', false, rs); + ed.selection.setContent(rs); // Needs to be duplicated due to selection bug in IE }; // IE flags @@ -70,6 +76,9 @@ var SearchReplaceDialog = { ed.selection.collapse(true); if (tinymce.isIE) { + ed.focus(); + r = ed.getDoc().selection.createRange(); + while (r.findText(s, b ? -1 : 1, fl)) { r.scrollIntoView(); r.select(); @@ -111,6 +120,9 @@ var SearchReplaceDialog = { return; if (tinymce.isIE) { + ed.focus(); + r = ed.getDoc().selection.createRange(); + if (r.findText(s, b ? -1 : 1, fl)) { r.scrollIntoView(); r.select(); diff --git a/plugins/TinyMCE/js/plugins/searchreplace/searchreplace.htm b/plugins/TinyMCE/js/plugins/searchreplace/searchreplace.htm index d0424cfc9b..5a22d8aa4d 100644 --- a/plugins/TinyMCE/js/plugins/searchreplace/searchreplace.htm +++ b/plugins/TinyMCE/js/plugins/searchreplace/searchreplace.htm @@ -8,27 +8,28 @@ - + +
- +
- +
- - - +
+ + @@ -39,7 +40,7 @@ + + + + + +
{#style_dlg.padding} - +
@@ -288,11 +328,14 @@ @@ -300,11 +343,14 @@ @@ -312,11 +358,14 @@ @@ -324,11 +373,14 @@ @@ -341,7 +393,7 @@
{#style_dlg.margin} -
 
- +
- +
  + + +
- +
- +
  + + +
- +
- +
  + + +
- +
- +
  + + +
+
@@ -349,11 +401,14 @@ @@ -361,11 +416,14 @@ @@ -373,11 +431,14 @@ @@ -385,11 +446,14 @@ @@ -401,131 +465,148 @@
-
 
- +
- +
  + + +
- +
- +
  + + +
- +
- +
  + + +
- +
- +
  + + +
- - - - - - - - - +
+ {#style_dlg.border} +
  {#style_dlg.style} {#style_dlg.width} {#style_dlg.color}
+ + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - - - - - - - -
  {#style_dlg.style} {#style_dlg.width} {#style_dlg.color}
      
      
{#style_dlg.top}   - - - - - - -
 
-
  - - - - - -
 
-
{#style_dlg.top}   + + + + + + +
  + + +
+
  + + + + + +
 
+
{#style_dlg.right}   - - - - - - -
 
-
  - - - - - -
 
-
{#style_dlg.right}   + + + + + + +
  + + +
+
  + + + + + +
 
+
{#style_dlg.bottom}   - - - - - - -
 
-
  - - - - - -
 
-
{#style_dlg.bottom}   + + + + + + +
  + + +
+
  + + + + + +
 
+
{#style_dlg.left}   - - - - - - + + + + + + + + +
 
{#style_dlg.left}   + + + + + + +
  + + +
+
  + + + + + +
 
+
-
  - - - - - -
 
-
+
- +
+ {#style_dlg.list} +
@@ -541,10 +622,13 @@
+
- +
+ {#style_dlg.position} +
@@ -555,11 +639,14 @@ @@ -570,11 +657,14 @@ @@ -587,7 +677,7 @@
{#style_dlg.placement} -
- +
- +
  + + +
- +
- +
  + + +
+
@@ -595,11 +685,14 @@ @@ -607,11 +700,14 @@ @@ -619,11 +715,14 @@ @@ -631,11 +730,14 @@ @@ -648,7 +750,7 @@
{#style_dlg.clip} -
 
{#style_dlg.top} - +
- +
  + + +
{#style_dlg.right} - +
- +
  + + +
{#style_dlg.bottom} - +
- +
  + + +
{#style_dlg.left} - +
- +
  + + +
+
@@ -656,11 +758,14 @@ @@ -668,11 +773,14 @@ @@ -680,11 +788,14 @@ @@ -692,11 +803,14 @@ @@ -706,6 +820,7 @@
+
diff --git a/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin.js b/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin.js index 27d2440222..d18689ddb9 100644 --- a/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin.js @@ -1 +1 @@ -(function(){var c=tinymce.DOM,a=tinymce.dom.Event,d=tinymce.each,b=tinymce.explode;tinymce.create("tinymce.plugins.TabFocusPlugin",{init:function(f,g){function e(i,j){if(j.keyCode===9){return a.cancel(j)}}function h(l,p){var j,m,o,n,k;function q(i){o=c.getParent(l.id,"form");n=o.elements;if(o){d(n,function(s,r){if(s.id==l.id){j=r;return false}});if(i>0){for(m=j+1;m=0;m--){if(n[m].type!="hidden"){return n[m]}}}}return null}if(p.keyCode===9){k=b(l.getParam("tab_focus",l.getParam("tabfocus_elements",":prev,:next")));if(k.length==1){k[1]=k[0];k[0]=":prev"}if(p.shiftKey){if(k[0]==":prev"){n=q(-1)}else{n=c.get(k[0])}}else{if(k[1]==":next"){n=q(1)}else{n=c.get(k[1])}}if(n){if(l=tinymce.get(n.id||n.name)){l.focus()}else{window.setTimeout(function(){window.focus();n.focus()},10)}return a.cancel(p)}}}f.onKeyUp.add(e);if(tinymce.isGecko){f.onKeyPress.add(h);f.onKeyDown.add(e)}else{f.onKeyDown.add(h)}f.onInit.add(function(){d(c.select("a:first,a:last",f.getContainer()),function(i){a.add(i,"focus",function(){f.focus()})})})},getInfo:function(){return{longname:"Tabfocus",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("tabfocus",tinymce.plugins.TabFocusPlugin)})(); \ No newline at end of file +(function(){var c=tinymce.DOM,a=tinymce.dom.Event,d=tinymce.each,b=tinymce.explode;tinymce.create("tinymce.plugins.TabFocusPlugin",{init:function(f,g){function e(i,j){if(j.keyCode===9){return a.cancel(j)}}function h(l,p){var j,m,o,n,k;function q(r){n=c.select(":input:enabled,*[tabindex]");function i(s){return s.type!="hidden"&&s.tabIndex!="-1"&&!(n[m].style.display=="none")&&!(n[m].style.visibility=="hidden")}d(n,function(t,s){if(t.id==l.id){j=s;return false}});if(r>0){for(m=j+1;m=0;m--){if(i(n[m])){return n[m]}}}return null}if(p.keyCode===9){k=b(l.getParam("tab_focus",l.getParam("tabfocus_elements",":prev,:next")));if(k.length==1){k[1]=k[0];k[0]=":prev"}if(p.shiftKey){if(k[0]==":prev"){n=q(-1)}else{n=c.get(k[0])}}else{if(k[1]==":next"){n=q(1)}else{n=c.get(k[1])}}if(n){if(n.id&&(l=tinymce.get(n.id||n.name))){l.focus()}else{window.setTimeout(function(){if(!tinymce.isWebKit){window.focus()}n.focus()},10)}return a.cancel(p)}}}f.onKeyUp.add(e);if(tinymce.isGecko){f.onKeyPress.add(h);f.onKeyDown.add(e)}else{f.onKeyDown.add(h)}},getInfo:function(){return{longname:"Tabfocus",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("tabfocus",tinymce.plugins.TabFocusPlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin_src.js index c2be2f40a6..f4545e1670 100644 --- a/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/tabfocus/editor_plugin_src.js @@ -22,27 +22,30 @@ var x, i, f, el, v; function find(d) { - f = DOM.getParent(ed.id, 'form'); - el = f.elements; + el = DOM.select(':input:enabled,*[tabindex]'); + function canSelect(e) { + return e.type != 'hidden' && + e.tabIndex != '-1' && + !(el[i].style.display == "none") && + !(el[i].style.visibility == "hidden"); + } - if (f) { - each(el, function(e, i) { - if (e.id == ed.id) { - x = i; - return false; - } - }); + each(el, function(e, i) { + if (e.id == ed.id) { + x = i; + return false; + } + }); - if (d > 0) { - for (i = x + 1; i < el.length; i++) { - if (el[i].type != 'hidden') - return el[i]; - } - } else { - for (i = x - 1; i >= 0; i--) { - if (el[i].type != 'hidden') - return el[i]; - } + if (d > 0) { + for (i = x + 1; i < el.length; i++) { + if (canSelect(el[i])) + return el[i]; + } + } else { + for (i = x - 1; i >= 0; i--) { + if (canSelect(el[i])) + return el[i]; } } @@ -71,10 +74,14 @@ } if (el) { - if (ed = tinymce.get(el.id || el.name)) + if (el.id && (ed = tinymce.get(el.id || el.name))) ed.focus(); else - window.setTimeout(function() {window.focus();el.focus();}, 10); + window.setTimeout(function() { + if (!tinymce.isWebKit) + window.focus(); + el.focus(); + }, 10); return Event.cancel(e); } @@ -89,11 +96,6 @@ } else ed.onKeyDown.add(tabHandler); - ed.onInit.add(function() { - each(DOM.select('a:first,a:last', ed.getContainer()), function(n) { - Event.add(n, 'focus', function() {ed.focus();}); - }); - }); }, getInfo : function() { diff --git a/plugins/TinyMCE/js/plugins/table/cell.htm b/plugins/TinyMCE/js/plugins/table/cell.htm index d243e1d833..a72a8d6973 100644 --- a/plugins/TinyMCE/js/plugins/table/cell.htm +++ b/plugins/TinyMCE/js/plugins/table/cell.htm @@ -5,16 +5,17 @@ + - + @@ -23,7 +24,7 @@
{#table_dlg.general_props} -
 
{#style_dlg.top} - +
- +
  + + +
{#style_dlg.right} - +
- +
  + + +
{#style_dlg.bottom} - +
- +
  + + +
{#style_dlg.left} - +
- +
  + + +
+
- + - + @@ -92,7 +93,7 @@
{#table_dlg.advanced_props} -
@@ -70,10 +71,10 @@
+
@@ -124,7 +125,7 @@
- +
@@ -133,10 +134,10 @@ - - + +
 
- +
@@ -145,10 +146,10 @@ - - + +
 
- +
@@ -166,6 +167,7 @@ diff --git a/plugins/TinyMCE/js/plugins/table/editor_plugin.js b/plugins/TinyMCE/js/plugins/table/editor_plugin.js index 266d7d5371..f0100315b4 100644 --- a/plugins/TinyMCE/js/plugins/table/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/table/editor_plugin.js @@ -1 +1 @@ -(function(b){var c=b.each;function a(F,E,I){var e,J,B,n;r();n=E.getParent(I.getStart(),"th,td");if(n){J=D(n);B=G();n=v(J.x,J.y)}function w(L,K){L=L.cloneNode(K);L.removeAttribute("id");return L}function r(){var K=0;e=[];c(["thead","tbody","tfoot"],function(L){var M=E.select(L+" tr",F);c(M,function(N,O){O+=K;c(E.select("td,th",N),function(U,P){var Q,R,S,T;if(e[O]){while(e[O][P]){P++}}S=g(U,"rowspan");T=g(U,"colspan");for(R=O;R'}return false}},"childNodes");K=w(K,false);K.rowSpan=K.colSpan=1;if(L){K.appendChild(L)}else{if(!b.isIE){K.innerHTML='
'}}return K}function p(){var K=E.createRng();c(E.select("tr",F),function(L){if(L.cells.length==0){E.remove(L)}});if(E.select("tr",F).length==0){K.setStartAfter(F);K.setEndAfter(F);I.setRng(K);E.remove(F);return}c(E.select("thead,tbody,tfoot",F),function(L){if(L.rows.length==0){E.remove(L)}});r();row=e[Math.min(e.length-1,J.y)];if(row){I.select(row[Math.min(row.length-1,J.x)].elm,true);I.collapse(true)}}function s(Q,O,S,P){var N,L,K,M,R;N=e[O][Q].elm.parentNode;for(K=1;K<=S;K++){N=E.getNext(N,"tr");if(N){for(L=Q;L>=0;L--){R=e[O+K][L].elm;if(R.parentNode==N){for(M=1;M<=P;M++){E.insertAfter(d(R),R)}break}}if(L==-1){for(M=1;M<=P;M++){N.insertBefore(d(N.cells[0]),N.cells[0])}}}}}function A(){c(e,function(K,L){c(K,function(N,M){var Q,P,R,O;if(h(N)){N=N.elm;Q=g(N,"colspan");P=g(N,"rowspan");if(Q>1||P>1){N.colSpan=N.rowSpan=1;for(O=0;O1){P.rowSpan=rowSpan+1;continue}}else{if(K>0&&e[K-1][O]){S=e[K-1][O].elm;rowSpan=g(S,"rowspan");if(rowSpan>1){S.rowSpan=rowSpan+1;continue}}}L=d(P);L.colSpan=P.colSpan;R.appendChild(L);M=P}}if(R.hasChildNodes()){if(!N){E.insertAfter(R,Q)}else{Q.parentNode.insertBefore(R,Q)}}}function f(L){var M,K;c(e,function(N,O){c(N,function(Q,P){if(h(Q)){M=P;if(L){return false}}});if(L){return !M}});c(e,function(Q,R){var N=Q[M].elm,O,P;if(N!=K){P=g(N,"colspan");O=g(N,"rowspan");if(P==1){if(!L){E.insertAfter(d(N),N);s(M,R,O-1,P)}else{N.parentNode.insertBefore(d(N),N);s(M,R,O-1,P)}}else{N.colSpan++}K=N}})}function m(){var K=[];c(e,function(L,M){c(L,function(O,N){if(h(O)&&b.inArray(K,N)===-1){c(e,function(R){var P=R[N].elm,Q;Q=g(P,"colspan");if(Q>1){P.colSpan=Q-1}else{E.remove(P)}});K.push(N)}})});p()}function l(){var L;function K(O){var N,P,M;N=E.getNext(O,"tr");c(O.cells,function(Q){var R=g(Q,"rowspan");if(R>1){Q.rowSpan=R-1;P=D(Q);s(P.x,P.y,1,1)}});P=D(O.cells[0]);c(e[P.y],function(Q){var R;Q=Q.elm;if(Q!=M){R=g(Q,"rowspan");if(R<=1){E.remove(Q)}else{Q.rowSpan=R-1}M=Q}})}L=j();c(L.reverse(),function(M){K(M)});p()}function C(){var K=j();E.remove(K);p();return K}function H(){var K=j();c(K,function(M,L){K[L]=w(M,true)});return K}function z(M,L){var N=j(),K=N[L?0:N.length-1],O=K.cells.length;c(e,function(Q){var P;O=0;c(Q,function(S,R){if(S.real){O+=S.colspan}if(S.elm.parentNode==K){P=1}});if(P){return false}});if(!L){M.reverse()}c(M,function(R){var Q=R.cells.length,P;for(i=0;iL){L=P}if(O>K){K=O}if(Q.real){S=Q.colspan-1;R=Q.rowspan-1;if(S){if(P+S>L){L=P+S}}if(R){if(O+R>K){K=O+R}}}}})});return{x:L,y:K}}function t(Q){var N,M,S,R,L,K,O,P;B=D(Q);if(J&&B){N=Math.min(J.x,B.x);M=Math.min(J.y,B.y);S=Math.max(J.x,B.x);R=Math.max(J.y,B.y);L=S;K=R;for(y=M;y<=K;y++){Q=e[y][N];if(!Q.real){if(N-(Q.colspan-1)L){L=x+O}}if(P){if(y+P>K){K=y+P}}}}}E.removeClass(E.select("td.mceSelected,th.mceSelected"),"mceSelected");for(y=M;y<=K;y++){for(x=N;x<=L;x++){E.addClass(e[y][x].elm,"mceSelected")}}}}b.extend(this,{deleteTable:q,split:A,merge:o,insertRow:k,insertCol:f,deleteCols:m,deleteRows:l,cutRows:C,copyRows:H,pasteRows:z,getPos:D,setStartCell:u,setEndCell:t})}b.create("tinymce.plugins.TablePlugin",{init:function(e,f){var d,j;function h(m){var l=e.selection,k=e.dom.getParent(m||l.getNode(),"table");if(k){return new a(k,e.dom,l)}}function g(){e.getBody().style.webkitUserSelect="";e.dom.removeClass(e.dom.select("td.mceSelected,th.mceSelected"),"mceSelected")}c([["table","table.desc","mceInsertTable",true],["delete_table","table.del","mceTableDelete"],["delete_col","table.delete_col_desc","mceTableDeleteCol"],["delete_row","table.delete_row_desc","mceTableDeleteRow"],["col_after","table.col_after_desc","mceTableInsertColAfter"],["col_before","table.col_before_desc","mceTableInsertColBefore"],["row_after","table.row_after_desc","mceTableInsertRowAfter"],["row_before","table.row_before_desc","mceTableInsertRowBefore"],["row_props","table.row_desc","mceTableRowProps",true],["cell_props","table.cell_desc","mceTableCellProps",true],["split_cells","table.split_cells_desc","mceTableSplitCells",true],["merge_cells","table.merge_cells_desc","mceTableMergeCells",true]],function(k){e.addButton(k[0],{title:k[1],cmd:k[2],ui:k[3]})});if(!b.isIE){e.onClick.add(function(k,l){l=l.target;if(l.nodeName==="TABLE"){k.selection.select(l)}})}e.onNodeChange.add(function(l,k,o){var m;o=l.selection.getStart();m=l.dom.getParent(o,"td,th,caption");k.setActive("table",o.nodeName==="TABLE"||!!m);if(m&&m.nodeName==="CAPTION"){m=0}k.setDisabled("delete_table",!m);k.setDisabled("delete_col",!m);k.setDisabled("delete_table",!m);k.setDisabled("delete_row",!m);k.setDisabled("col_after",!m);k.setDisabled("col_before",!m);k.setDisabled("row_after",!m);k.setDisabled("row_before",!m);k.setDisabled("row_props",!m);k.setDisabled("cell_props",!m);k.setDisabled("split_cells",!m);k.setDisabled("merge_cells",!m)});e.onInit.add(function(l){var k,o,p=l.dom,m;d=l.windowManager;l.onMouseDown.add(function(q,r){if(r.button!=2){g();o=p.getParent(r.target,"td,th");k=p.getParent(o,"table")}});p.bind(l.getDoc(),"mouseover",function(t){var r,q,s=t.target;if(o&&(m||s!=o)&&(s.nodeName=="TD"||s.nodeName=="TH")){q=p.getParent(s,"table");if(q==k){if(!m){m=h(q);m.setStartCell(o);l.getBody().style.webkitUserSelect="none"}m.setEndCell(s)}r=l.selection.getSel();if(r.removeAllRanges){r.removeAllRanges()}else{r.empty()}t.preventDefault()}});l.onMouseUp.add(function(z,A){var r,t=z.selection,B,C=t.getSel(),q,u,s,w;if(o){if(m){z.getBody().style.webkitUserSelect=""}function v(D,F){var E=new b.dom.TreeWalker(D,D);do{if(D.nodeType==3&&b.trim(D.nodeValue).length!=0){if(F){r.setStart(D,0)}else{r.setEnd(D,D.nodeValue.length)}return}if(D.nodeName=="BR"){if(F){r.setStartBefore(D)}else{r.setEndBefore(D)}return}}while(D=(F?E.next():E.prev()))}B=p.select("td.mceSelected,th.mceSelected");if(B.length>0){r=p.createRng();u=B[0];w=B[B.length-1];v(u,1);q=new b.dom.TreeWalker(u,p.getParent(B[0],"table"));do{if(u.nodeName=="TD"||u.nodeName=="TH"){if(!p.hasClass(u,"mceSelected")){break}s=u}}while(u=q.next());v(s);t.setRng(r)}z.nodeChanged();o=m=k=null}});l.onKeyUp.add(function(q,r){g()});if(l&&l.plugins.contextmenu){l.plugins.contextmenu.onContextMenu.add(function(s,q,u){var v,t=l.selection,r=t.getNode()||l.getBody();if(l.dom.getParent(u,"td")||l.dom.getParent(u,"th")||l.dom.select("td.mceSelected,th.mceSelected").length){q.removeAll();if(r.nodeName=="A"&&!l.dom.getAttrib(r,"name")){q.add({title:"advanced.link_desc",icon:"link",cmd:l.plugins.advlink?"mceAdvLink":"mceLink",ui:true});q.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"});q.addSeparator()}if(r.nodeName=="IMG"&&r.className.indexOf("mceItem")==-1){q.add({title:"advanced.image_desc",icon:"image",cmd:l.plugins.advimage?"mceAdvImage":"mceImage",ui:true});q.addSeparator()}q.add({title:"table.desc",icon:"table",cmd:"mceInsertTable",value:{action:"insert"}});q.add({title:"table.props_desc",icon:"table_props",cmd:"mceInsertTable"});q.add({title:"table.del",icon:"delete_table",cmd:"mceTableDelete"});q.addSeparator();v=q.addMenu({title:"table.cell"});v.add({title:"table.cell_desc",icon:"cell_props",cmd:"mceTableCellProps"});v.add({title:"table.split_cells_desc",icon:"split_cells",cmd:"mceTableSplitCells"});v.add({title:"table.merge_cells_desc",icon:"merge_cells",cmd:"mceTableMergeCells"});v=q.addMenu({title:"table.row"});v.add({title:"table.row_desc",icon:"row_props",cmd:"mceTableRowProps"});v.add({title:"table.row_before_desc",icon:"row_before",cmd:"mceTableInsertRowBefore"});v.add({title:"table.row_after_desc",icon:"row_after",cmd:"mceTableInsertRowAfter"});v.add({title:"table.delete_row_desc",icon:"delete_row",cmd:"mceTableDeleteRow"});v.addSeparator();v.add({title:"table.cut_row_desc",icon:"cut",cmd:"mceTableCutRow"});v.add({title:"table.copy_row_desc",icon:"copy",cmd:"mceTableCopyRow"});v.add({title:"table.paste_row_before_desc",icon:"paste",cmd:"mceTablePasteRowBefore"}).setDisabled(!j);v.add({title:"table.paste_row_after_desc",icon:"paste",cmd:"mceTablePasteRowAfter"}).setDisabled(!j);v=q.addMenu({title:"table.col"});v.add({title:"table.col_before_desc",icon:"col_before",cmd:"mceTableInsertColBefore"});v.add({title:"table.col_after_desc",icon:"col_after",cmd:"mceTableInsertColAfter"});v.add({title:"table.delete_col_desc",icon:"delete_col",cmd:"mceTableDeleteCol"})}else{q.add({title:"table.desc",icon:"table",cmd:"mceInsertTable"})}})}if(!b.isIE){function n(){var q;for(q=l.getBody().lastChild;q&&q.nodeType==3&&!q.nodeValue.length;q=q.previousSibling){}if(q&&q.nodeName=="TABLE"){l.dom.add(l.getBody(),"p",null,'
')}}if(b.isGecko){l.onKeyDown.add(function(r,t){var q,s,u=r.dom;if(t.keyCode==37||t.keyCode==38){q=r.selection.getRng();s=u.getParent(q.startContainer,"table");if(s&&r.getBody().firstChild==s){if(isAtStart(q,s)){q=u.createRng();q.setStartBefore(s);q.setEndBefore(s);r.selection.setRng(q);t.preventDefault()}}}})}l.onKeyUp.add(n);l.onSetContent.add(n);l.onVisualAid.add(n);l.onPreProcess.add(function(q,s){var r=s.node.lastChild;if(r&&r.childNodes.length==1&&r.firstChild.nodeName=="BR"){q.dom.remove(r)}});n()}});c({mceTableSplitCells:function(k){k.split()},mceTableMergeCells:function(l){var m,n,k;k=e.dom.getParent(e.selection.getNode(),"th,td");if(k){m=k.rowSpan;n=k.colSpan}if(!e.dom.select("td.mceSelected,th.mceSelected").length){d.open({url:f+"/merge_cells.htm",width:240+parseInt(e.getLang("table.merge_cells_delta_width",0)),height:110+parseInt(e.getLang("table.merge_cells_delta_height",0)),inline:1},{rows:m,cols:n,onaction:function(o){l.merge(k,o.cols,o.rows)},plugin_url:f})}else{l.merge()}},mceTableInsertRowBefore:function(k){k.insertRow(true)},mceTableInsertRowAfter:function(k){k.insertRow()},mceTableInsertColBefore:function(k){k.insertCol(true)},mceTableInsertColAfter:function(k){k.insertCol()},mceTableDeleteCol:function(k){k.deleteCols()},mceTableDeleteRow:function(k){k.deleteRows()},mceTableCutRow:function(k){j=k.cutRows()},mceTableCopyRow:function(k){j=k.copyRows()},mceTablePasteRowBefore:function(k){k.pasteRows(j,true)},mceTablePasteRowAfter:function(k){k.pasteRows(j)},mceTableDelete:function(k){k.deleteTable()}},function(l,k){e.addCommand(k,function(){var m=h();if(m){l(m);e.execCommand("mceRepaint");g()}})});c({mceInsertTable:function(k){d.open({url:f+"/table.htm",width:400+parseInt(e.getLang("table.table_delta_width",0)),height:320+parseInt(e.getLang("table.table_delta_height",0)),inline:1},{plugin_url:f,action:k?k.action:0})},mceTableRowProps:function(){d.open({url:f+"/row.htm",width:400+parseInt(e.getLang("table.rowprops_delta_width",0)),height:295+parseInt(e.getLang("table.rowprops_delta_height",0)),inline:1},{plugin_url:f})},mceTableCellProps:function(){d.open({url:f+"/cell.htm",width:400+parseInt(e.getLang("table.cellprops_delta_width",0)),height:295+parseInt(e.getLang("table.cellprops_delta_height",0)),inline:1},{plugin_url:f})}},function(l,k){e.addCommand(k,function(m,n){l(n)})})}});b.PluginManager.add("table",b.plugins.TablePlugin)})(tinymce); \ No newline at end of file +(function(c){var d=c.each;function b(f,g){var h=g.ownerDocument,e=h.createRange(),j;e.setStartBefore(g);e.setEnd(f.endContainer,f.endOffset);j=h.createElement("body");j.appendChild(e.cloneContents());return j.innerHTML.replace(/<(br|img|object|embed|input|textarea)[^>]*>/gi,"-").replace(/<[^>]+>/g,"").length==0}function a(H,G,K){var f,L,D,o;t();o=G.getParent(K.getStart(),"th,td");if(o){L=F(o);D=I();o=z(L.x,L.y)}function A(N,M){N=N.cloneNode(M);N.removeAttribute("id");return N}function t(){var M=0;f=[];d(["thead","tbody","tfoot"],function(N){var O=G.select("> "+N+" tr",H);d(O,function(P,Q){Q+=M;d(G.select("> td, > th",P),function(W,R){var S,T,U,V;if(f[Q]){while(f[Q][R]){R++}}U=h(W,"rowspan");V=h(W,"colspan");for(T=Q;T'}return false}},"childNodes");M=A(M,false);s(M,"rowSpan",1);s(M,"colSpan",1);if(N){M.appendChild(N)}else{if(!c.isIE){M.innerHTML='
'}}return M}function q(){var M=G.createRng();d(G.select("tr",H),function(N){if(N.cells.length==0){G.remove(N)}});if(G.select("tr",H).length==0){M.setStartAfter(H);M.setEndAfter(H);K.setRng(M);G.remove(H);return}d(G.select("thead,tbody,tfoot",H),function(N){if(N.rows.length==0){G.remove(N)}});t();row=f[Math.min(f.length-1,L.y)];if(row){K.select(row[Math.min(row.length-1,L.x)].elm,true);K.collapse(true)}}function u(S,Q,U,R){var P,N,M,O,T;P=f[Q][S].elm.parentNode;for(M=1;M<=U;M++){P=G.getNext(P,"tr");if(P){for(N=S;N>=0;N--){T=f[Q+M][N].elm;if(T.parentNode==P){for(O=1;O<=R;O++){G.insertAfter(e(T),T)}break}}if(N==-1){for(O=1;O<=R;O++){P.insertBefore(e(P.cells[0]),P.cells[0])}}}}}function C(){d(f,function(M,N){d(M,function(P,O){var S,R,T,Q;if(j(P)){P=P.elm;S=h(P,"colspan");R=h(P,"rowspan");if(S>1||R>1){s(P,"rowSpan",1);s(P,"colSpan",1);for(Q=0;Q1){s(S,"rowSpan",O+1);continue}}else{if(M>0&&f[M-1][R]){V=f[M-1][R].elm;O=h(V,"rowSpan");if(O>1){s(V,"rowSpan",O+1);continue}}}N=e(S);s(N,"colSpan",S.colSpan);U.appendChild(N);P=S}}if(U.hasChildNodes()){if(!Q){G.insertAfter(U,T)}else{T.parentNode.insertBefore(U,T)}}}function g(N){var O,M;d(f,function(P,Q){d(P,function(S,R){if(j(S)){O=R;if(N){return false}}});if(N){return !O}});d(f,function(S,T){var P,Q,R;if(!S[O]){return}P=S[O].elm;if(P!=M){R=h(P,"colspan");Q=h(P,"rowspan");if(R==1){if(!N){G.insertAfter(e(P),P);u(O,T,Q-1,R)}else{P.parentNode.insertBefore(e(P),P);u(O,T,Q-1,R)}}else{s(P,"colSpan",P.colSpan+1)}M=P}})}function n(){var M=[];d(f,function(N,O){d(N,function(Q,P){if(j(Q)&&c.inArray(M,P)===-1){d(f,function(T){var R=T[P].elm,S;S=h(R,"colSpan");if(S>1){s(R,"colSpan",S-1)}else{G.remove(R)}});M.push(P)}})});q()}function m(){var N;function M(Q){var P,R,O;P=G.getNext(Q,"tr");d(Q.cells,function(S){var T=h(S,"rowSpan");if(T>1){s(S,"rowSpan",T-1);R=F(S);u(R.x,R.y,1,1)}});R=F(Q.cells[0]);d(f[R.y],function(S){var T;S=S.elm;if(S!=O){T=h(S,"rowSpan");if(T<=1){G.remove(S)}else{s(S,"rowSpan",T-1)}O=S}})}N=k();d(N.reverse(),function(O){M(O)});q()}function E(){var M=k();G.remove(M);q();return M}function J(){var M=k();d(M,function(O,N){M[N]=A(O,true)});return M}function B(O,N){var P=k(),M=P[N?0:P.length-1],Q=M.cells.length;d(f,function(S){var R;Q=0;d(S,function(U,T){if(U.real){Q+=U.colspan}if(U.elm.parentNode==M){R=1}});if(R){return false}});if(!N){O.reverse()}d(O,function(T){var S=T.cells.length,R;for(i=0;iN){N=R}if(Q>M){M=Q}if(S.real){U=S.colspan-1;T=S.rowspan-1;if(U){if(R+U>N){N=R+U}}if(T){if(Q+T>M){M=Q+T}}}}})});return{x:N,y:M}}function v(S){var P,O,U,T,N,M,Q,R;D=F(S);if(L&&D){P=Math.min(L.x,D.x);O=Math.min(L.y,D.y);U=Math.max(L.x,D.x);T=Math.max(L.y,D.y);N=U;M=T;for(y=O;y<=M;y++){S=f[y][P];if(!S.real){if(P-(S.colspan-1)N){N=x+Q}}if(R){if(y+R>M){M=y+R}}}}}G.removeClass(G.select("td.mceSelected,th.mceSelected"),"mceSelected");for(y=O;y<=M;y++){for(x=P;x<=N;x++){if(f[y][x]){G.addClass(f[y][x].elm,"mceSelected")}}}}}c.extend(this,{deleteTable:r,split:C,merge:p,insertRow:l,insertCol:g,deleteCols:n,deleteRows:m,cutRows:E,copyRows:J,pasteRows:B,getPos:F,setStartCell:w,setEndCell:v})}c.create("tinymce.plugins.TablePlugin",{init:function(f,g){var e,l,h=true;function k(o){var n=f.selection,m=f.dom.getParent(o||n.getNode(),"table");if(m){return new a(m,f.dom,n)}}function j(){f.getBody().style.webkitUserSelect="";if(h){f.dom.removeClass(f.dom.select("td.mceSelected,th.mceSelected"),"mceSelected");h=false}}d([["table","table.desc","mceInsertTable",true],["delete_table","table.del","mceTableDelete"],["delete_col","table.delete_col_desc","mceTableDeleteCol"],["delete_row","table.delete_row_desc","mceTableDeleteRow"],["col_after","table.col_after_desc","mceTableInsertColAfter"],["col_before","table.col_before_desc","mceTableInsertColBefore"],["row_after","table.row_after_desc","mceTableInsertRowAfter"],["row_before","table.row_before_desc","mceTableInsertRowBefore"],["row_props","table.row_desc","mceTableRowProps",true],["cell_props","table.cell_desc","mceTableCellProps",true],["split_cells","table.split_cells_desc","mceTableSplitCells",true],["merge_cells","table.merge_cells_desc","mceTableMergeCells",true]],function(m){f.addButton(m[0],{title:m[1],cmd:m[2],ui:m[3]})});if(!c.isIE){f.onClick.add(function(m,n){n=n.target;if(n.nodeName==="TABLE"){m.selection.select(n);m.nodeChanged()}})}f.onPreProcess.add(function(n,o){var m,p,q,s=n.dom,r;m=s.select("table",o.node);p=m.length;while(p--){q=m[p];s.setAttrib(q,"data-mce-style","");if((r=s.getAttrib(q,"width"))){s.setStyle(q,"width",r);s.setAttrib(q,"width","")}if((r=s.getAttrib(q,"height"))){s.setStyle(q,"height",r);s.setAttrib(q,"height","")}}});f.onNodeChange.add(function(o,m,r){var q;r=o.selection.getStart();q=o.dom.getParent(r,"td,th,caption");m.setActive("table",r.nodeName==="TABLE"||!!q);if(q&&q.nodeName==="CAPTION"){q=0}m.setDisabled("delete_table",!q);m.setDisabled("delete_col",!q);m.setDisabled("delete_table",!q);m.setDisabled("delete_row",!q);m.setDisabled("col_after",!q);m.setDisabled("col_before",!q);m.setDisabled("row_after",!q);m.setDisabled("row_before",!q);m.setDisabled("row_props",!q);m.setDisabled("cell_props",!q);m.setDisabled("split_cells",!q);m.setDisabled("merge_cells",!q)});f.onInit.add(function(n){var m,q,r=n.dom,o;e=n.windowManager;n.onMouseDown.add(function(s,t){if(t.button!=2){j();q=r.getParent(t.target,"td,th");m=r.getParent(q,"table")}});r.bind(n.getDoc(),"mouseover",function(w){var u,t,v=w.target;if(q&&(o||v!=q)&&(v.nodeName=="TD"||v.nodeName=="TH")){t=r.getParent(v,"table");if(t==m){if(!o){o=k(t);o.setStartCell(q);n.getBody().style.webkitUserSelect="none"}o.setEndCell(v);h=true}u=n.selection.getSel();try{if(u.removeAllRanges){u.removeAllRanges()}else{u.empty()}}catch(s){}w.preventDefault()}});n.onMouseUp.add(function(B,C){var t,v=B.selection,D,E=v.getSel(),s,w,u,A;if(q){if(o){B.getBody().style.webkitUserSelect=""}function z(F,H){var G=new c.dom.TreeWalker(F,F);do{if(F.nodeType==3&&c.trim(F.nodeValue).length!=0){if(H){t.setStart(F,0)}else{t.setEnd(F,F.nodeValue.length)}return}if(F.nodeName=="BR"){if(H){t.setStartBefore(F)}else{t.setEndBefore(F)}return}}while(F=(H?G.next():G.prev()))}D=r.select("td.mceSelected,th.mceSelected");if(D.length>0){t=r.createRng();w=D[0];A=D[D.length-1];t.setStart(w);t.setEnd(w);z(w,1);s=new c.dom.TreeWalker(w,r.getParent(D[0],"table"));do{if(w.nodeName=="TD"||w.nodeName=="TH"){if(!r.hasClass(w,"mceSelected")){break}u=w}}while(w=s.next());z(u);v.setRng(t)}B.nodeChanged();q=o=m=null}});n.onKeyUp.add(function(s,t){j()});if(n&&n.plugins.contextmenu){n.plugins.contextmenu.onContextMenu.add(function(u,s,w){var z,v=n.selection,t=v.getNode()||n.getBody();if(n.dom.getParent(w,"td")||n.dom.getParent(w,"th")||n.dom.select("td.mceSelected,th.mceSelected").length){s.removeAll();if(t.nodeName=="A"&&!n.dom.getAttrib(t,"name")){s.add({title:"advanced.link_desc",icon:"link",cmd:n.plugins.advlink?"mceAdvLink":"mceLink",ui:true});s.add({title:"advanced.unlink_desc",icon:"unlink",cmd:"UnLink"});s.addSeparator()}if(t.nodeName=="IMG"&&t.className.indexOf("mceItem")==-1){s.add({title:"advanced.image_desc",icon:"image",cmd:n.plugins.advimage?"mceAdvImage":"mceImage",ui:true});s.addSeparator()}s.add({title:"table.desc",icon:"table",cmd:"mceInsertTable",value:{action:"insert"}});s.add({title:"table.props_desc",icon:"table_props",cmd:"mceInsertTable"});s.add({title:"table.del",icon:"delete_table",cmd:"mceTableDelete"});s.addSeparator();z=s.addMenu({title:"table.cell"});z.add({title:"table.cell_desc",icon:"cell_props",cmd:"mceTableCellProps"});z.add({title:"table.split_cells_desc",icon:"split_cells",cmd:"mceTableSplitCells"});z.add({title:"table.merge_cells_desc",icon:"merge_cells",cmd:"mceTableMergeCells"});z=s.addMenu({title:"table.row"});z.add({title:"table.row_desc",icon:"row_props",cmd:"mceTableRowProps"});z.add({title:"table.row_before_desc",icon:"row_before",cmd:"mceTableInsertRowBefore"});z.add({title:"table.row_after_desc",icon:"row_after",cmd:"mceTableInsertRowAfter"});z.add({title:"table.delete_row_desc",icon:"delete_row",cmd:"mceTableDeleteRow"});z.addSeparator();z.add({title:"table.cut_row_desc",icon:"cut",cmd:"mceTableCutRow"});z.add({title:"table.copy_row_desc",icon:"copy",cmd:"mceTableCopyRow"});z.add({title:"table.paste_row_before_desc",icon:"paste",cmd:"mceTablePasteRowBefore"}).setDisabled(!l);z.add({title:"table.paste_row_after_desc",icon:"paste",cmd:"mceTablePasteRowAfter"}).setDisabled(!l);z=s.addMenu({title:"table.col"});z.add({title:"table.col_before_desc",icon:"col_before",cmd:"mceTableInsertColBefore"});z.add({title:"table.col_after_desc",icon:"col_after",cmd:"mceTableInsertColAfter"});z.add({title:"table.delete_col_desc",icon:"delete_col",cmd:"mceTableDeleteCol"})}else{s.add({title:"table.desc",icon:"table",cmd:"mceInsertTable"})}})}if(!c.isIE){function p(){var s;for(s=n.getBody().lastChild;s&&s.nodeType==3&&!s.nodeValue.length;s=s.previousSibling){}if(s&&s.nodeName=="TABLE"){n.dom.add(n.getBody(),"p",null,'
')}}if(c.isGecko){n.onKeyDown.add(function(t,v){var s,u,w=t.dom;if(v.keyCode==37||v.keyCode==38){s=t.selection.getRng();u=w.getParent(s.startContainer,"table");if(u&&t.getBody().firstChild==u){if(b(s,u)){s=w.createRng();s.setStartBefore(u);s.setEndBefore(u);t.selection.setRng(s);v.preventDefault()}}}})}n.onKeyUp.add(p);n.onSetContent.add(p);n.onVisualAid.add(p);n.onPreProcess.add(function(s,u){var t=u.node.lastChild;if(t&&t.childNodes.length==1&&t.firstChild.nodeName=="BR"){s.dom.remove(t)}});p()}});d({mceTableSplitCells:function(m){m.split()},mceTableMergeCells:function(n){var o,p,m;m=f.dom.getParent(f.selection.getNode(),"th,td");if(m){o=m.rowSpan;p=m.colSpan}if(!f.dom.select("td.mceSelected,th.mceSelected").length){e.open({url:g+"/merge_cells.htm",width:240+parseInt(f.getLang("table.merge_cells_delta_width",0)),height:110+parseInt(f.getLang("table.merge_cells_delta_height",0)),inline:1},{rows:o,cols:p,onaction:function(q){n.merge(m,q.cols,q.rows)},plugin_url:g})}else{n.merge()}},mceTableInsertRowBefore:function(m){m.insertRow(true)},mceTableInsertRowAfter:function(m){m.insertRow()},mceTableInsertColBefore:function(m){m.insertCol(true)},mceTableInsertColAfter:function(m){m.insertCol()},mceTableDeleteCol:function(m){m.deleteCols()},mceTableDeleteRow:function(m){m.deleteRows()},mceTableCutRow:function(m){l=m.cutRows()},mceTableCopyRow:function(m){l=m.copyRows()},mceTablePasteRowBefore:function(m){m.pasteRows(l,true)},mceTablePasteRowAfter:function(m){m.pasteRows(l)},mceTableDelete:function(m){m.deleteTable()}},function(n,m){f.addCommand(m,function(){var o=k();if(o){n(o);f.execCommand("mceRepaint");j()}})});d({mceInsertTable:function(m){e.open({url:g+"/table.htm",width:400+parseInt(f.getLang("table.table_delta_width",0)),height:320+parseInt(f.getLang("table.table_delta_height",0)),inline:1},{plugin_url:g,action:m?m.action:0})},mceTableRowProps:function(){e.open({url:g+"/row.htm",width:400+parseInt(f.getLang("table.rowprops_delta_width",0)),height:295+parseInt(f.getLang("table.rowprops_delta_height",0)),inline:1},{plugin_url:g})},mceTableCellProps:function(){e.open({url:g+"/cell.htm",width:400+parseInt(f.getLang("table.cellprops_delta_width",0)),height:295+parseInt(f.getLang("table.cellprops_delta_height",0)),inline:1},{plugin_url:g})}},function(n,m){f.addCommand(m,function(o,p){n(p)})})}});c.PluginManager.add("table",c.plugins.TablePlugin)})(tinymce); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/table/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/table/editor_plugin_src.js index c2f307f045..5b9b53d8e6 100644 --- a/plugins/TinyMCE/js/plugins/table/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/table/editor_plugin_src.js @@ -11,6 +11,20 @@ (function(tinymce) { var each = tinymce.each; + // Checks if the selection/caret is at the start of the specified block element + function isAtStart(rng, par) { + var doc = par.ownerDocument, rng2 = doc.createRange(), elm; + + rng2.setStartBefore(par); + rng2.setEnd(rng.endContainer, rng.endOffset); + + elm = doc.createElement('body'); + elm.appendChild(rng2.cloneContents()); + + // Check for text characters of other elements that should be treated as content + return elm.innerHTML.replace(/<(br|img|object|embed|input|textarea)[^>]*>/gi, '-').replace(/<[^>]+>/g, '').length == 0; + }; + /** * Table Grid class. */ @@ -38,12 +52,12 @@ grid = []; each(['thead', 'tbody', 'tfoot'], function(part) { - var rows = dom.select(part + ' tr', table); + var rows = dom.select('> ' + part + ' tr', table); each(rows, function(tr, y) { y += startY; - each(dom.select('td,th', tr), function(td, x) { + each(dom.select('> td, > th', tr), function(td, x) { var x2, y2, rowspan, colspan; // Skip over existing cells produced by rowspan @@ -90,8 +104,19 @@ return parseInt(td.getAttribute(name) || 1); }; + function setSpanVal(td, name, val) { + if (td) { + val = parseInt(val); + + if (val === 1) + td.removeAttribute(name, 1); + else + td.setAttribute(name, val, 1); + } + } + function isCellSelected(cell) { - return dom.hasClass(cell.elm, 'mceSelected') || cell == selectedCell; + return cell && (dom.hasClass(cell.elm, 'mceSelected') || cell == selectedCell); }; function getSelectedRows() { @@ -141,20 +166,21 @@ // Add something to the inner node if (curNode) - curNode.innerHTML = tinymce.isIE ? ' ' : '
'; + curNode.innerHTML = tinymce.isIE ? ' ' : '
'; return false; } }, 'childNodes'); cell = cloneNode(cell, false); - cell.rowSpan = cell.colSpan = 1; + setSpanVal(cell, 'rowSpan', 1); + setSpanVal(cell, 'colSpan', 1); if (formatNode) { cell.appendChild(formatNode); } else { if (!tinymce.isIE) - cell.innerHTML = '
'; + cell.innerHTML = '
'; } return cell; @@ -236,7 +262,8 @@ rowSpan = getSpanVal(cell, 'rowspan'); if (colSpan > 1 || rowSpan > 1) { - cell.colSpan = cell.rowSpan = 1; + setSpanVal(cell, 'rowSpan', 1); + setSpanVal(cell, 'colSpan', 1); // Insert cells right for (i = 0; i < colSpan - 1; i++) @@ -250,7 +277,7 @@ }; function merge(cell, cols, rows) { - var startX, startY, endX, endY, x, y, startCell, endCell, cell, children; + var startX, startY, endX, endY, x, y, startCell, endCell, cell, children, count; // Use specified cell and cols/rows if (cell) { @@ -279,23 +306,34 @@ // Set row/col span to start cell startCell = getCell(startX, startY).elm; - startCell.colSpan = (endX - startX) + 1; - startCell.rowSpan = (endY - startY) + 1; + setSpanVal(startCell, 'colSpan', (endX - startX) + 1); + setSpanVal(startCell, 'rowSpan', (endY - startY) + 1); // Remove other cells and add it's contents to the start cell for (y = startY; y <= endY; y++) { for (x = startX; x <= endX; x++) { + if (!grid[y] || !grid[y][x]) + continue; + cell = grid[y][x].elm; if (cell != startCell) { // Move children to startCell children = tinymce.grep(cell.childNodes); - each(children, function(node, i) { - // Jump over last BR element - if (node.nodeName != 'BR' || i != children.length - 1) - startCell.appendChild(node); + each(children, function(node) { + startCell.appendChild(node); }); + // Remove bogus nodes if there is children in the target cell + if (children.length) { + children = tinymce.grep(startCell.childNodes); + count = 0; + each(children, function(node) { + if (node.nodeName == 'BR' && dom.getAttrib(node, 'data-mce-bogus') && count++ < children.length - 1) + startCell.removeChild(node); + }); + } + // Remove cell dom.remove(cell); } @@ -308,7 +346,7 @@ }; function insertRow(before) { - var posY, cell, lastCell, x, rowElm, newRow, newCell, otherCell; + var posY, cell, lastCell, x, rowElm, newRow, newCell, otherCell, rowSpan; // Find first/last row each(grid, function(row, y) { @@ -329,30 +367,35 @@ }); for (x = 0; x < grid[0].length; x++) { + // Cell not found could be because of an invalid table structure + if (!grid[posY][x]) + continue; + cell = grid[posY][x].elm; if (cell != lastCell) { if (!before) { rowSpan = getSpanVal(cell, 'rowspan'); if (rowSpan > 1) { - cell.rowSpan = rowSpan + 1; + setSpanVal(cell, 'rowSpan', rowSpan + 1); continue; } } else { // Check if cell above can be expanded if (posY > 0 && grid[posY - 1][x]) { otherCell = grid[posY - 1][x].elm; - rowSpan = getSpanVal(otherCell, 'rowspan'); + rowSpan = getSpanVal(otherCell, 'rowSpan'); if (rowSpan > 1) { - otherCell.rowSpan = rowSpan + 1; + setSpanVal(otherCell, 'rowSpan', rowSpan + 1); continue; } } } // Insert new cell into new row - newCell = cloneCell(cell) - newCell.colSpan = cell.colSpan; + newCell = cloneCell(cell); + setSpanVal(newCell, 'colSpan', cell.colSpan); + newRow.appendChild(newCell); lastCell = cell; @@ -386,8 +429,12 @@ }); each(grid, function(row, y) { - var cell = row[posX].elm, rowSpan, colSpan; + var cell, rowSpan, colSpan; + if (!row[posX]) + return; + + cell = row[posX].elm; if (cell != lastCell) { colSpan = getSpanVal(cell, 'colspan'); rowSpan = getSpanVal(cell, 'rowspan'); @@ -401,7 +448,7 @@ fillLeftDown(posX, y, rowSpan - 1, colSpan); } } else - cell.colSpan++; + setSpanVal(cell, 'colSpan', cell.colSpan + 1); lastCell = cell; } @@ -418,10 +465,10 @@ each(grid, function(row) { var cell = row[x].elm, colSpan; - colSpan = getSpanVal(cell, 'colspan'); + colSpan = getSpanVal(cell, 'colSpan'); if (colSpan > 1) - cell.colSpan = colSpan - 1; + setSpanVal(cell, 'colSpan', colSpan - 1); else dom.remove(cell); }); @@ -444,10 +491,10 @@ // Move down row spanned cells each(tr.cells, function(cell) { - var rowSpan = getSpanVal(cell, 'rowspan'); + var rowSpan = getSpanVal(cell, 'rowSpan'); if (rowSpan > 1) { - cell.rowSpan = rowSpan - 1; + setSpanVal(cell, 'rowSpan', rowSpan - 1); pos = getPos(cell); fillLeftDown(pos.x, pos.y, 1, 1); } @@ -461,12 +508,12 @@ cell = cell.elm; if (cell != lastCell) { - rowSpan = getSpanVal(cell, 'rowspan'); + rowSpan = getSpanVal(cell, 'rowSpan'); if (rowSpan <= 1) dom.remove(cell); else - cell.rowSpan = rowSpan - 1; + setSpanVal(cell, 'rowSpan', rowSpan - 1); lastCell = cell; } @@ -534,7 +581,8 @@ // Remove col/rowspans for (i = 0; i < cellCount; i++) { cell = row.cells[i]; - cell.colSpan = cell.rowSpan = 1; + setSpanVal(cell, 'colSpan', 1); + setSpanVal(cell, 'rowSpan', 1); } // Needs more cells @@ -676,8 +724,10 @@ // Add new selection for (y = startY; y <= maxY; y++) { - for (x = startX; x <= maxX; x++) - dom.addClass(grid[y][x].elm, 'mceSelected'); + for (x = startX; x <= maxX; x++) { + if (grid[y][x]) + dom.addClass(grid[y][x].elm, 'mceSelected'); + } } } }; @@ -702,7 +752,7 @@ tinymce.create('tinymce.plugins.TablePlugin', { init : function(ed, url) { - var winMan, clipboardRows; + var winMan, clipboardRows, hasCellSelection = true; // Might be selected cells on reload function createTableGrid(node) { var selection = ed.selection, tblElm = ed.dom.getParent(node || selection.getNode(), 'table'); @@ -714,7 +764,11 @@ function cleanup() { // Restore selection possibilities ed.getBody().style.webkitUserSelect = ''; - ed.dom.removeClass(ed.dom.select('td.mceSelected,th.mceSelected'), 'mceSelected'); + + if (hasCellSelection) { + ed.dom.removeClass(ed.dom.select('td.mceSelected,th.mceSelected'), 'mceSelected'); + hasCellSelection = false; + } }; // Register buttons @@ -740,11 +794,34 @@ ed.onClick.add(function(ed, e) { e = e.target; - if (e.nodeName === 'TABLE') + if (e.nodeName === 'TABLE') { ed.selection.select(e); + ed.nodeChanged(); + } }); } + ed.onPreProcess.add(function(ed, args) { + var nodes, i, node, dom = ed.dom, value; + + nodes = dom.select('table', args.node); + i = nodes.length; + while (i--) { + node = nodes[i]; + dom.setAttrib(node, 'data-mce-style', ''); + + if ((value = dom.getAttrib(node, 'width'))) { + dom.setStyle(node, 'width', value); + dom.setAttrib(node, 'width', ''); + } + + if ((value = dom.getAttrib(node, 'height'))) { + dom.setStyle(node, 'height', value); + dom.setAttrib(node, 'height', ''); + } + } + }); + // Handle node change updates ed.onNodeChange.add(function(ed, cm, n) { var p; @@ -800,15 +877,20 @@ } tableGrid.setEndCell(target); + hasCellSelection = true; } // Remove current selection sel = ed.selection.getSel(); - if (sel.removeAllRanges) - sel.removeAllRanges(); - else - sel.empty(); + try { + if (sel.removeAllRanges) + sel.removeAllRanges(); + else + sel.empty(); + } catch (ex) { + // IE9 might throw errors here + } e.preventDefault(); } @@ -854,6 +936,8 @@ rng = dom.createRng(); node = selectedCells[0]; endNode = selectedCells[selectedCells.length - 1]; + rng.setStart(node); + rng.setEnd(node); setPoint(node, 1); walker = new tinymce.dom.TreeWalker(node, dom.getParent(selectedCells[0], 'table')); diff --git a/plugins/TinyMCE/js/plugins/table/js/cell.js b/plugins/TinyMCE/js/plugins/table/js/cell.js index b5fc1fda3d..d6f3290599 100644 --- a/plugins/TinyMCE/js/plugins/table/js/cell.js +++ b/plugins/TinyMCE/js/plugins/table/js/cell.js @@ -63,6 +63,11 @@ function init() { function updateAction() { var el, inst = ed, tdElm, trElm, tableElm, formObj = document.forms[0]; + if (!AutoValidator.validate(formObj)) { + tinyMCEPopup.alert(AutoValidator.getErrorMessages(formObj).join('. ') + '.'); + return false; + } + tinyMCEPopup.restoreSelection(); el = ed.selection.getStart(); tdElm = ed.dom.getParent(el, "td,th"); @@ -83,8 +88,6 @@ function updateAction() { return; } - ed.execCommand('mceBeginUndoLevel'); - switch (getSelectValue(formObj, 'action')) { case "cell": var celltype = getSelectValue(formObj, 'celltype'); @@ -125,6 +128,36 @@ function updateAction() { break; + case "col": + var curr, col = 0, cell = trElm.firstChild, rows = tableElm.getElementsByTagName("tr"); + + if (cell.nodeName != "TD" && cell.nodeName != "TH") + cell = nextCell(cell); + + do { + if (cell == tdElm) + break; + col += cell.getAttribute("colspan"); + } while ((cell = nextCell(cell)) != null); + + for (var i=0; i - +
{#table_dlg.merge_cells_title} -
 
- - - - - - - - -
{#table_dlg.cols}:
{#table_dlg.rows}:
+ + + + + + + + + +
:
:
diff --git a/plugins/TinyMCE/js/plugins/table/row.htm b/plugins/TinyMCE/js/plugins/table/row.htm index 092e6c8270..1885401f6b 100644 --- a/plugins/TinyMCE/js/plugins/table/row.htm +++ b/plugins/TinyMCE/js/plugins/table/row.htm @@ -5,16 +5,17 @@ + - + @@ -23,7 +24,7 @@
{#table_dlg.general_props} - +
- +
@@ -70,7 +71,7 @@
@@ -80,7 +81,7 @@
{#table_dlg.advanced_props} - +
@@ -112,7 +113,7 @@
- +
@@ -122,14 +123,16 @@ - +
 
- + +
 
+
diff --git a/plugins/TinyMCE/js/plugins/table/table.htm b/plugins/TinyMCE/js/plugins/table/table.htm index f269039228..09d3700f77 100644 --- a/plugins/TinyMCE/js/plugins/table/table.htm +++ b/plugins/TinyMCE/js/plugins/table/table.htm @@ -10,12 +10,13 @@ - + + @@ -23,48 +24,48 @@
{#table_dlg.general_props} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
@@ -72,7 +73,7 @@
{#table_dlg.advanced_props} - +
@@ -98,7 +99,7 @@ "}else{e+=""}if(f&&j.ListBox){if(f.Button||f.SplitButton){e+=b.createHTML("td",{"class":"mceToolbarStart"},b.createHTML("span",null,""))}}}g="mceToolbarEnd";if(j.Button){g+=" mceToolbarEndButton"}else{if(j.SplitButton){g+=" mceToolbarEndSplitButton"}else{if(j.ListBox){g+=" mceToolbarEndListBox"}}}e+=b.createHTML("td",{"class":g},b.createHTML("span",null,""));return b.createHTML("table",{id:l.id,"class":"mceToolbar"+(m["class"]?" "+m["class"]:""),cellpadding:"0",cellspacing:"0",align:l.settings.align||""},""+e+"")}});(function(b){var a=b.util.Dispatcher,c=b.each;b.create("tinymce.AddOnManager",{items:[],urls:{},lookup:{},onAdd:new a(this),get:function(d){return this.lookup[d]},requireLangPack:function(e){var d=b.settings;if(d&&d.language){b.ScriptLoader.add(this.urls[e]+"/langs/"+d.language+".js")}},add:function(e,d){this.items.push(d);this.lookup[e]=d;this.onAdd.dispatch(this,e,d);return d},load:function(h,e,d,g){var f=this;if(f.urls[h]){return}if(e.indexOf("/")!=0&&e.indexOf("://")==-1){e=b.baseURL+"/"+e}f.urls[h]=e.substring(0,e.lastIndexOf("/"));b.ScriptLoader.add(e,d,g)}});b.PluginManager=new b.AddOnManager();b.ThemeManager=new b.AddOnManager()}(tinymce));(function(j){var g=j.each,d=j.extend,k=j.DOM,i=j.dom.Event,f=j.ThemeManager,b=j.PluginManager,e=j.explode,h=j.util.Dispatcher,a,c=0;j.documentBaseURL=window.location.href.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,"");if(!/[\/\\]$/.test(j.documentBaseURL)){j.documentBaseURL+="/"}j.baseURL=new j.util.URI(j.documentBaseURL).toAbsolute(j.baseURL);j.baseURI=new j.util.URI(j.baseURL);j.onBeforeUnload=new h(j);i.add(window,"beforeunload",function(l){j.onBeforeUnload.dispatch(j,l)});j.onAddEditor=new h(j);j.onRemoveEditor=new h(j);j.EditorManager=d(j,{editors:[],i18n:{},activeEditor:null,init:function(q){var n=this,p,l=j.ScriptLoader,u,o=[],m;function r(x,y,t){var v=x[y];if(!v){return}if(j.is(v,"string")){t=v.replace(/\.\w+$/,"");t=t?j.resolve(t):0;v=j.resolve(v)}return v.apply(t||this,Array.prototype.slice.call(arguments,2))}q=d({theme:"simple",language:"en"},q);n.settings=q;i.add(document,"init",function(){var s,v;r(q,"onpageload");switch(q.mode){case"exact":s=q.elements||"";if(s.length>0){g(e(s),function(x){if(k.get(x)){m=new j.Editor(x,q);o.push(m);m.render(1)}else{g(document.forms,function(y){g(y.elements,function(z){if(z.name===x){x="mce_editor_"+c++;k.setAttrib(z,"id",x);m=new j.Editor(x,q);o.push(m);m.render(1)}})})}})}break;case"textareas":case"specific_textareas":function t(y,x){return x.constructor===RegExp?x.test(y.className):k.hasClass(y,x)}g(k.select("textarea"),function(x){if(q.editor_deselector&&t(x,q.editor_deselector)){return}if(!q.editor_selector||t(x,q.editor_selector)){u=k.get(x.name);if(!x.id&&!u){x.id=x.name}if(!x.id||n.get(x.id)){x.id=k.uniqueId()}m=new j.Editor(x.id,q);o.push(m);m.render(1)}});break}if(q.oninit){s=v=0;g(o,function(x){v++;if(!x.initialized){x.onInit.add(function(){s++;if(s==v){r(q,"oninit")}})}else{s++}if(s==v){r(q,"oninit")}})}})},get:function(l){if(l===a){return this.editors}return this.editors[l]},getInstanceById:function(l){return this.get(l)},add:function(m){var l=this,n=l.editors;n[m.id]=m;n.push(m);l._setActive(m);l.onAddEditor.dispatch(l,m);if(j.adapter){j.adapter.patchEditor(m)}return m},remove:function(n){var m=this,l,o=m.editors;if(!o[n.id]){return null}delete o[n.id];for(l=0;l':"",visual_table_class:"mceItemTable",visual:1,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",apply_source_formatting:1,directionality:"ltr",forced_root_block:"p",valid_elements:"@[id|class|style|title|dir';if(F.document_base_url!=m.documentBaseURL){E.iframeHTML+=''}E.iframeHTML+='';if(m.relaxedDomain){E.iframeHTML+=''; + t.iframeHTML += ''; + + // Firefox 2 doesn't load stylesheets correctly this way + if (!isGecko || !/Firefox\/2/.test(navigator.userAgent)) { + for (i = 0; i < t.contentCSS.length; i++) + t.iframeHTML += ''; + + t.contentCSS = []; + } bi = s.body_id || 'tinymce'; if (bi.indexOf('=') != -1) { @@ -8679,19 +11219,19 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { t.iframeHTML += ''; // Domain relaxing enabled, then set document domain - if (tinymce.relaxedDomain) { + if (tinymce.relaxedDomain && (isIE || (tinymce.isOpera && parseFloat(opera.version()) < 11))) { // We need to write the contents here in IE since multiple writes messes up refresh button and back button - if (isIE || (tinymce.isOpera && parseFloat(opera.version()) >= 9.5)) - u = 'javascript:(function(){document.open();document.domain="' + document.domain + '";var ed = window.parent.tinyMCE.get("' + t.id + '");document.write(ed.iframeHTML);document.close();ed.setupIframe();})()'; - else if (tinymce.isOpera) - u = 'javascript:(function(){document.open();document.domain="' + document.domain + '";document.close();ed.setupIframe();})()'; + u = 'javascript:(function(){document.open();document.domain="' + document.domain + '";var ed = window.parent.tinyMCE.get("' + t.id + '");document.write(ed.iframeHTML);document.close();ed.setupIframe();})()'; } // Create iframe - n = DOM.add(o.iframeContainer, 'iframe', { + // TODO: ACC add the appropriate description on this. + n = DOM.add(o.iframeContainer, 'iframe', { id : t.id + "_ifr", src : u || 'javascript:""', // Workaround for HTTPS warning in IE6/7 frameBorder : '0', + allowTransparency : "true", + title : s.aria_label, style : { width : '100%', height : h @@ -8701,45 +11241,78 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { t.contentAreaContainer = o.iframeContainer; DOM.get(o.editorContainer).style.display = t.orgDisplay; DOM.get(t.id).style.display = 'none'; + DOM.setAttrib(t.id, 'aria-hidden', true); - if (!isIE || !tinymce.relaxedDomain) + if (!tinymce.relaxedDomain || !u) t.setupIframe(); e = n = o = null; // Cleanup }, - setupIframe : function() { + setupIframe : function(filled) { var t = this, s = t.settings, e = DOM.get(t.id), d = t.getDoc(), h, b; // Setup iframe body - if (!isIE || !tinymce.relaxedDomain) { + if ((!isIE || !tinymce.relaxedDomain) && !filled) { + // We need to wait for the load event on Gecko + if (isGecko && !s.readonly) { + t.getWin().onload = function() { + window.setTimeout(function() { + var b = t.getBody(), undef; + + // Editable element needs to have some contents or backspace/delete won't work properly for some odd reason on FF 3.6 or older + b.innerHTML = '
'; + + // Check if Gecko supports contentEditable mode FF2 doesn't + if (b.contentEditable !== undef) { + // Setting the contentEditable off/on seems to force caret mode in the editor and enabled auto focus + b.contentEditable = false; + b.contentEditable = true; + + // Caret doesn't get rendered when you mousedown on the HTML element on FF 3.x + t.onMouseDown.add(function(ed, e) { + if (e.target.nodeName === "HTML") { + d.designMode = 'on'; // Render the caret + + // Remove design mode again after a while so it has some time to execute + window.setTimeout(function() { + d.designMode = 'off'; + t.getBody().focus(); + }, 1); + } + }); + } else + d.designMode = 'on'; + + // Call setup frame once the contentEditable/designMode has been initialized + // since the caret won't be rendered some times otherwise. + t.setupIframe(true); + }, 1); + }; + } + d.open(); d.write(t.iframeHTML); d.close(); + + if (tinymce.relaxedDomain) + d.domain = tinymce.relaxedDomain; + + // Wait for iframe onload event on Gecko + if (isGecko && !s.readonly) + return; } - // Design mode needs to be added here Ctrl+A will fail otherwise - if (!isIE) { - try { - if (!s.readonly) - d.designMode = 'On'; - } catch (ex) { - // Will fail on Gecko if the editor is placed in an hidden container element - // The design mode will be set ones the editor is focused - } - } + // It will not steal focus while setting contentEditable + b = t.getBody(); + b.disabled = true; - // IE needs to use contentEditable or it will display non secure items for HTTPS - if (isIE) { - // It will not steal focus if we hide it while setting contentEditable - b = t.getBody(); - DOM.hide(b); + if (!isGecko && !s.readonly) + b.contentEditable = true; - if (!s.readonly) - b.contentEditable = true; + b.disabled = false; - DOM.show(b); - } + t.schema = new tinymce.html.Schema(s); t.dom = new tinymce.dom.DOMUtils(t.getDoc(), { keep_values : true, @@ -8749,16 +11322,83 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { class_filter : s.class_filter, update_styles : 1, fix_ie_paragraphs : 1, - valid_styles : s.valid_styles + schema : t.schema }); - t.schema = new tinymce.dom.Schema(); + t.parser = new tinymce.html.DomParser(s, t.schema); - t.serializer = new tinymce.dom.Serializer(extend(s, { - valid_elements : s.verify_html === false ? '*[*]' : s.valid_elements, - dom : t.dom, - schema : t.schema - })); + // Force anchor names closed, unless the setting "allow_html_in_named_anchor" is explicitly included. + if (!t.settings.allow_html_in_named_anchor) { + t.parser.addAttributeFilter('name', function(nodes, name) { + var i = nodes.length, sibling, prevSibling, parent, node; + + while (i--) { + node = nodes[i]; + if (node.name === 'a' && node.firstChild) { + parent = node.parent; + + // Move children after current node + sibling = node.lastChild; + do { + prevSibling = sibling.prev; + parent.insert(sibling, node); + sibling = prevSibling; + } while (sibling); + } + } + }); + } + + // Convert src and href into data-mce-src, data-mce-href and data-mce-style + t.parser.addAttributeFilter('src,href,style', function(nodes, name) { + var i = nodes.length, node, dom = t.dom, value, internalName; + + while (i--) { + node = nodes[i]; + value = node.attr(name); + internalName = 'data-mce-' + name; + + // Add internal attribute if we need to we don't on a refresh of the document + if (!node.attributes.map[internalName]) { + if (name === "style") + node.attr(internalName, dom.serializeStyle(dom.parseStyle(value), node.name)); + else + node.attr(internalName, t.convertURL(value, name, node.name)); + } + } + }); + + // Keep scripts from executing + t.parser.addNodeFilter('script', function(nodes, name) { + var i = nodes.length; + + while (i--) + nodes[i].attr('type', 'mce-text/javascript'); + }); + + t.parser.addNodeFilter('#cdata', function(nodes, name) { + var i = nodes.length, node; + + while (i--) { + node = nodes[i]; + node.type = 8; + node.name = '#comment'; + node.value = '[CDATA[' + node.value + ']]'; + } + }); + + t.parser.addNodeFilter('p,h1,h2,h3,h4,h5,h6,div', function(nodes, name) { + var i = nodes.length, node, nonEmptyElements = t.schema.getNonEmptyElements(); + + while (i--) { + node = nodes[i]; + + if (node.isEmpty(nonEmptyElements)) + node.empty().append(new tinymce.html.Node('br', 1)).shortEnded = true; + } + }); + + t.serializer = new tinymce.dom.Serializer(s, t.dom, t.schema); t.selection = new tinymce.dom.Selection(t.dom, t.getWin(), t.serializer); @@ -8768,18 +11408,18 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { t.formatter.register({ alignleft : [ {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'left'}}, - {selector : 'img,table', styles : {'float' : 'left'}} + {selector : 'img,table', collapsed : false, styles : {'float' : 'left'}} ], aligncenter : [ {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'center'}}, - {selector : 'img', styles : {display : 'block', marginLeft : 'auto', marginRight : 'auto'}}, - {selector : 'table', styles : {marginLeft : 'auto', marginRight : 'auto'}} + {selector : 'img', collapsed : false, styles : {display : 'block', marginLeft : 'auto', marginRight : 'auto'}}, + {selector : 'table', collapsed : false, styles : {marginLeft : 'auto', marginRight : 'auto'}} ], alignright : [ {selector : 'p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li', styles : {textAlign : 'right'}}, - {selector : 'img,table', styles : {'float' : 'right'}} + {selector : 'img,table', collapsed : false, styles : {'float' : 'right'}} ], alignfull : [ @@ -8787,33 +11427,35 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { ], bold : [ - {inline : 'strong'}, + {inline : 'strong', remove : 'all'}, {inline : 'span', styles : {fontWeight : 'bold'}}, - {inline : 'b'} + {inline : 'b', remove : 'all'} ], italic : [ - {inline : 'em'}, + {inline : 'em', remove : 'all'}, {inline : 'span', styles : {fontStyle : 'italic'}}, - {inline : 'i'} + {inline : 'i', remove : 'all'} ], underline : [ {inline : 'span', styles : {textDecoration : 'underline'}, exact : true}, - {inline : 'u'} + {inline : 'u', remove : 'all'} ], strikethrough : [ {inline : 'span', styles : {textDecoration : 'line-through'}, exact : true}, - {inline : 'u'} + {inline : 'strike', remove : 'all'} ], - forecolor : {inline : 'span', styles : {color : '%value'}}, - hilitecolor : {inline : 'span', styles : {backgroundColor : '%value'}}, + forecolor : {inline : 'span', styles : {color : '%value'}, wrap_links : false}, + hilitecolor : {inline : 'span', styles : {backgroundColor : '%value'}, wrap_links : false}, fontname : {inline : 'span', styles : {fontFamily : '%value'}}, fontsize : {inline : 'span', styles : {fontSize : '%value'}}, fontsize_class : {inline : 'span', attributes : {'class' : '%value'}}, blockquote : {block : 'blockquote', wrapper : 1, remove : 'all'}, + subscript : {inline : 'sub'}, + superscript : {inline : 'sup'}, removeformat : [ {selector : 'b,strong,em,i,font,u,strike', remove : 'all', split : true, expand : false, block_expand : true, deep : true}, @@ -8834,7 +11476,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Pass through t.undoManager.onAdd.add(function(um, l) { - if (!l.initial) + if (um.hasUndo()) return t.onChange.dispatch(t, l, um); }); @@ -8878,29 +11520,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (s.nowrap) t.getBody().style.whiteSpace = "nowrap"; - if (s.custom_elements) { - function handleCustom(ed, o) { - each(explode(s.custom_elements), function(v) { - var n; - - if (v.indexOf('~') === 0) { - v = v.substring(1); - n = 'span'; - } else - n = 'div'; - - o.content = o.content.replace(new RegExp('<(' + v + ')([^>]*)>', 'g'), '<' + n + ' _mce_name="$1"$2>'); - o.content = o.content.replace(new RegExp('', 'g'), ''); - }); - }; - - t.onBeforeSetContent.add(handleCustom); - t.onPostProcess.add(function(ed, o) { - if (o.set) - handleCustom(ed, o); - }); - } - if (s.handle_node_change_callback) { t.onNodeChange.add(function(ed, cm, n) { t.execCallback('handle_node_change_callback', t.id, n, -1, -1, true, t.selection.isCollapsed()); @@ -8922,6 +11541,18 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }); } + if (s.protect) { + t.onBeforeSetContent.add(function(ed, o) { + if (s.protect) { + each(s.protect, function(pattern) { + o.content = o.content.replace(pattern, function(str) { + return ''; + }); + }); + } + }); + } + if (s.convert_newlines_to_brs) { t.onBeforeSetContent.add(function(ed, o) { if (o.initial) @@ -8929,12 +11560,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }); } - if (s.fix_nesting && isIE) { - t.onBeforeSetContent.add(function(ed, o) { - o.content = t._fixNesting(o.content); - }); - } - if (s.preformatted) { t.onPostProcess.add(function(ed, o) { o.content = o.content.replace(/^\s*/, ''); @@ -9028,7 +11653,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { var pn = n.parentNode; if (ed.dom.isBlock(pn) && pn.lastChild === n) - ed.dom.add(pn, 'br', {'_mce_bogus' : 1}); + ed.dom.add(pn, 'br', {'data-mce-bogus' : 1}); }); }; @@ -9038,54 +11663,36 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }); t.onSetContent.add(t.selection.onSetContent.add(fixLinks)); - - if (!s.readonly) { - try { - // Design mode must be set here once again to fix a bug where - // Ctrl+A/Delete/Backspace didn't work if the editor was added using mceAddControl then removed then added again - d.designMode = 'Off'; - d.designMode = 'On'; - } catch (ex) { - // Will fail on Gecko if the editor is placed in an hidden container element - // The design mode will be set ones the editor is focused - } - } } - // A small timeout was needed since firefox will remove. Bug: #1838304 - setTimeout(function () { - if (t.removed) - return; + t.load({initial : true, format : 'html'}); + t.startContent = t.getContent({format : 'raw'}); + t.undoManager.add(); + t.initialized = true; - t.load({initial : true, format : (s.cleanup_on_startup ? 'html' : 'raw')}); - t.startContent = t.getContent({format : 'raw'}); - t.initialized = true; + t.onInit.dispatch(t); + t.execCallback('setupcontent_callback', t.id, t.getBody(), t.getDoc()); + t.execCallback('init_instance_callback', t); + t.focus(true); + t.nodeChanged({initial : 1}); - t.onInit.dispatch(t); - t.execCallback('setupcontent_callback', t.id, t.getBody(), t.getDoc()); - t.execCallback('init_instance_callback', t); - t.focus(true); - t.nodeChanged({initial : 1}); + // Load specified content CSS last + each(t.contentCSS, function(u) { + t.dom.loadCSS(u); + }); - // Load specified content CSS last - if (s.content_css) { - tinymce.each(explode(s.content_css), function(u) { - t.dom.loadCSS(t.documentBaseURI.toAbsolute(u)); - }); - } + // Handle auto focus + if (s.auto_focus) { + setTimeout(function () { + var ed = tinymce.get(s.auto_focus); - // Handle auto focus - if (s.auto_focus) { - setTimeout(function () { - var ed = tinymce.get(s.auto_focus); + ed.selection.select(ed.getBody(), 1); + ed.selection.collapse(1); + ed.getBody().focus(); + ed.getWin().focus(); + }, 100); + } - ed.selection.select(ed.getBody(), 1); - ed.selection.collapse(1); - ed.getWin().focus(); - }, 100); - } - }, 1); - e = null; }, @@ -9188,7 +11795,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }, nodeChanged : function(o) { - var t = this, s = t.selection, n = (isIE ? s.getNode() : s.getStart()) || t.getBody(); + var t = this, s = t.selection, n = s.getStart() || t.getBody(); // Fix for bug #1896577 it seems that this can not be fired while the editor is loading if (t.initialized) { @@ -9221,16 +11828,16 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { t.buttons[n] = s; }, - addCommand : function(n, f, s) { - this.execCommands[n] = {func : f, scope : s || this}; + addCommand : function(name, callback, scope) { + this.execCommands[name] = {func : callback, scope : scope || this}; }, - addQueryStateHandler : function(n, f, s) { - this.queryStateCommands[n] = {func : f, scope : s || this}; + addQueryStateHandler : function(name, callback, scope) { + this.queryStateCommands[name] = {func : callback, scope : scope || this}; }, - addQueryValueHandler : function(n, f, s) { - this.queryValueCommands[n] = {func : f, scope : s || this}; + addQueryValueHandler : function(name, callback, scope) { + this.queryValueCommands[name] = {func : callback, scope : scope || this}; }, addShortcut : function(pa, desc, cmd_func, sc) { @@ -9333,12 +11940,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return true; } - // Execute global commands - if (tinymce.GlobalCommands.execCommand(t, cmd, ui, val)) { - t.onExecCommand.dispatch(t, cmd, ui, val, a); - return true; - } - // Editor commands if (t.editorCommands.execCommand(cmd, ui, val)) { t.onExecCommand.dispatch(t, cmd, ui, val, a); @@ -9470,7 +12071,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Add undo level will trigger onchange event if (!o.no_events) { - t.undoManager.typing = 0; + t.undoManager.typing = false; t.undoManager.add(); } @@ -9502,66 +12103,85 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return h; }, - setContent : function(h, o) { - var t = this; + setContent : function(content, args) { + var self = this, rootNode, body = self.getBody(), forcedRootBlockName; - o = o || {}; - o.format = o.format || 'html'; - o.set = true; - o.content = h; + // Setup args object + args = args || {}; + args.format = args.format || 'html'; + args.set = true; + args.content = content; - if (!o.no_events) - t.onBeforeSetContent.dispatch(t, o); + // Do preprocessing + if (!args.no_events) + self.onBeforeSetContent.dispatch(self, args); + + content = args.content; // Padd empty content in Gecko and Safari. Commands will otherwise fail on the content // It will also be impossible to place the caret in the editor unless there is a BR element present - if (!tinymce.isIE && (h.length === 0 || /^\s+$/.test(h))) { - o.content = t.dom.setHTML(t.getBody(), '
'); - o.format = 'raw'; + if (!tinymce.isIE && (content.length === 0 || /^\s+$/.test(content))) { + forcedRootBlockName = self.settings.forced_root_block; + if (forcedRootBlockName) + content = '<' + forcedRootBlockName + '>
'; + else + content = '
'; + + body.innerHTML = content; + self.selection.select(body, true); + self.selection.collapse(true); + return; } - o.content = t.dom.setHTML(t.getBody(), tinymce.trim(o.content)); - - if (o.format != 'raw' && t.settings.cleanup) { - o.getInner = true; - o.content = t.dom.setHTML(t.getBody(), t.serializer.serialize(t.getBody(), o)); + // Parse and serialize the html + if (args.format !== 'raw') { + content = new tinymce.html.Serializer({}, self.schema).serialize( + self.parser.parse(content) + ); } - if (!o.no_events) - t.onSetContent.dispatch(t, o); + // Set the new cleaned contents to the editor + args.content = tinymce.trim(content); + self.dom.setHTML(body, args.content); - return o.content; + // Do post processing + if (!args.no_events) + self.onSetContent.dispatch(self, args); + + return args.content; }, - getContent : function(o) { - var t = this, h; + getContent : function(args) { + var self = this, content; - o = o || {}; - o.format = o.format || 'html'; - o.get = true; + // Setup args object + args = args || {}; + args.format = args.format || 'html'; + args.get = true; - if (!o.no_events) - t.onBeforeGetContent.dispatch(t, o); + // Do preprocessing + if (!args.no_events) + self.onBeforeGetContent.dispatch(self, args); - if (o.format != 'raw' && t.settings.cleanup) { - o.getInner = true; - h = t.serializer.serialize(t.getBody(), o); - } else - h = t.getBody().innerHTML; + // Get raw contents or by default the cleaned contents + if (args.format == 'raw') + content = self.getBody().innerHTML; + else + content = self.serializer.serialize(self.getBody(), args); - h = h.replace(/^\s*|\s*$/g, ''); - o.content = h; + args.content = tinymce.trim(content); - if (!o.no_events) - t.onGetContent.dispatch(t, o); + // Do post processing + if (!args.no_events) + self.onGetContent.dispatch(self, args); - return o.content; + return args.content; }, isDirty : function() { - var t = this; + var self = this; - return tinymce.trim(t.startContent) != tinymce.trim(t.getContent({format : 'raw', no_events : 1})) && !t.isNotDirty; + return tinymce.trim(self.startContent) != tinymce.trim(self.getContent({format : 'raw', no_events : 1})) && !self.isNotDirty; }, getContainer : function() { @@ -9739,7 +12359,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { _addEvents : function() { // 'focus', 'blur', 'dblclick', 'beforedeactivate', submit, reset - var t = this, i, s = t.settings, lo = { + var t = this, i, s = t.settings, dom = t.dom, lo = { mouseup : 'onMouseUp', mousedown : 'onMouseDown', click : 'onClick', @@ -9771,35 +12391,26 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { each(lo, function(v, k) { switch (k) { case 'contextmenu': - if (tinymce.isOpera) { - // Fake contextmenu on Opera - t.dom.bind(t.getBody(), 'mousedown', function(e) { - if (e.ctrlKey) { - e.fakeType = 'contextmenu'; - eventHandler(e); - } - }); - } else - t.dom.bind(t.getBody(), k, eventHandler); + dom.bind(t.getDoc(), k, eventHandler); break; case 'paste': - t.dom.bind(t.getBody(), k, function(e) { + dom.bind(t.getBody(), k, function(e) { eventHandler(e); }); break; case 'submit': case 'reset': - t.dom.bind(t.getElement().form || DOM.getParent(t.id, 'form'), k, eventHandler); + dom.bind(t.getElement().form || DOM.getParent(t.id, 'form'), k, eventHandler); break; default: - t.dom.bind(s.content_editable ? t.getBody() : t.getDoc(), k, eventHandler); + dom.bind(s.content_editable ? t.getBody() : t.getDoc(), k, eventHandler); } }); - t.dom.bind(s.content_editable ? t.getBody() : (isGecko ? t.getDoc() : t.getWin()), 'focus', function(e) { + dom.bind(s.content_editable ? t.getBody() : (isGecko ? t.getDoc() : t.getWin()), 'focus', function(e) { t.focus(true); }); @@ -9807,22 +12418,12 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Fixes bug where a specified document_base_uri could result in broken images // This will also fix drag drop of images in Gecko if (tinymce.isGecko) { - // Convert all images to absolute URLs -/* t.onSetContent.add(function(ed, o) { - each(ed.dom.select('img'), function(e) { - var v; - - if (v = e.getAttribute('_mce_src')) - e.src = t.documentBaseURI.toAbsolute(v); - }) - });*/ - - t.dom.bind(t.getDoc(), 'DOMNodeInserted', function(e) { + dom.bind(t.getDoc(), 'DOMNodeInserted', function(e) { var v; e = e.target; - if (e.nodeType === 1 && e.nodeName === 'IMG' && (v = e.getAttribute('_mce_src'))) + if (e.nodeType === 1 && e.nodeName === 'IMG' && (v = e.getAttribute('data-mce-src'))) e.src = t.documentBaseURI.toAbsolute(v); }); } @@ -9835,8 +12436,10 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (isGecko && !s.readonly) { if (t._isHidden()) { try { - if (!s.content_editable) - d.designMode = 'On'; + if (!s.content_editable) { + d.body.contentEditable = false; + d.body.contentEditable = true; + } } catch (ex) { // Fails if it's hidden } @@ -9863,18 +12466,20 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { t.onMouseDown.add(setOpts); } - // Workaround for bug, http://bugs.webkit.org/show_bug.cgi?id=12250 - // WebKit can't even do simple things like selecting an image - // This also fixes so it's possible to select mceItemAnchors - if (tinymce.isWebKit) { - t.onClick.add(function(ed, e) { - e = e.target; + t.onClick.add(function(ed, e) { + e = e.target; - // Needs tobe the setBaseAndExtend or it will fail to select floated images - if (e.nodeName == 'IMG' || (e.nodeName == 'A' && t.dom.hasClass(e, 'mceItemAnchor'))) - t.selection.getSel().setBaseAndExtent(e, 0, e, 1); - }); - } + // Workaround for bug, http://bugs.webkit.org/show_bug.cgi?id=12250 + // WebKit can't even do simple things like selecting an image + // Needs tobe the setBaseAndExtend or it will fail to select floated images + if (tinymce.isWebKit && e.nodeName == 'IMG') + t.selection.getSel().setBaseAndExtent(e, 0, e, 1); + + if (e.nodeName == 'A' && dom.hasClass(e, 'mceItemAnchor')) + t.selection.select(e); + + t.nodeChanged(); + }); // Add node change handlers t.onMouseUp.add(t.nodeChanged); @@ -9965,7 +12570,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (tinymce.isIE) { // Fix so resize will only update the width and height attributes not the styles of an image // It will also block mceItemNoResize items - t.dom.bind(t.getDoc(), 'controlselect', function(e) { + dom.bind(t.getDoc(), 'controlselect', function(e) { var re = t.resizeInfo, cb; e = e.target; @@ -9975,28 +12580,28 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return; if (re) - t.dom.unbind(re.node, re.ev, re.cb); + dom.unbind(re.node, re.ev, re.cb); - if (!t.dom.hasClass(e, 'mceItemNoResize')) { + if (!dom.hasClass(e, 'mceItemNoResize')) { ev = 'resizeend'; - cb = t.dom.bind(e, ev, function(e) { + cb = dom.bind(e, ev, function(e) { var v; e = e.target; - if (v = t.dom.getStyle(e, 'width')) { - t.dom.setAttrib(e, 'width', v.replace(/[^0-9%]+/g, '')); - t.dom.setStyle(e, 'width', ''); + if (v = dom.getStyle(e, 'width')) { + dom.setAttrib(e, 'width', v.replace(/[^0-9%]+/g, '')); + dom.setStyle(e, 'width', ''); } - if (v = t.dom.getStyle(e, 'height')) { - t.dom.setAttrib(e, 'height', v.replace(/[^0-9%]+/g, '')); - t.dom.setStyle(e, 'height', ''); + if (v = dom.getStyle(e, 'height')) { + dom.setAttrib(e, 'height', v.replace(/[^0-9%]+/g, '')); + dom.setStyle(e, 'height', ''); } }); } else { ev = 'resizestart'; - cb = t.dom.bind(e, 'resizestart', Event.cancel, Event); + cb = dom.bind(e, 'resizestart', Event.cancel, Event); } re = t.resizeInfo = { @@ -10005,27 +12610,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { cb : cb }; }); - - t.onKeyDown.add(function(ed, e) { - switch (e.keyCode) { - case 8: - // Fix IE control + backspace browser bug - if (t.selection.getRng().item) { - ed.dom.remove(t.selection.getRng().item(0)); - return Event.cancel(e); - } - } - }); - - /*if (t.dom.boxModel) { - t.getBody().style.height = '100%'; - - Event.add(t.getWin(), 'resize', function(e) { - var docElm = t.getDoc().documentElement; - - docElm.style.height = (docElm.offsetHeight - 10) + 'px'; - }); - }*/ } if (tinymce.isOpera) { @@ -10037,74 +12621,61 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Add custom undo/redo handlers if (s.custom_undo_redo) { function addUndo() { - t.undoManager.typing = 0; + t.undoManager.typing = false; t.undoManager.add(); }; - t.dom.bind(t.getDoc(), 'focusout', function(e) { + dom.bind(t.getDoc(), 'focusout', function(e) { if (!t.removed && t.undoManager.typing) addUndo(); }); + // Add undo level when contents is drag/dropped within the editor + t.dom.bind(t.dom.getRoot(), 'dragend', function(e) { + addUndo(); + }); + t.onKeyUp.add(function(ed, e) { - if ((e.keyCode >= 33 && e.keyCode <= 36) || (e.keyCode >= 37 && e.keyCode <= 40) || e.keyCode == 13 || e.keyCode == 45 || e.ctrlKey) + var keyCode = e.keyCode; + + if ((keyCode >= 33 && keyCode <= 36) || (keyCode >= 37 && keyCode <= 40) || keyCode == 13 || keyCode == 45 || e.ctrlKey) addUndo(); }); t.onKeyDown.add(function(ed, e) { - var rng, parent, bookmark; + var keyCode = e.keyCode, sel; - // IE has a really odd bug where the DOM might include an node that doesn't have - // a proper structure. If you try to access nodeValue it would throw an illegal value exception. - // This seems to only happen when you delete contents and it seems to be avoidable if you refresh the element - // after you delete contents from it. See: #3008923 - if (isIE && e.keyCode == 46) { - rng = t.selection.getRng(); + if (keyCode == 8) { + sel = t.getDoc().selection; - if (rng.parentElement) { - parent = rng.parentElement(); + // Fix IE control + backspace browser bug + if (sel && sel.createRange && sel.createRange().item) { + t.undoManager.beforeChange(); + ed.dom.remove(sel.createRange().item(0)); + addUndo(); - // Select next word when ctrl key is used in combo with delete - if (e.ctrlKey) { - rng.moveEnd('word', 1); - rng.select(); - } - - // Delete contents - t.selection.getSel().clear(); - - // Check if we are within the same parent - if (rng.parentElement() == parent) { - bookmark = t.selection.getBookmark(); - - try { - // Update the HTML and hopefully it will remove the artifacts - parent.innerHTML = parent.innerHTML; - } catch (ex) { - // And since it's IE it can sometimes produce an unknown runtime error - } - - // Restore the caret position - t.selection.moveToBookmark(bookmark); - } - - // Block the default delete behavior since it might be broken - e.preventDefault(); - return; + return Event.cancel(e); } } - // Is caracter positon keys - if ((e.keyCode >= 33 && e.keyCode <= 36) || (e.keyCode >= 37 && e.keyCode <= 40) || e.keyCode == 13 || e.keyCode == 45) { + // Is caracter positon keys left,right,up,down,home,end,pgdown,pgup,enter + if ((keyCode >= 33 && keyCode <= 36) || (keyCode >= 37 && keyCode <= 40) || keyCode == 13 || keyCode == 45) { + // Add position before enter key is pressed, used by IE since it still uses the default browser behavior + // Todo: Remove this once we normalize enter behavior on IE + if (tinymce.isIE && keyCode == 13) + t.undoManager.beforeChange(); + if (t.undoManager.typing) addUndo(); return; } - if (!t.undoManager.typing) { + // If key isn't shift,ctrl,alt,capslock,metakey + if ((keyCode < 16 || keyCode > 20) && keyCode != 224 && keyCode != 91 && !t.undoManager.typing) { + t.undoManager.beforeChange(); + t.undoManager.typing = true; t.undoManager.add(); - t.undoManager.typing = 1; } }); @@ -10113,6 +12684,53 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { addUndo(); }); } + + // Bug fix for FireFox keeping styles from end of selection instead of start. + if (tinymce.isGecko) { + function getAttributeApplyFunction() { + var template = t.dom.getAttribs(t.selection.getStart().cloneNode(false)); + + return function() { + var target = t.selection.getStart(); + t.dom.removeAllAttribs(target); + each(template, function(attr) { + target.setAttributeNode(attr.cloneNode(true)); + }); + }; + } + + function isSelectionAcrossElements() { + var s = t.selection; + + return !s.isCollapsed() && s.getStart() != s.getEnd(); + } + + t.onKeyPress.add(function(ed, e) { + var applyAttributes; + + if ((e.keyCode == 8 || e.keyCode == 46) && isSelectionAcrossElements()) { + applyAttributes = getAttributeApplyFunction(); + t.getDoc().execCommand('delete', false, null); + applyAttributes(); + + return Event.cancel(e); + } + }); + + t.dom.bind(t.getDoc(), 'cut', function(e) { + var applyAttributes; + + if (isSelectionAcrossElements()) { + applyAttributes = getAttributeApplyFunction(); + t.onKeyUp.addToTop(Event.cancel, Event); + + setTimeout(function() { + applyAttributes(); + t.onKeyUp.remove(Event.cancel, Event); + }, 0); + } + }); + } }, _isHidden : function() { @@ -10124,57 +12742,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Weird, wheres that cursor selection? s = this.selection.getSel(); return (!s || !s.rangeCount || s.rangeCount == 0); - }, - - // Fix for bug #1867292 - _fixNesting : function(s) { - var d = [], i; - - s = s.replace(/<(\/)?([^\s>]+)[^>]*?>/g, function(a, b, c) { - var e; - - // Handle end element - if (b === '/') { - if (!d.length) - return ''; - - if (c !== d[d.length - 1].tag) { - for (i=d.length - 1; i>=0; i--) { - if (d[i].tag === c) { - d[i].close = 1; - break; - } - } - - return ''; - } else { - d.pop(); - - if (d.length && d[d.length - 1].close) { - a = a + ''; - d.pop(); - } - } - } else { - // Ignore these - if (/^(br|hr|input|meta|img|link|param)$/i.test(c)) - return a; - - // Ignore closed ones - if (/\/>$/.test(a)) - return a; - - d.push({tag : c}); // Push start element - } - - return a; - }); - - // End all open tags - for (i=d.length - 1; i>=0; i--) - s += ''; - - return s; } }); })(tinymce); @@ -10321,6 +12888,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }); toggleFormat('align' + align); + execCommand('mceRepaint'); }, // Override list commands to fix WebKit bug @@ -10346,7 +12914,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }, // Override commands to use the text formatter engine - 'Bold,Italic,Underline,Strikethrough' : function(command) { + 'Bold,Italic,Underline,Strikethrough,Superscript,Subscript' : function(command) { toggleFormat(command); }, @@ -10419,12 +12987,138 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }, mceInsertContent : function(command, ui, value) { - selection.setContent(value); + var parser, serializer, parentNode, rootNode, fragment, args, + marker, nodeRect, viewPortRect, rng, node, node2, bookmarkHtml, viewportBodyElement; + + // Setup parser and serializer + parser = editor.parser; + serializer = new tinymce.html.Serializer({}, editor.schema); + bookmarkHtml = '\uFEFF'; + + // Run beforeSetContent handlers on the HTML to be inserted + args = {content: value, format: 'html'}; + selection.onBeforeSetContent.dispatch(selection, args); + value = args.content; + + // Add caret at end of contents if it's missing + if (value.indexOf('{$caret}') == -1) + value += '{$caret}'; + + // Replace the caret marker with a span bookmark element + value = value.replace(/\{\$caret\}/, bookmarkHtml); + + // Insert node maker where we will insert the new HTML and get it's parent + if (!selection.isCollapsed()) + editor.getDoc().execCommand('Delete', false, null); + + parentNode = selection.getNode(); + + // Parse the fragment within the context of the parent node + args = {context : parentNode.nodeName.toLowerCase()}; + fragment = parser.parse(value, args); + + // Move the caret to a more suitable location + node = fragment.lastChild; + if (node.attr('id') == 'mce_marker') { + marker = node; + + for (node = node.prev; node; node = node.walk(true)) { + if (node.type == 3 || !dom.isBlock(node.name)) { + node.parent.insert(marker, node, node.name === 'br'); + break; + } + } + } + + // If parser says valid we can insert the contents into that parent + if (!args.invalid) { + value = serializer.serialize(fragment); + + // Check if parent is empty or only has one BR element then set the innerHTML of that parent + node = parentNode.firstChild; + node2 = parentNode.lastChild; + if (!node || (node === node2 && node.nodeName === 'BR')) + dom.setHTML(parentNode, value); + else + selection.setContent(value); + } else { + // If the fragment was invalid within that context then we need + // to parse and process the parent it's inserted into + + // Insert bookmark node and get the parent + selection.setContent(bookmarkHtml); + parentNode = editor.selection.getNode(); + rootNode = editor.getBody(); + + // Opera will return the document node when selection is in root + if (parentNode.nodeType == 9) + parentNode = node = rootNode; + else + node = parentNode; + + // Find the ancestor just before the root element + while (node !== rootNode) { + parentNode = node; + node = node.parentNode; + } + + // Get the outer/inner HTML depending on if we are in the root and parser and serialize that + value = parentNode == rootNode ? rootNode.innerHTML : dom.getOuterHTML(parentNode); + value = serializer.serialize( + parser.parse( + // Need to replace by using a function since $ in the contents would otherwise be a problem + value.replace(//i, function() { + return serializer.serialize(fragment); + }) + ) + ); + + // Set the inner/outer HTML depending on if we are in the root or not + if (parentNode == rootNode) + dom.setHTML(rootNode, value); + else + dom.setOuterHTML(parentNode, value); + } + + marker = dom.get('mce_marker'); + + // Scroll range into view scrollIntoView on element can't be used since it will scroll the main view port as well + nodeRect = dom.getRect(marker); + viewPortRect = dom.getViewPort(editor.getWin()); + + // Check if node is out side the viewport if it is then scroll to it + if ((nodeRect.y + nodeRect.h > viewPortRect.y + viewPortRect.h || nodeRect.y < viewPortRect.y) || + (nodeRect.x > viewPortRect.x + viewPortRect.w || nodeRect.x < viewPortRect.x)) { + viewportBodyElement = tinymce.isIE ? editor.getDoc().documentElement : editor.getBody(); + viewportBodyElement.scrollLeft = nodeRect.x; + viewportBodyElement.scrollTop = nodeRect.y - viewPortRect.h + 25; + } + + // Move selection before marker and remove it + rng = dom.createRng(); + + // If previous sibling is a text node set the selection to the end of that node + node = marker.previousSibling; + if (node && node.nodeType == 3) { + rng.setStart(node, node.nodeValue.length); + } else { + // If the previous sibling isn't a text node or doesn't exist set the selection before the marker node + rng.setStartBefore(marker); + rng.setEndBefore(marker); + } + + // Remove the marker node and set the new range + dom.remove(marker); + selection.setRng(rng); + + // Dispatch after event and add any visual elements needed + selection.onSetContent.dispatch(selection, args); + editor.addVisual(); }, mceInsertRawHTML : function(command, ui, value) { selection.setContent('tiny_mce_marker'); - editor.setContent(editor.getContent().replace(/tiny_mce_marker/g, value)); + editor.setContent(editor.getContent().replace(/tiny_mce_marker/g, function() { return value })); }, mceSetContent : function(command, ui, value) { @@ -10474,7 +13168,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }, InsertHorizontalRule : function() { - selection.setContent('
'); + editor.execCommand('mceInsertContent', false, '
'); }, mceToggleVisualAid : function() { @@ -10483,18 +13177,41 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }, mceReplaceContent : function(command, ui, value) { - selection.setContent(value.replace(/\{\$selection\}/g, selection.getContent({format : 'text'}))); + editor.execCommand('mceInsertContent', false, value.replace(/\{\$selection\}/g, selection.getContent({format : 'text'}))); }, mceInsertLink : function(command, ui, value) { - var link = dom.getParent(selection.getNode(), 'a'); + var link = dom.getParent(selection.getNode(), 'a'), img, style, cls; if (tinymce.is(value, 'string')) value = {href : value}; + // Spaces are never valid in URLs and it's a very common mistake for people to make so we fix it here. + value.href = value.href.replace(' ', '%20'); + if (!link) { + // WebKit can't create links on floated images for some odd reason + // So, just remove styles and restore it later + if (tinymce.isWebKit) { + img = dom.getParent(selection.getNode(), 'img'); + + if (img) { + style = img.style.cssText; + cls = img.className; + img.style.cssText = null; + img.className = null; + } + } + execNativeCommand('CreateLink', FALSE, 'javascript:mctmp(0);'); - each(dom.select('a[href=javascript:mctmp(0);]'), function(link) { + + // Restore styles + if (style) + img.style.cssText = style; + if (cls) + img.className = cls; + + each(dom.select("a[href='javascript:mctmp(0);']"), function(link) { dom.setAttribs(link, value); }); } else { @@ -10522,7 +13239,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return isFormatMatch('align' + command.substring(7)); }, - 'Bold,Italic,Underline,Strikethrough' : function(command) { + 'Bold,Italic,Underline,Strikethrough,Superscript,Subscript' : function(command) { return isFormatMatch(command); }, @@ -10579,23 +13296,30 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } }; })(tinymce); + (function(tinymce) { var Dispatcher = tinymce.util.Dispatcher; tinymce.UndoManager = function(editor) { - var self, index = 0, data = []; + var self, index = 0, data = [], beforeBookmark; function getContent() { return tinymce.trim(editor.getContent({format : 'raw', no_events : 1})); }; return self = { - typing : 0, + typing : false, onAdd : new Dispatcher(self), + onUndo : new Dispatcher(self), + onRedo : new Dispatcher(self), + beforeChange : function() { + beforeBookmark = editor.selection.getBookmark(2, true); + }, + add : function(level) { var i, settings = editor.settings, lastLevel; @@ -10604,10 +13328,12 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Add undo level if needed lastLevel = data[index]; - if (lastLevel && lastLevel.content == level.content) { - if (index > 0 || data.length == 1) - return null; - } + if (lastLevel && lastLevel.content == level.content) + return null; + + // Set before bookmark on previous level + if (data[index]) + data[index].beforeBookmark = beforeBookmark; // Time to compress if (settings.custom_undo_redo_levels) { @@ -10624,13 +13350,8 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { level.bookmark = editor.selection.getBookmark(2, true); // Crop array if needed - if (index < data.length - 1) { - // Treat first level as initial - if (index == 0) - data = []; - else - data.length = index + 1; - } + if (index < data.length - 1) + data.length = index + 1; data.push(level); index = data.length - 1; @@ -10646,14 +13367,14 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (self.typing) { self.add(); - self.typing = 0; + self.typing = false; } if (index > 0) { level = data[--index]; editor.setContent(level.content, {format : 'raw'}); - editor.selection.moveToBookmark(level.bookmark); + editor.selection.moveToBookmark(level.beforeBookmark); self.onUndo.dispatch(self, level); } @@ -10678,15 +13399,16 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { clear : function() { data = []; - index = self.typing = 0; + index = 0; + self.typing = false; }, hasUndo : function() { - return index > 0 || self.typing; + return index > 0 || this.typing; }, hasRedo : function() { - return index < data.length - 1; + return index < data.length - 1 && !this.typing; } }; }; @@ -10735,24 +13457,15 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return rng2.cloneContents().textContent.length == 0; }; - function isEmpty(n) { - n = n.innerHTML; - - n = n.replace(/<(img|hr|table|input|select|textarea)[ \>]/gi, '-'); // Keep these convert them to - chars - n = n.replace(/<[^>]+>/g, ''); // Remove all tags - - return n.replace(/[ \u00a0\t\r\n]+/g, '') == ''; - }; - function splitList(selection, dom, li) { var listBlock, block; - if (isEmpty(li)) { + if (dom.isEmpty(li)) { listBlock = dom.getParent(li, 'ul,ol'); if (!dom.getParent(listBlock.parentNode, 'ul,ol')) { dom.split(listBlock, li); - block = dom.create('p', 0, '
'); + block = dom.create('p', 0, '
'); dom.replace(block, li); selection.select(block, 1); } @@ -10773,45 +13486,94 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { s.element = elm.toUpperCase(); ed.onPreInit.add(t.setup, t); - - t.reOpera = new RegExp('(\\u00a0| | )<\/' + elm + '>', 'gi'); - t.rePadd = new RegExp(']+)><\\\/p>|]+)\\\/>|]+)>\\s+<\\\/p>|

<\\\/p>||

\\s+<\\\/p>'.replace(/p/g, elm), 'gi'); - t.reNbsp2BR1 = new RegExp(']+)>[\\s\\u00a0]+<\\\/p>|

[\\s\\u00a0]+<\\\/p>'.replace(/p/g, elm), 'gi'); - t.reNbsp2BR2 = new RegExp('<%p()([^>]+)>( | )<\\\/%p>|<%p>( | )<\\\/%p>'.replace(/%p/g, elm), 'gi'); - t.reBR2Nbsp = new RegExp(']+)>\\s*
\\s*<\\\/p>|

\\s*
\\s*<\\\/p>'.replace(/p/g, elm), 'gi'); - - function padd(ed, o) { - if (isOpera) - o.content = o.content.replace(t.reOpera, ''); - - o.content = o.content.replace(t.rePadd, '<' + elm + '$1$2$3$4$5$6>\u00a0'); - - if (!isIE && !isOpera && o.set) { - // Use   instead of BR in padded paragraphs - o.content = o.content.replace(t.reNbsp2BR1, '<' + elm + '$1$2>
'); - o.content = o.content.replace(t.reNbsp2BR2, '<' + elm + '$1$2>
'); - } else - o.content = o.content.replace(t.reBR2Nbsp, '<' + elm + '$1$2>\u00a0'); - }; - - ed.onBeforeSetContent.add(padd); - ed.onPostProcess.add(padd); - - if (s.forced_root_block) { - ed.onInit.add(t.forceRoots, t); - ed.onSetContent.add(t.forceRoots, t); - ed.onBeforeGetContent.add(t.forceRoots, t); - } }, setup : function() { - var t = this, ed = t.editor, s = ed.settings, dom = ed.dom, selection = ed.selection; + var t = this, ed = t.editor, s = ed.settings, dom = ed.dom, selection = ed.selection, blockElements = ed.schema.getBlockElements(); - // Force root blocks when typing and when getting output + // Force root blocks if (s.forced_root_block) { - ed.onBeforeExecCommand.add(t.forceRoots, t); - ed.onKeyUp.add(t.forceRoots, t); - ed.onPreProcess.add(t.forceRoots, t); + function addRootBlocks() { + var node = selection.getStart(), rootNode = ed.getBody(), rng, startContainer, startOffset, endContainer, endOffset, rootBlockNode, tempNode, offset = -0xFFFFFF; + + if (!node || node.nodeType !== 1) + return; + + // Check if node is wrapped in block + while (node != rootNode) { + if (blockElements[node.nodeName]) + return; + + node = node.parentNode; + } + + // Get current selection + rng = selection.getRng(); + if (rng.setStart) { + startContainer = rng.startContainer; + startOffset = rng.startOffset; + endContainer = rng.endContainer; + endOffset = rng.endOffset; + } else { + // Force control range into text range + if (rng.item) { + rng = ed.getDoc().body.createTextRange(); + rng.moveToElementText(rng.item(0)); + } + + tmpRng = rng.duplicate(); + tmpRng.collapse(true); + startOffset = tmpRng.move('character', offset) * -1; + + if (!tmpRng.collapsed) { + tmpRng = rng.duplicate(); + tmpRng.collapse(false); + endOffset = (tmpRng.move('character', offset) * -1) - startOffset; + } + } + + // Wrap non block elements and text nodes + for (node = rootNode.firstChild; node; node) { + if (node.nodeType === 3 || (node.nodeType == 1 && !blockElements[node.nodeName])) { + if (!rootBlockNode) { + rootBlockNode = dom.create(s.forced_root_block); + node.parentNode.insertBefore(rootBlockNode, node); + } + + tempNode = node; + node = node.nextSibling; + rootBlockNode.appendChild(tempNode); + } else { + rootBlockNode = null; + node = node.nextSibling; + } + } + + if (rng.setStart) { + rng.setStart(startContainer, startOffset); + rng.setEnd(endContainer, endOffset); + selection.setRng(rng); + } else { + try { + rng = ed.getDoc().body.createTextRange(); + rng.moveToElementText(rootNode); + rng.collapse(true); + rng.moveStart('character', startOffset); + + if (endOffset > 0) + rng.moveEnd('character', endOffset); + + rng.select(); + } catch (ex) { + // Ignore + } + } + + ed.nodeChanged(); + }; + + ed.onKeyUp.add(addRootBlocks); + ed.onClick.add(addRootBlocks); } if (s.force_br_newlines) { @@ -10861,12 +13623,12 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { var parent = ed.selection.getStart(), fmt = t._previousFormats; // Parent is an empty block - if (!parent.hasChildNodes()) { + if (!parent.hasChildNodes() && fmt) { parent = dom.getParent(parent, dom.isBlock); - if (parent) { + if (parent && parent.nodeName != 'LI') { parent.innerHTML = ''; - + if (t._previousFormats) { parent.appendChild(fmt.wrapper); fmt.inner.innerHTML = '\uFEFF'; @@ -10874,7 +13636,9 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { parent.innerHTML = '\uFEFF'; selection.select(parent, 1); + selection.collapse(true); ed.getDoc().execCommand('Delete', false, null); + t._previousFormats = 0; } } } @@ -10927,21 +13691,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }); } - // Padd empty inline elements within block elements - // For example:

becomes

 

- ed.onPreProcess.add(function(ed, o) { - each(dom.select('p,h1,h2,h3,h4,h5,h6,div', o.node), function(p) { - if (isEmpty(p)) { - each(dom.select('span,em,strong,b,i', o.node), function(n) { - if (!n.hasChildNodes()) { - n.appendChild(ed.getDoc().createTextNode('\u00a0')); - return FALSE; // Break the loop one padding is enough - } - }); - } - }); - }); - // IE specific fixes if (isIE) { // Replaces IE:s auto generated paragraphs with the specified element name @@ -10971,155 +13720,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } }, - find : function(n, t, s) { - var ed = this.editor, w = ed.getDoc().createTreeWalker(n, 4, null, FALSE), c = -1; - - while (n = w.nextNode()) { - c++; - - // Index by node - if (t == 0 && n == s) - return c; - - // Node by index - if (t == 1 && c == s) - return n; - } - - return -1; - }, - - forceRoots : function(ed, e) { - var t = this, ed = t.editor, b = ed.getBody(), d = ed.getDoc(), se = ed.selection, s = se.getSel(), r = se.getRng(), si = -2, ei, so, eo, tr, c = -0xFFFFFF; - var nx, bl, bp, sp, le, nl = b.childNodes, i, n, eid; - - // Fix for bug #1863847 - //if (e && e.keyCode == 13) - // return TRUE; - - // Wrap non blocks into blocks - for (i = nl.length - 1; i >= 0; i--) { - nx = nl[i]; - - // Ignore internal elements - if (nx.nodeType === 1 && nx.getAttribute('_mce_type')) { - bl = null; - continue; - } - - // Is text or non block element - if (nx.nodeType === 3 || (!t.dom.isBlock(nx) && nx.nodeType !== 8 && !/^(script|mce:script|style|mce:style)$/i.test(nx.nodeName))) { - if (!bl) { - // Create new block but ignore whitespace - if (nx.nodeType != 3 || /[^\s]/g.test(nx.nodeValue)) { - // Store selection - if (si == -2 && r) { - if (!isIE) { - // If selection is element then mark it - if (r.startContainer.nodeType == 1 && (n = r.startContainer.childNodes[r.startOffset]) && n.nodeType == 1) { - // Save the id of the selected element - eid = n.getAttribute("id"); - n.setAttribute("id", "__mce"); - } else { - // If element is inside body, might not be the case in contentEdiable mode - if (ed.dom.getParent(r.startContainer, function(e) {return e === b;})) { - so = r.startOffset; - eo = r.endOffset; - si = t.find(b, 0, r.startContainer); - ei = t.find(b, 0, r.endContainer); - } - } - } else { - // Force control range into text range - if (r.item) { - tr = d.body.createTextRange(); - tr.moveToElementText(r.item(0)); - r = tr; - } - - tr = d.body.createTextRange(); - tr.moveToElementText(b); - tr.collapse(1); - bp = tr.move('character', c) * -1; - - tr = r.duplicate(); - tr.collapse(1); - sp = tr.move('character', c) * -1; - - tr = r.duplicate(); - tr.collapse(0); - le = (tr.move('character', c) * -1) - sp; - - si = sp - bp; - ei = le; - } - } - - // Uses replaceChild instead of cloneNode since it removes selected attribute from option elements on IE - // See: http://support.microsoft.com/kb/829907 - bl = ed.dom.create(ed.settings.forced_root_block); - nx.parentNode.replaceChild(bl, nx); - bl.appendChild(nx); - } - } else { - if (bl.hasChildNodes()) - bl.insertBefore(nx, bl.firstChild); - else - bl.appendChild(nx); - } - } else - bl = null; // Time to create new block - } - - // Restore selection - if (si != -2) { - if (!isIE) { - bl = b.getElementsByTagName(ed.settings.element)[0]; - r = d.createRange(); - - // Select last location or generated block - if (si != -1) - r.setStart(t.find(b, 1, si), so); - else - r.setStart(bl, 0); - - // Select last location or generated block - if (ei != -1) - r.setEnd(t.find(b, 1, ei), eo); - else - r.setEnd(bl, 0); - - if (s) { - s.removeAllRanges(); - s.addRange(r); - } - } else { - try { - r = s.createRange(); - r.moveToElementText(b); - r.collapse(1); - r.moveStart('character', si); - r.moveEnd('character', ei); - r.select(); - } catch (ex) { - // Ignore - } - } - } else if (!isIE && (n = ed.dom.get('__mce'))) { - // Restore the id of the selected element - if (eid) - n.setAttribute('id', eid); - else - n.removeAttribute('id'); - - // Move caret before selected element - r = d.createRange(); - r.setStartBefore(n); - r.setEndBefore(n); - se.setRng(r); - } - }, - getParentBlock : function(n) { var d = this.dom; @@ -11130,6 +13730,8 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { var t = this, ed = t.editor, dom = ed.dom, d = ed.getDoc(), se = ed.settings, s = ed.selection.getSel(), r = s.getRangeAt(0), b = d.body; var rb, ra, dir, sn, so, en, eo, sb, eb, bn, bef, aft, sc, ec, n, vp = dom.getViewPort(ed.getWin()), y, ch, car; + ed.undoManager.beforeChange(); + // If root blocks are forced then use Operas default behavior since it's really good // Removed due to bug: #1853816 // if (se.forced_root_block && isOpera) @@ -11305,10 +13907,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (aft.firstChild && aft.firstChild.nodeName == bn) aft.innerHTML = aft.firstChild.innerHTML; - // Padd empty blocks - if (isEmpty(bef)) - bef.innerHTML = '
'; - function appendStyles(e, en) { var nl = [], nn, n, i; @@ -11333,14 +13931,18 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { nn = nn.appendChild(nl[i]); // Padd most inner style element - nl[0].innerHTML = isOpera ? ' ' : '
'; // Extra space for Opera so that the caret can move there + nl[0].innerHTML = isOpera ? '\u00a0' : '
'; // Extra space for Opera so that the caret can move there return nl[0]; // Move caret to most inner element } else - e.innerHTML = isOpera ? ' ' : '
'; // Extra space for Opera so that the caret can move there + e.innerHTML = isOpera ? '\u00a0' : '
'; // Extra space for Opera so that the caret can move there }; + + // Padd empty blocks + if (dom.isEmpty(bef)) + appendStyles(bef, sn); // Fill empty afterblook with current style - if (isEmpty(aft)) + if (dom.isEmpty(aft)) car = appendStyles(aft, en); // Opera needs this one backwards for older versions @@ -11356,27 +13958,26 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { aft.normalize(); bef.normalize(); - function first(n) { - return d.createTreeWalker(n, NodeFilter.SHOW_TEXT, null, FALSE).nextNode() || n; - }; - // Move cursor and scroll into view - r = d.createRange(); - r.selectNodeContents(isGecko ? first(car || aft) : car || aft); - r.collapse(1); - s.removeAllRanges(); - s.addRange(r); + ed.selection.select(aft, true); + ed.selection.collapse(true); // scrollIntoView seems to scroll the parent window in most browsers now including FF 3.0b4 so it's time to stop using it and do it our selfs y = ed.dom.getPos(aft).y; - ch = aft.clientHeight; + //ch = aft.clientHeight; // Is element within viewport - if (y < vp.y || y + ch > vp.y + vp.h) { + if (y < vp.y || y + 25 > vp.y + vp.h) { ed.getWin().scrollTo(0, y < vp.y ? y : y - vp.h + 25); // Needs to be hardcoded to roughly one line of text if a huge text block is broken into two blocks - //console.debug('SCROLL!', 'vp.y: ' + vp.y, 'y' + y, 'vp.h' + vp.h, 'clientHeight' + aft.clientHeight, 'yyy: ' + (y < vp.y ? y : y - vp.h + aft.clientHeight)); + + /*console.debug( + 'Element: y=' + y + ', h=' + ch + ', ' + + 'Viewport: y=' + vp.y + ", h=" + vp.h + ', bottom=' + (vp.y + vp.h) + );*/ } + ed.undoManager.add(); + return FALSE; }, @@ -11591,7 +14192,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { c = new tinymce.ui.NativeListBox(id, s); else { cls = cc || t._cls.listbox || tinymce.ui.ListBox; - c = new cls(id, s); + c = new cls(id, s, ed); } t.controls[id] = c; @@ -11646,11 +14247,11 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (s.menu_button) { cls = cc || t._cls.menubutton || tinymce.ui.MenuButton; - c = new cls(id, s); + c = new cls(id, s, ed); ed.onMouseDown.add(c.hideMenu, c); } else { cls = t._cls.button || tinymce.ui.Button; - c = new cls(id, s); + c = new cls(id, s, ed); } return t.add(c); @@ -11693,7 +14294,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { id = t.prefix + id; cls = cc || t._cls.splitbutton || tinymce.ui.SplitButton; - c = t.add(new cls(id, s)); + c = t.add(new cls(id, s, ed)); ed.onMouseDown.add(c.hideMenu, c); return c; @@ -11733,7 +14334,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { id = t.prefix + id; cls = cc || t._cls.colorsplitbutton || tinymce.ui.ColorSplitButton; - c = new cls(id, s); + c = new cls(id, s, ed); ed.onMouseDown.add(c.hideMenu, c); // Remove the menu element when the editor is removed @@ -11765,13 +14366,25 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { id = t.prefix + id; cls = cc || t._cls.toolbar || tinymce.ui.Toolbar; - c = new cls(id, s); + c = new cls(id, s, t.editor); if (t.get(id)) return null; return t.add(c); }, + + createToolbarGroup : function(id, s, cc) { + var c, t = this, cls; + id = t.prefix + id; + cls = cc || this._cls.toolbarGroup || tinymce.ui.ToolbarGroup; + c = new cls(id, s, t.editor); + + if (t.get(id)) + return null; + + return t.add(c); + }, createSeparator : function(cc) { var cls = cc || this._cls.separator || tinymce.ui.Separator; @@ -11908,53 +14521,6 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } }); }(tinymce)); -(function(tinymce) { - function CommandManager() { - var execCommands = {}, queryStateCommands = {}, queryValueCommands = {}; - - function add(collection, cmd, func, scope) { - if (typeof(cmd) == 'string') - cmd = [cmd]; - - tinymce.each(cmd, function(cmd) { - collection[cmd.toLowerCase()] = {func : func, scope : scope}; - }); - }; - - tinymce.extend(this, { - add : function(cmd, func, scope) { - add(execCommands, cmd, func, scope); - }, - - addQueryStateHandler : function(cmd, func, scope) { - add(queryStateCommands, cmd, func, scope); - }, - - addQueryValueHandler : function(cmd, func, scope) { - add(queryValueCommands, cmd, func, scope); - }, - - execCommand : function(scope, cmd, ui, value, args) { - if (cmd = execCommands[cmd.toLowerCase()]) { - if (cmd.func.call(scope || cmd.scope, ui, value, args) !== false) - return true; - } - }, - - queryCommandValue : function() { - if (cmd = queryValueCommands[cmd.toLowerCase()]) - return cmd.func.call(scope || cmd.scope, ui, value, args); - }, - - queryCommandState : function() { - if (cmd = queryStateCommands[cmd.toLowerCase()]) - return cmd.func.call(scope || cmd.scope, ui, value, args); - } - }); - }; - - tinymce.GlobalCommands = new CommandManager(); -})(tinymce); (function(tinymce) { tinymce.Formatter = function(ed) { var formats = {}, @@ -11963,7 +14529,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { selection = ed.selection, TreeWalker = tinymce.dom.TreeWalker, rangeUtils = new tinymce.dom.RangeUtils(dom), - isValid = ed.schema.isValid, + isValid = ed.schema.isValidChild, isBlock = dom.isBlock, forcedRootBlock = ed.settings.forced_root_block, nodeIndex = dom.nodeIndex, @@ -12032,8 +14598,31 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } }; + var getTextDecoration = function(node) { + var decoration; + + ed.dom.getParent(node, function(n) { + decoration = ed.dom.getStyle(n, 'text-decoration'); + return decoration && decoration !== 'none'; + }); + + return decoration; + }; + + var processUnderlineAndColor = function(node) { + var textDecoration; + if (node.nodeType === 1 && node.parentNode && node.parentNode.nodeType === 1) { + textDecoration = getTextDecoration(node.parentNode); + if (ed.dom.getStyle(node, 'color') && textDecoration) { + ed.dom.setStyle(node, 'text-decoration', textDecoration); + } else if (ed.dom.getStyle(node, 'textdecoration') === textDecoration) { + ed.dom.setStyle(node, 'text-decoration', null); + } + } + }; + function apply(name, vars, node) { - var formatList = get(name), format = formatList[0], bookmark, rng, i; + var formatList = get(name), format = formatList[0], bookmark, rng, i, isCollapsed = selection.isCollapsed(); function moveStart(rng) { var container = rng.startContainer, @@ -12124,6 +14713,11 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (format.selector) { // Look for matching formats each(formatList, function(format) { + // Check collapsed state if it exists + if ('collapsed' in format && format.collapsed !== isCollapsed) { + return; + } + if (dom.is(node, format.selector) && !isCaretNode(node)) { setElementFormat(node, format); found = true; @@ -12138,7 +14732,8 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } // Is it valid to wrap this item - if (isValid(wrapName, nodeName) && isValid(parentName, wrapName)) { + if (isValid(wrapName, nodeName) && isValid(parentName, wrapName) && + !(node.nodeType === 3 && node.nodeValue.length === 1 && node.nodeValue.charCodeAt(0) === 65279)) { // Start wrapping if (!currentWrapElm) { // Wrap the node @@ -12148,6 +14743,19 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { } currentWrapElm.appendChild(node); + } else if (nodeName == 'li') { + // Start wrapping + if (!currentWrapElm) { + // Wrap the node + liTextNode = node.ownerDocument.createTextNode(''); + each(tinymce.grep(node.childNodes), function(n) { if (n.nodeType == 3) { liTextNode.nodeValue += n.nodeValue; n.parentNode.removeChild(n); } }); + currentWrapElm = wrapElm.cloneNode(FALSE); + node.insertBefore(currentWrapElm, node.firstChild); + newWrappers.push(currentWrapElm); + } + + currentWrapElm.appendChild(liTextNode); + } else { // Start a new wrapper for possible children currentWrapElm = 0; @@ -12163,6 +14771,30 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { each(nodes, process); }); + // Wrap links inside as well, for example color inside a link when the wrapper is around the link + if (format.wrap_links === false) { + each(newWrappers, function(node) { + function process(node) { + var i, currentWrapElm, children; + + if (node.nodeName === 'A') { + currentWrapElm = wrapElm.cloneNode(FALSE); + newWrappers.push(currentWrapElm); + + children = tinymce.grep(node.childNodes); + for (i = 0; i < children.length; i++) + currentWrapElm.appendChild(children[i]); + + node.appendChild(currentWrapElm); + } + + each(tinymce.grep(node.childNodes), process); + }; + + process(node); + }); + } + // Cleanup each(newWrappers, function(node) { var childCount; @@ -12202,8 +14834,9 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { childCount = getChildCount(node); - // Remove empty nodes - if (childCount === 0) { + // Remove empty nodes but only if there is multiple wrappers and they are not block + // elements so never remove single

since that would remove the currrent empty block element where the caret is at + if ((newWrappers.length > 1 || !isBlock(node)) && childCount === 0) { dom.remove(node, 1); return; } @@ -12219,6 +14852,19 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // this: text // will become: text each(dom.select(format.inline, node), function(child) { + var parent; + + // When wrap_links is set to false we don't want + // to remove the format on children within links + if (format.wrap_links === false) { + parent = child.parentNode; + + do { + if (parent.nodeName === 'A') + return; + } while (parent = parent.parentNode); + } + removeFormat(format, vars, child, format.exact ? child : null); }); }); @@ -12259,11 +14905,20 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { applyRngStyle(expandRng(rng, formatList)); } else { - if (!selection.isCollapsed() || !format.inline) { + if (!isCollapsed || !format.inline || dom.select('td.mceSelected,th.mceSelected').length) { + // Obtain selection node before selection is unselected by applyRngStyle() + var curSelNode = ed.selection.getNode(); + // Apply formatting to selection bookmark = selection.getBookmark(); applyRngStyle(expandRng(selection.getRng(TRUE), formatList)); + // Colored nodes should be underlined so that the color of the underline matches the text color. + if (format.styles && (format.styles.color || format.styles.textDecoration)) { + tinymce.walk(curSelNode, processUnderlineAndColor, 'childNodes'); + processUnderlineAndColor(curSelNode); + } + selection.moveToBookmark(bookmark); selection.setRng(moveStart(selection.getRng(TRUE))); ed.nodeChanged(); @@ -12427,8 +15082,8 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (startContainer != endContainer) { // Wrap start/end nodes in span element since these might be cloned/moved - startContainer = wrap(startContainer, 'span', {id : '_start', _mce_type : 'bookmark'}); - endContainer = wrap(endContainer, 'span', {id : '_end', _mce_type : 'bookmark'}); + startContainer = wrap(startContainer, 'span', {id : '_start', 'data-mce-type' : 'bookmark'}); + endContainer = wrap(endContainer, 'span', {id : '_end', 'data-mce-type' : 'bookmark'}); // Split start/end splitToFormatRoot(startContainer); @@ -12451,6 +15106,11 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { rangeUtils.walk(rng, function(nodes) { each(nodes, function(node) { process(node); + + // Remove parent span if it only contains text-decoration: underline, yet a parent node is also underlined. + if (node.nodeType === 1 && ed.dom.getStyle(node, 'text-decoration') === 'underline' && node.parentNode && getTextDecoration(node.parentNode) === 'underline') { + removeFormat({'deep': false, 'exact': true, 'inline': 'span', 'styles': {'textDecoration' : 'underline'}}, null, node); + } }); }); }; @@ -12464,7 +15124,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return; } - if (!selection.isCollapsed() || !format.inline) { + if (!selection.isCollapsed() || !format.inline || dom.select('td.mceSelected,th.mceSelected').length) { bookmark = selection.getBookmark(); removeRngStyle(selection.getRng(TRUE)); selection.moveToBookmark(bookmark); @@ -12480,7 +15140,9 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }; function toggle(name, vars, node) { - if (match(name, vars, node)) + var fmt = get(name); + + if (match(name, vars, node) && (!('toggle' in fmt[0]) || fmt[0]['toggle'])) remove(name, vars, node); else apply(name, vars, node); @@ -12744,7 +15406,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { var startContainer = rng.startContainer, startOffset = rng.startOffset, endContainer = rng.endContainer, - endOffset = rng.endOffset, sibling, lastIdx; + endOffset = rng.endOffset, sibling, lastIdx, leaf; // This function walks up the tree if there is no siblings before/after the node function findParentContainer(container, child_name, sibling_name, root) { @@ -12774,6 +15436,19 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { return container; }; + // This function walks down the tree to find the leaf at the selection. + // The offset is also returned as if node initially a leaf, the offset may be in the middle of the text node. + function findLeaf(node, offset) { + if (offset === undefined) + offset = node.nodeType === 3 ? node.length : node.childNodes.length; + while (node && node.hasChildNodes()) { + node = node.childNodes[offset]; + if (node) + offset = node.nodeType === 3 ? node.length : node.childNodes.length; + } + return { node: node, offset: offset }; + } + // If index based start position then resolve it if (startContainer.nodeType == 1 && startContainer.hasChildNodes()) { lastIdx = startContainer.childNodes.length - 1; @@ -12799,12 +15474,36 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (isBookmarkNode(startContainer)) startContainer = startContainer.nextSibling || startContainer; - if (isBookmarkNode(endContainer.parentNode)) + if (isBookmarkNode(endContainer.parentNode)) { + endOffset = dom.nodeIndex(endContainer); endContainer = endContainer.parentNode; + } - if (isBookmarkNode(endContainer)) - endContainer = endContainer.previousSibling || endContainer; + if (isBookmarkNode(endContainer) && endContainer.previousSibling) { + endContainer = endContainer.previousSibling; + endOffset = endContainer.length; + } + if (format[0].inline) { + // Avoid applying formatting to a trailing space. + leaf = findLeaf(endContainer, endOffset); + if (leaf.node) { + while (leaf.node && leaf.offset === 0 && leaf.node.previousSibling) + leaf = findLeaf(leaf.node.previousSibling); + + if (leaf.node && leaf.offset > 0 && leaf.node.nodeType === 3 && + leaf.node.nodeValue.charAt(leaf.offset - 1) === ' ') { + + if (leaf.offset > 1) { + endContainer = leaf.node; + endContainer.splitText(leaf.offset - 1); + } else if (leaf.node.previousSibling) { + endContainer = leaf.node.previousSibling; + } + } + } + } + // Move start/end point up the tree if the leaves are sharp and if we are in different containers // Example * becomes !: !

*texttext*

! // This will reduce the number of wrapper elements that needs to be created @@ -12817,7 +15516,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Expand start/end container to matching selector if (format[0].selector && format[0].expand !== FALSE && !format[0].inline) { function findSelectorEndPoint(container, sibling_name) { - var parents, i, y; + var parents, i, y, curFormat; if (container.nodeType == 3 && container.nodeValue.length == 0 && container[sibling_name]) container = container[sibling_name]; @@ -12825,7 +15524,13 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { parents = getParents(container); for (i = 0; i < parents.length; i++) { for (y = 0; y < format.length; y++) { - if (dom.is(parents[i], format[y].selector)) + curFormat = format[y]; + + // If collapsed state is set then skip formats that doesn't match that + if ("collapsed" in curFormat && curFormat.collapsed !== rng.collapsed) + continue; + + if (dom.is(parents[i], curFormat.selector)) return parents[i]; } } @@ -12935,7 +15640,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Remove style attribute if it's empty if (stylesModified && dom.getAttrib(node, 'style') == '') { node.removeAttribute('style'); - node.removeAttribute('_mce_style'); + node.removeAttribute('data-mce-style'); } // Remove attributes @@ -12976,7 +15681,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Remove mce prefixed attributes if (MCE_ATTR_RE.test(name)) - node.removeAttribute('_mce_' + name); + node.removeAttribute('data-mce-' + name); node.removeAttribute(name); } @@ -13061,7 +15766,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { }; function isBookmarkNode(node) { - return node && node.nodeType == 1 && node.getAttribute('_mce_type') == 'bookmark'; + return node && node.nodeType == 1 && node.getAttribute('data-mce-type') == 'bookmark'; }; function mergeSiblings(prev, next) { @@ -13132,7 +15837,7 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (prev && next) { function findElementSibling(node, sibling_name) { for (sibling = node; sibling; sibling = sibling[sibling_name]) { - if (sibling.nodeType == 3 && !isWhiteSpaceNode(sibling)) + if (sibling.nodeType == 3 && sibling.nodeValue.length !== 0) return node; if (sibling.nodeType == 1 && !isBookmarkNode(sibling)) @@ -13209,6 +15914,10 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { // Apply pending formats each(pendingFormats.apply.reverse(), function(item) { apply(item.name, item.vars, caret_node); + + // Colored nodes should be underlined so that the color of the underline matches the text color. + if (item.name === 'forecolor' && item.vars.value) + processUnderlineAndColor(caret_node.parentNode); }); // Remove pending formats @@ -13266,6 +15975,10 @@ tinymce.create('tinymce.ui.Toolbar:tinymce.ui.Container', { if (isCaretNode(node)) { textNode = node.firstChild; + // Find the first text node within node + while (textNode && textNode.nodeType != 3) + textNode = textNode.firstChild; + if (textNode) { perform(node); @@ -13298,9 +16011,12 @@ tinymce.onAddEditor.add(function(tinymce, ed) { fontSizes = tinymce.explode(settings.font_size_style_values); function replaceWithSpan(node, styles) { - dom.replace(dom.create('span', { - style : styles - }), node, 1); + tinymce.each(styles, function(value, name) { + if (value) + dom.setStyle(node, name, value); + }); + + dom.rename(node, 'span'); }; filters = { @@ -13337,6 +16053,7 @@ tinymce.onAddEditor.add(function(tinymce, ed) { }; ed.onPreProcess.add(convert); + ed.onSetContent.add(convert); ed.onInit.add(function() { ed.selection.onSetContent.add(convert); diff --git a/plugins/TinyMCE/js/utils/form_utils.js b/plugins/TinyMCE/js/utils/form_utils.js index 2617a26edb..59da01399e 100644 --- a/plugins/TinyMCE/js/utils/form_utils.js +++ b/plugins/TinyMCE/js/utils/form_utils.js @@ -11,10 +11,14 @@ var themeBaseURL = tinyMCEPopup.editor.baseURI.toAbsolute('themes/' + tinyMCEPopup.getParam("theme")); function getColorPickerHTML(id, target_form_element) { - var h = ""; + var h = "", dom = tinyMCEPopup.dom; - h += ''; - h += ' '; + if (label = dom.select('label[for=' + target_form_element + ']')[0]) { + label.id = label.id || dom.uniqueId(); + } + + h += ''; + h += ' '; return h; } @@ -67,6 +71,9 @@ function selectByValue(form_obj, field_name, value, add_custom, ignore_case) { if (!form_obj || !form_obj.elements[field_name]) return; + if (!value) + value = ""; + var sel = form_obj.elements[field_name]; var found = false; @@ -171,7 +178,7 @@ function convertHexToRGB(col) { } function trimSize(size) { - return size.replace(/([0-9\.]+)px|(%|in|cm|mm|em|ex|pt|pc)/, '$1$2'); + return size.replace(/([0-9\.]+)(px|%|in|cm|mm|em|ex|pt|pc)/i, '$1$2'); } function getCSSSize(size) { @@ -183,6 +190,9 @@ function getCSSSize(size) { // Add px if (/^[0-9]+$/.test(size)) size += 'px'; + // Sanity check, IE doesn't like broken values + else if (!(/^[0-9\.]+(px|%|in|cm|mm|em|ex|pt|pc)$/i.test(size))) + return ""; return size; } diff --git a/plugins/TinyMCE/js/utils/mctabs.js b/plugins/TinyMCE/js/utils/mctabs.js index 825d4c1433..458ec86da6 100644 --- a/plugins/TinyMCE/js/utils/mctabs.js +++ b/plugins/TinyMCE/js/utils/mctabs.js @@ -10,6 +10,7 @@ function MCTabs() { this.settings = []; + this.onChange = tinyMCEPopup.editor.windowManager.createInstance('tinymce.util.Dispatcher'); }; MCTabs.prototype.init = function(settings) { @@ -28,26 +29,62 @@ MCTabs.prototype.getParam = function(name, default_value) { return value; }; -MCTabs.prototype.displayTab = function(tab_id, panel_id) { - var panelElm, panelContainerElm, tabElm, tabContainerElm, selectionClass, nodes, i; +MCTabs.prototype.showTab =function(tab){ + tab.className = 'current'; + tab.setAttribute("aria-selected", true); + tab.setAttribute("aria-expanded", true); + tab.tabIndex = 0; +}; + +MCTabs.prototype.hideTab =function(tab){ + var t=this; + + tab.className = ''; + tab.setAttribute("aria-selected", false); + tab.setAttribute("aria-expanded", false); + tab.tabIndex = -1; +}; + +MCTabs.prototype.showPanel = function(panel) { + panel.className = 'current'; + panel.setAttribute("aria-hidden", false); +}; + +MCTabs.prototype.hidePanel = function(panel) { + panel.className = 'panel'; + panel.setAttribute("aria-hidden", true); +}; + +MCTabs.prototype.getPanelForTab = function(tabElm) { + return tinyMCEPopup.dom.getAttrib(tabElm, "aria-controls"); +}; + +MCTabs.prototype.displayTab = function(tab_id, panel_id, avoid_focus) { + var panelElm, panelContainerElm, tabElm, tabContainerElm, selectionClass, nodes, i, t = this; + + tabElm = document.getElementById(tab_id); + + if (panel_id === undefined) { + panel_id = t.getPanelForTab(tabElm); + } panelElm= document.getElementById(panel_id); panelContainerElm = panelElm ? panelElm.parentNode : null; - tabElm = document.getElementById(tab_id); tabContainerElm = tabElm ? tabElm.parentNode : null; - selectionClass = this.getParam('selection_class', 'current'); + selectionClass = t.getParam('selection_class', 'current'); if (tabElm && tabContainerElm) { nodes = tabContainerElm.childNodes; // Hide all other tabs for (i = 0; i < nodes.length; i++) { - if (nodes[i].nodeName == "LI") - nodes[i].className = ''; + if (nodes[i].nodeName == "LI") { + t.hideTab(nodes[i]); + } } // Show selected tab - tabElm.className = 'current'; + t.showTab(tabElm); } if (panelElm && panelContainerElm) { @@ -56,11 +93,15 @@ MCTabs.prototype.displayTab = function(tab_id, panel_id) { // Hide all other panels for (i = 0; i < nodes.length; i++) { if (nodes[i].nodeName == "DIV") - nodes[i].className = 'panel'; + t.hidePanel(nodes[i]); + } + + if (!avoid_focus) { + tabElm.focus(); } // Show selected panel - panelElm.className = 'current'; + t.showPanel(panelElm); } }; @@ -73,5 +114,49 @@ MCTabs.prototype.getAnchor = function() { return ""; }; -// Global instance + +//Global instance var mcTabs = new MCTabs(); + +tinyMCEPopup.onInit.add(function() { + var tinymce = tinyMCEPopup.getWin().tinymce, dom = tinyMCEPopup.dom, each = tinymce.each; + + each(dom.select('div.tabs'), function(tabContainerElm) { + var keyNav; + + dom.setAttrib(tabContainerElm, "role", "tablist"); + + var items = tinyMCEPopup.dom.select('li', tabContainerElm); + var action = function(id) { + mcTabs.displayTab(id, mcTabs.getPanelForTab(id)); + mcTabs.onChange.dispatch(id); + }; + + each(items, function(item) { + dom.setAttrib(item, 'role', 'tab'); + dom.bind(item, 'click', function(evt) { + action(item.id); + }); + }); + + dom.bind(dom.getRoot(), 'keydown', function(evt) { + if (evt.keyCode === 9 && evt.ctrlKey && !evt.altKey) { // Tab + keyNav.moveFocus(evt.shiftKey ? -1 : 1); + tinymce.dom.Event.cancel(evt); + } + }); + + each(dom.select('a', tabContainerElm), function(a) { + dom.setAttrib(a, 'tabindex', '-1'); + }); + + keyNav = tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', { + root: tabContainerElm, + items: items, + onAction: action, + actOnFocus: true, + enableLeftRight: true, + enableUpDown: true + }, tinyMCEPopup.dom); + }); +}); \ No newline at end of file diff --git a/plugins/TinyMCE/js/utils/validate.js b/plugins/TinyMCE/js/utils/validate.js index a6fcf97015..27cbfab811 100644 --- a/plugins/TinyMCE/js/utils/validate.js +++ b/plugins/TinyMCE/js/utils/validate.js @@ -32,7 +32,7 @@ var Validator = { }, isSize : function(s) { - return this.test(s, '^[0-9]+(%|in|cm|mm|em|ex|pt|pc|px)?$'); + return this.test(s, '^[0-9.]+(%|in|cm|mm|em|ex|pt|pc|px)?$'); }, isId : function(s) { @@ -96,8 +96,10 @@ var AutoValidator = { var i, nl, s = this.settings, c = 0; nl = this.tags(f, 'label'); - for (i=0; i Date: Mon, 20 Jun 2011 12:21:04 -0400 Subject: [PATCH 31/31] Enable TinyMCE for the blog form --- plugins/Blog/BlogPlugin.php | 9 +++++++++ plugins/Blog/blog.js | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 plugins/Blog/blog.js diff --git a/plugins/Blog/BlogPlugin.php b/plugins/Blog/BlogPlugin.php index 89619b5f54..04eef36e04 100644 --- a/plugins/Blog/BlogPlugin.php +++ b/plugins/Blog/BlogPlugin.php @@ -207,4 +207,13 @@ class BlogPlugin extends MicroAppPlugin return null; } + + function onEndShowScripts($action) + { + $action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js')); + $action->inlineScript('var _tinymce_path = "'.common_path('plugins/TinyMCE/js/tiny_mce.js').'";'."\n". + 'var _tinymce_placeholder = "'.common_path('plugins/TinyMCE/icons/placeholder.png').'";'."\n"); + $action->script($this->path('blog.js')); + return true; + } } diff --git a/plugins/Blog/blog.js b/plugins/Blog/blog.js new file mode 100644 index 0000000000..333a2891d3 --- /dev/null +++ b/plugins/Blog/blog.js @@ -0,0 +1,33 @@ +(function() { + var origInit = SN.Init.NoticeFormSetup; + SN.Init.NoticeFormSetup = function(form) { + origInit(form); + var content = form.find("#blog-entry-content"); + if (content.length > 0) { + content.tinymce({ + script_url : window._tinymce_path, + // General options + theme : "advanced", + plugins : "paste,fullscreen,autoresize,autolink,inlinepopups,tabfocus", + theme_advanced_buttons1 : "bold,italic,strikethrough,|,undo,redo,|,link,unlink,image", + theme_advanced_buttons2 : "", + theme_advanced_buttons3 : "", + add_form_submit_trigger : false, + theme_advanced_resizing : true, + tabfocus_elements: ":prev,:next", + setup: function(ed) { + + form.find('.submit:first').click(function() { + tinymce.triggerSave(); + }); + + form.find('input[type=file]').change(function() { + var img = ''; + var html = tinyMCE.activeEditor.getContent(); + ed.setContent(html + img); + }); + } + }); + } + }; +})(); \ No newline at end of file
- +
@@ -150,10 +151,10 @@ - - + +
 
- +
@@ -162,10 +163,10 @@ - - + + <\/tr>/g, ''); return html; } diff --git a/plugins/TinyMCE/js/themes/advanced/js/color_picker.js b/plugins/TinyMCE/js/themes/advanced/js/color_picker.js index fd9700f222..7decac5b43 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/color_picker.js +++ b/plugins/TinyMCE/js/themes/advanced/js/color_picker.js @@ -1,6 +1,6 @@ tinyMCEPopup.requireLangPack(); -var detail = 50, strhex = "0123456789abcdef", i, isMouseDown = false, isMouseOver = false; +var detail = 50, strhex = "0123456789ABCDEF", i, isMouseDown = false, isMouseOver = false; var colors = [ "#000000","#000033","#000066","#000099","#0000cc","#0000ff","#330000","#330033", @@ -33,37 +33,41 @@ var colors = [ ]; var named = { - '#F0F8FF':'AliceBlue','#FAEBD7':'AntiqueWhite','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige', - '#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'BlanchedAlmond','#0000FF':'Blue','#8A2BE2':'BlueViolet','#A52A2A':'Brown', - '#DEB887':'BurlyWood','#5F9EA0':'CadetBlue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'CornflowerBlue', - '#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'DarkBlue','#008B8B':'DarkCyan','#B8860B':'DarkGoldenRod', - '#A9A9A9':'DarkGray','#A9A9A9':'DarkGrey','#006400':'DarkGreen','#BDB76B':'DarkKhaki','#8B008B':'DarkMagenta','#556B2F':'DarkOliveGreen', - '#FF8C00':'Darkorange','#9932CC':'DarkOrchid','#8B0000':'DarkRed','#E9967A':'DarkSalmon','#8FBC8F':'DarkSeaGreen','#483D8B':'DarkSlateBlue', - '#2F4F4F':'DarkSlateGray','#2F4F4F':'DarkSlateGrey','#00CED1':'DarkTurquoise','#9400D3':'DarkViolet','#FF1493':'DeepPink','#00BFFF':'DeepSkyBlue', - '#696969':'DimGray','#696969':'DimGrey','#1E90FF':'DodgerBlue','#B22222':'FireBrick','#FFFAF0':'FloralWhite','#228B22':'ForestGreen', - '#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'GhostWhite','#FFD700':'Gold','#DAA520':'GoldenRod','#808080':'Gray','#808080':'Grey', - '#008000':'Green','#ADFF2F':'GreenYellow','#F0FFF0':'HoneyDew','#FF69B4':'HotPink','#CD5C5C':'IndianRed','#4B0082':'Indigo','#FFFFF0':'Ivory', - '#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'LavenderBlush','#7CFC00':'LawnGreen','#FFFACD':'LemonChiffon','#ADD8E6':'LightBlue', - '#F08080':'LightCoral','#E0FFFF':'LightCyan','#FAFAD2':'LightGoldenRodYellow','#D3D3D3':'LightGray','#D3D3D3':'LightGrey','#90EE90':'LightGreen', - '#FFB6C1':'LightPink','#FFA07A':'LightSalmon','#20B2AA':'LightSeaGreen','#87CEFA':'LightSkyBlue','#778899':'LightSlateGray','#778899':'LightSlateGrey', - '#B0C4DE':'LightSteelBlue','#FFFFE0':'LightYellow','#00FF00':'Lime','#32CD32':'LimeGreen','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon', - '#66CDAA':'MediumAquaMarine','#0000CD':'MediumBlue','#BA55D3':'MediumOrchid','#9370D8':'MediumPurple','#3CB371':'MediumSeaGreen','#7B68EE':'MediumSlateBlue', - '#00FA9A':'MediumSpringGreen','#48D1CC':'MediumTurquoise','#C71585':'MediumVioletRed','#191970':'MidnightBlue','#F5FFFA':'MintCream','#FFE4E1':'MistyRose','#FFE4B5':'Moccasin', - '#FFDEAD':'NavajoWhite','#000080':'Navy','#FDF5E6':'OldLace','#808000':'Olive','#6B8E23':'OliveDrab','#FFA500':'Orange','#FF4500':'OrangeRed','#DA70D6':'Orchid', - '#EEE8AA':'PaleGoldenRod','#98FB98':'PaleGreen','#AFEEEE':'PaleTurquoise','#D87093':'PaleVioletRed','#FFEFD5':'PapayaWhip','#FFDAB9':'PeachPuff', - '#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'PowderBlue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'RosyBrown','#4169E1':'RoyalBlue', - '#8B4513':'SaddleBrown','#FA8072':'Salmon','#F4A460':'SandyBrown','#2E8B57':'SeaGreen','#FFF5EE':'SeaShell','#A0522D':'Sienna','#C0C0C0':'Silver', - '#87CEEB':'SkyBlue','#6A5ACD':'SlateBlue','#708090':'SlateGray','#708090':'SlateGrey','#FFFAFA':'Snow','#00FF7F':'SpringGreen', - '#4682B4':'SteelBlue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet', - '#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'WhiteSmoke','#FFFF00':'Yellow','#9ACD32':'YellowGreen' + '#F0F8FF':'Alice Blue','#FAEBD7':'Antique White','#00FFFF':'Aqua','#7FFFD4':'Aquamarine','#F0FFFF':'Azure','#F5F5DC':'Beige', + '#FFE4C4':'Bisque','#000000':'Black','#FFEBCD':'Blanched Almond','#0000FF':'Blue','#8A2BE2':'Blue Violet','#A52A2A':'Brown', + '#DEB887':'Burly Wood','#5F9EA0':'Cadet Blue','#7FFF00':'Chartreuse','#D2691E':'Chocolate','#FF7F50':'Coral','#6495ED':'Cornflower Blue', + '#FFF8DC':'Cornsilk','#DC143C':'Crimson','#00FFFF':'Cyan','#00008B':'Dark Blue','#008B8B':'Dark Cyan','#B8860B':'Dark Golden Rod', + '#A9A9A9':'Dark Gray','#A9A9A9':'Dark Grey','#006400':'Dark Green','#BDB76B':'Dark Khaki','#8B008B':'Dark Magenta','#556B2F':'Dark Olive Green', + '#FF8C00':'Darkorange','#9932CC':'Dark Orchid','#8B0000':'Dark Red','#E9967A':'Dark Salmon','#8FBC8F':'Dark Sea Green','#483D8B':'Dark Slate Blue', + '#2F4F4F':'Dark Slate Gray','#2F4F4F':'Dark Slate Grey','#00CED1':'Dark Turquoise','#9400D3':'Dark Violet','#FF1493':'Deep Pink','#00BFFF':'Deep Sky Blue', + '#696969':'Dim Gray','#696969':'Dim Grey','#1E90FF':'Dodger Blue','#B22222':'Fire Brick','#FFFAF0':'Floral White','#228B22':'Forest Green', + '#FF00FF':'Fuchsia','#DCDCDC':'Gainsboro','#F8F8FF':'Ghost White','#FFD700':'Gold','#DAA520':'Golden Rod','#808080':'Gray','#808080':'Grey', + '#008000':'Green','#ADFF2F':'Green Yellow','#F0FFF0':'Honey Dew','#FF69B4':'Hot Pink','#CD5C5C':'Indian Red','#4B0082':'Indigo','#FFFFF0':'Ivory', + '#F0E68C':'Khaki','#E6E6FA':'Lavender','#FFF0F5':'Lavender Blush','#7CFC00':'Lawn Green','#FFFACD':'Lemon Chiffon','#ADD8E6':'Light Blue', + '#F08080':'Light Coral','#E0FFFF':'Light Cyan','#FAFAD2':'Light Golden Rod Yellow','#D3D3D3':'Light Gray','#D3D3D3':'Light Grey','#90EE90':'Light Green', + '#FFB6C1':'Light Pink','#FFA07A':'Light Salmon','#20B2AA':'Light Sea Green','#87CEFA':'Light Sky Blue','#778899':'Light Slate Gray','#778899':'Light Slate Grey', + '#B0C4DE':'Light Steel Blue','#FFFFE0':'Light Yellow','#00FF00':'Lime','#32CD32':'Lime Green','#FAF0E6':'Linen','#FF00FF':'Magenta','#800000':'Maroon', + '#66CDAA':'Medium Aqua Marine','#0000CD':'Medium Blue','#BA55D3':'Medium Orchid','#9370D8':'Medium Purple','#3CB371':'Medium Sea Green','#7B68EE':'Medium Slate Blue', + '#00FA9A':'Medium Spring Green','#48D1CC':'Medium Turquoise','#C71585':'Medium Violet Red','#191970':'Midnight Blue','#F5FFFA':'Mint Cream','#FFE4E1':'Misty Rose','#FFE4B5':'Moccasin', + '#FFDEAD':'Navajo White','#000080':'Navy','#FDF5E6':'Old Lace','#808000':'Olive','#6B8E23':'Olive Drab','#FFA500':'Orange','#FF4500':'Orange Red','#DA70D6':'Orchid', + '#EEE8AA':'Pale Golden Rod','#98FB98':'Pale Green','#AFEEEE':'Pale Turquoise','#D87093':'Pale Violet Red','#FFEFD5':'Papaya Whip','#FFDAB9':'Peach Puff', + '#CD853F':'Peru','#FFC0CB':'Pink','#DDA0DD':'Plum','#B0E0E6':'Powder Blue','#800080':'Purple','#FF0000':'Red','#BC8F8F':'Rosy Brown','#4169E1':'Royal Blue', + '#8B4513':'Saddle Brown','#FA8072':'Salmon','#F4A460':'Sandy Brown','#2E8B57':'Sea Green','#FFF5EE':'Sea Shell','#A0522D':'Sienna','#C0C0C0':'Silver', + '#87CEEB':'Sky Blue','#6A5ACD':'Slate Blue','#708090':'Slate Gray','#708090':'Slate Grey','#FFFAFA':'Snow','#00FF7F':'Spring Green', + '#4682B4':'Steel Blue','#D2B48C':'Tan','#008080':'Teal','#D8BFD8':'Thistle','#FF6347':'Tomato','#40E0D0':'Turquoise','#EE82EE':'Violet', + '#F5DEB3':'Wheat','#FFFFFF':'White','#F5F5F5':'White Smoke','#FFFF00':'Yellow','#9ACD32':'Yellow Green' }; +var namedLookup = {}; + function init() { - var inputColor = convertRGBToHex(tinyMCEPopup.getWindowArg('input_color')); + var inputColor = convertRGBToHex(tinyMCEPopup.getWindowArg('input_color')), key, value; tinyMCEPopup.resizeToInnerSize(); generatePicker(); + generateWebColors(); + generateNamedColors(); if (inputColor) { changeFinalColor(inputColor); @@ -73,6 +77,45 @@ function init() { if (col) updateLight(col.r, col.g, col.b); } + + for (key in named) { + value = named[key]; + namedLookup[value.replace(/\s+/, '').toLowerCase()] = key.replace(/#/, '').toLowerCase(); + } +} + +function toHexColor(color) { + var matches, red, green, blue, toInt = parseInt; + + function hex(value) { + value = parseInt(value).toString(16); + + return value.length > 1 ? value : '0' + value; // Padd with leading zero + }; + + color = color.replace(/[\s#]+/g, '').toLowerCase(); + color = namedLookup[color] || color; + matches = /^rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)|([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})|([a-f0-9])([a-f0-9])([a-f0-9])$/.exec(color); + + if (matches) { + if (matches[1]) { + red = toInt(matches[1]); + green = toInt(matches[2]); + blue = toInt(matches[3]); + } else if (matches[4]) { + red = toInt(matches[4], 16); + green = toInt(matches[5], 16); + blue = toInt(matches[6], 16); + } else if (matches[7]) { + red = toInt(matches[7] + matches[7], 16); + green = toInt(matches[8] + matches[8], 16); + blue = toInt(matches[9] + matches[9], 16); + } + + return '#' + hex(red) + hex(green) + hex(blue); + } + + return ''; } function insertAction() { @@ -81,7 +124,7 @@ function insertAction() { tinyMCEPopup.restoreSelection(); if (f) - f(color); + f(toHexColor(color)); tinyMCEPopup.close(); } @@ -91,7 +134,7 @@ function showColor(color, name) { document.getElementById("colorname").innerHTML = name; document.getElementById("preview").style.backgroundColor = color; - document.getElementById("color").value = color.toLowerCase(); + document.getElementById("color").value = color.toUpperCase(); } function convertRGBToHex(col) { @@ -153,23 +196,40 @@ function generateWebColors() { if (el.className == 'generated') return; - h += '
 
- +
diff --git a/plugins/TinyMCE/js/plugins/template/js/template.js b/plugins/TinyMCE/js/plugins/template/js/template.js index 24045d7311..bc3045d244 100644 --- a/plugins/TinyMCE/js/plugins/template/js/template.js +++ b/plugins/TinyMCE/js/plugins/template/js/template.js @@ -42,7 +42,7 @@ var TemplateDialog = { if (e) { e.style.height = Math.abs(h) + 'px'; - e.style.width = Math.abs(w - 5) + 'px'; + e.style.width = Math.abs(w - 5) + 'px'; } }, diff --git a/plugins/TinyMCE/js/plugins/visualchars/editor_plugin.js b/plugins/TinyMCE/js/plugins/visualchars/editor_plugin.js index 94719f93a1..1a148e8b4f 100644 --- a/plugins/TinyMCE/js/plugins/visualchars/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/visualchars/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.VisualChars",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceVisualChars",c._toggleVisualChars,c);a.addButton("visualchars",{title:"visualchars.desc",cmd:"mceVisualChars"});a.onBeforeGetContent.add(function(d,e){if(c.state&&e.format!="raw"&&!e.draft){c.state=true;c._toggleVisualChars(false)}})},getInfo:function(){return{longname:"Visual characters",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_toggleVisualChars:function(m){var p=this,k=p.editor,a,g,j,n=k.getDoc(),o=k.getBody(),l,q=k.selection,e,c,f;p.state=!p.state;k.controlManager.setActive("visualchars",p.state);if(m){f=q.getBookmark()}if(p.state){a=[];tinymce.walk(o,function(b){if(b.nodeType==3&&b.nodeValue&&b.nodeValue.indexOf("\u00a0")!=-1){a.push(b)}},"childNodes");for(g=0;g$1');c=k.dom.create("div",null,l);while(node=c.lastChild){k.dom.insertAfter(node,a[g])}k.dom.remove(a[g])}}else{a=k.dom.select("span.mceItemNbsp",o);for(g=a.length-1;g>=0;g--){k.dom.remove(a[g],1)}}q.moveToBookmark(f)}});tinymce.PluginManager.add("visualchars",tinymce.plugins.VisualChars)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.VisualChars",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceVisualChars",c._toggleVisualChars,c);a.addButton("visualchars",{title:"visualchars.desc",cmd:"mceVisualChars"});a.onBeforeGetContent.add(function(d,e){if(c.state&&e.format!="raw"&&!e.draft){c.state=true;c._toggleVisualChars(false)}})},getInfo:function(){return{longname:"Visual characters",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_toggleVisualChars:function(m){var p=this,k=p.editor,a,g,j,n=k.getDoc(),o=k.getBody(),l,q=k.selection,e,c,f;p.state=!p.state;k.controlManager.setActive("visualchars",p.state);if(m){f=q.getBookmark()}if(p.state){a=[];tinymce.walk(o,function(b){if(b.nodeType==3&&b.nodeValue&&b.nodeValue.indexOf("\u00a0")!=-1){a.push(b)}},"childNodes");for(g=0;g$1');c=k.dom.create("div",null,l);while(node=c.lastChild){k.dom.insertAfter(node,a[g])}k.dom.remove(a[g])}}else{a=k.dom.select("span.mceItemNbsp",o);for(g=a.length-1;g>=0;g--){k.dom.remove(a[g],1)}}q.moveToBookmark(f)}});tinymce.PluginManager.add("visualchars",tinymce.plugins.VisualChars)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/visualchars/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/visualchars/editor_plugin_src.js index 35856e26a0..df985905b6 100644 --- a/plugins/TinyMCE/js/plugins/visualchars/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/visualchars/editor_plugin_src.js @@ -59,7 +59,7 @@ for (i = 0; i < nl.length; i++) { nv = nl[i].nodeValue; - nv = nv.replace(/(\u00a0)/g, '$1'); + nv = nv.replace(/(\u00a0)/g, '$1'); div = ed.dom.create('div', null, nv); while (node = div.lastChild) diff --git a/plugins/TinyMCE/js/plugins/wordcount/editor_plugin.js b/plugins/TinyMCE/js/plugins/wordcount/editor_plugin.js index a099e6a8c5..e769d09f6d 100644 --- a/plugins/TinyMCE/js/plugins/wordcount/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/wordcount/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.WordCount",{block:0,id:null,countre:null,cleanre:null,init:function(a,b){var c=this,d=0;c.countre=a.getParam("wordcount_countregex",/\S\s+/g);c.cleanre=a.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$¿'"_+=\\\/-]*/g);c.id=a.id+"-word-count";a.onPostRender.add(function(f,e){var g,h;h=f.getParam("wordcount_target_id");if(!h){g=tinymce.DOM.get(f.id+"_path_row");if(g){tinymce.DOM.add(g.parentNode,"div",{style:"float: right"},f.getLang("wordcount.words","Words: ")+'0')}}else{tinymce.DOM.add(h,"span",{},'0')}});a.onInit.add(function(e){e.selection.onSetContent.add(function(){c._count(e)});c._count(e)});a.onSetContent.add(function(e){c._count(e)});a.onKeyUp.add(function(f,g){if(g.keyCode==d){return}if(13==g.keyCode||8==d||46==d){c._count(f)}d=g.keyCode})},_count:function(b){var c=this,a=0;if(c.block){return}c.block=1;setTimeout(function(){var d=b.getContent({format:"raw"});if(d){d=d.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," ");d=d.replace(c.cleanre,"");d.replace(c.countre,function(){a++})}tinymce.DOM.setHTML(c.id,a.toString());setTimeout(function(){c.block=0},2000)},1)},getInfo:function(){return{longname:"Word Count plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("wordcount",tinymce.plugins.WordCount)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.WordCount",{block:0,id:null,countre:null,cleanre:null,init:function(a,b){var c=this,d=0;c.countre=a.getParam("wordcount_countregex",/[\w\u2019\'-]+/g);c.cleanre=a.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g);c.id=a.id+"-word-count";a.onPostRender.add(function(f,e){var g,h;h=f.getParam("wordcount_target_id");if(!h){g=tinymce.DOM.get(f.id+"_path_row");if(g){tinymce.DOM.add(g.parentNode,"div",{style:"float: right"},f.getLang("wordcount.words","Words: ")+'0')}}else{tinymce.DOM.add(h,"span",{},'0')}});a.onInit.add(function(e){e.selection.onSetContent.add(function(){c._count(e)});c._count(e)});a.onSetContent.add(function(e){c._count(e)});a.onKeyUp.add(function(f,g){if(g.keyCode==d){return}if(13==g.keyCode||8==d||46==d){c._count(f)}d=g.keyCode})},_getCount:function(c){var a=0;var b=c.getContent({format:"raw"});if(b){b=b.replace(/\.\.\./g," ");b=b.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," ");b=b.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," ");b=b.replace(this.cleanre,"");var d=b.match(this.countre);if(d){a=d.length}}return a},_count:function(a){var b=this;if(b.block){return}b.block=1;setTimeout(function(){var c=b._getCount(a);tinymce.DOM.setHTML(b.id,c.toString());setTimeout(function(){b.block=0},2000)},1)},getInfo:function(){return{longname:"Word Count plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("wordcount",tinymce.plugins.WordCount)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/wordcount/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/wordcount/editor_plugin_src.js index 5cb92fa0f0..6c9a3ead27 100644 --- a/plugins/TinyMCE/js/plugins/wordcount/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/wordcount/editor_plugin_src.js @@ -9,7 +9,7 @@ */ (function() { - tinymce.create('tinymce.plugins.WordCount', { + tinymce.create('tinymce.plugins.WordCount', { block : 0, id : null, countre : null, @@ -18,8 +18,8 @@ init : function(ed, url) { var t = this, last = 0; - t.countre = ed.getParam('wordcount_countregex', /\S\s+/g); - t.cleanre = ed.getParam('wordcount_cleanregex', /[0-9.(),;:!?%#$¿'"_+=\\\/-]*/g); + t.countre = ed.getParam('wordcount_countregex', /[\w\u2019\'-]+/g); // u2019 == ’ + t.cleanre = ed.getParam('wordcount_cleanregex', /[0-9.(),;:!?%#$?\'\"_+=\\\/-]*/g); t.id = ed.id + '-word-count'; ed.onPostRender.add(function(ed, cm) { @@ -32,11 +32,12 @@ if (row) tinymce.DOM.add(row.parentNode, 'div', {'style': 'float: right'}, ed.getLang('wordcount.words', 'Words: ') + '0'); - } else + } else { tinymce.DOM.add(id, 'span', {}, '0'); + } }); - ed.onInit.add(function(ed) { + ed.onInit.add(function(ed) { ed.selection.onSetContent.add(function() { t._count(ed); }); @@ -59,8 +60,29 @@ }); }, + _getCount : function(ed) { + var tc = 0; + var tx = ed.getContent({ format: 'raw' }); + + if (tx) { + tx = tx.replace(/\.\.\./g, ' '); // convert ellipses to spaces + tx = tx.replace(/<.[^<>]*?>/g, ' ').replace(/ | /gi, ' '); // remove html tags and space chars + + // deal with html entities + tx = tx.replace(/(\w+)(&.+?;)+(\w+)/, "$1$3").replace(/&.+?;/g, ' '); + tx = tx.replace(this.cleanre, ''); // remove numbers and punctuation + + var wordArray = tx.match(this.countre); + if (wordArray) { + tc = wordArray.length; + } + } + + return tc; + }, + _count : function(ed) { - var t = this, tc = 0; + var t = this; // Keep multiple calls from happening at the same time if (t.block) @@ -69,21 +91,15 @@ t.block = 1; setTimeout(function() { - var tx = ed.getContent({format : 'raw'}); + var tc = t._getCount(ed); - if (tx) { - tx = tx.replace(/<.[^<>]*?>/g, ' ').replace(/ | /gi, ' '); // remove html tags and space chars - tx = tx.replace(t.cleanre, ''); // remove numbers and punctuation - tx.replace(t.countre, function() {tc++;}); // count the words - } + tinymce.DOM.setHTML(t.id, tc.toString()); - tinymce.DOM.setHTML(t.id, tc.toString()); - - setTimeout(function() {t.block = 0;}, 2000); + setTimeout(function() {t.block = 0;}, 2000); }, 1); }, - getInfo: function() { + getInfo: function() { return { longname : 'Word Count plugin', author : 'Moxiecode Systems AB', @@ -91,8 +107,8 @@ infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/wordcount', version : tinymce.majorVersion + "." + tinymce.minorVersion }; - } - }); + } + }); - tinymce.PluginManager.add('wordcount', tinymce.plugins.WordCount); + tinymce.PluginManager.add('wordcount', tinymce.plugins.WordCount); })(); diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/abbr.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/abbr.htm index 3aeac0deba..30a894f7c3 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/abbr.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/abbr.htm @@ -10,11 +10,12 @@ - + + @@ -23,7 +24,7 @@
{#xhtmlxtras_dlg.fieldset_attrib_tab} -
 
+
@@ -41,7 +42,7 @@ - + @@ -67,7 +68,7 @@
{#xhtmlxtras_dlg.fieldset_events_tab} -
:
::
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/acronym.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/acronym.htm index 31ee7b70f3..c109345928 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/acronym.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/acronym.htm @@ -10,11 +10,12 @@ - + + @@ -23,7 +24,7 @@
{#xhtmlxtras_dlg.fieldset_attrib_tab} -
:
+
@@ -41,7 +42,7 @@ - + @@ -67,7 +68,7 @@
{#xhtmlxtras_dlg.fieldset_events_tab} -
:
::
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/attributes.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/attributes.htm index 17054da3ed..e8d606a340 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/attributes.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/attributes.htm @@ -9,12 +9,13 @@ - + + @@ -22,7 +23,7 @@
{#xhtmlxtras_dlg.attribute_attrib_tab} -
:
+
@@ -75,7 +76,7 @@
{#xhtmlxtras_dlg.attribute_events_tab} -
:
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/cite.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/cite.htm index d0a3e3a8e5..0ac6bdb667 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/cite.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/cite.htm @@ -10,11 +10,12 @@ - + + @@ -23,7 +24,7 @@
{#xhtmlxtras_dlg.fieldset_attrib_tab} -
:
+
@@ -67,7 +68,7 @@
{#xhtmlxtras_dlg.fieldset_events_tab} -
:
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/del.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/del.htm index 8b07fa8429..5f667510f5 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/del.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/del.htm @@ -10,11 +10,12 @@ - + + @@ -23,14 +24,14 @@
{#xhtmlxtras_dlg.fieldset_general_tab} -
:
+
@@ -43,7 +44,7 @@
{#xhtmlxtras_dlg.fieldset_attrib_tab} -
: - +
- +
+
@@ -61,7 +62,7 @@ - + @@ -87,7 +88,7 @@
{#xhtmlxtras_dlg.fieldset_events_tab} -
:
::
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin.js b/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin.js index a9393ad6db..9b98a5154b 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin.js +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin.js @@ -1 +1 @@ -(function(){tinymce.create("tinymce.plugins.XHTMLXtrasPlugin",{init:function(a,b){a.addCommand("mceCite",function(){a.windowManager.open({file:b+"/cite.htm",width:350+parseInt(a.getLang("xhtmlxtras.cite_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.cite_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAcronym",function(){a.windowManager.open({file:b+"/acronym.htm",width:350+parseInt(a.getLang("xhtmlxtras.acronym_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.acronym_delta_width",0)),inline:1},{plugin_url:b})});a.addCommand("mceAbbr",function(){a.windowManager.open({file:b+"/abbr.htm",width:350+parseInt(a.getLang("xhtmlxtras.abbr_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.abbr_delta_width",0)),inline:1},{plugin_url:b})});a.addCommand("mceDel",function(){a.windowManager.open({file:b+"/del.htm",width:340+parseInt(a.getLang("xhtmlxtras.del_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.del_delta_width",0)),inline:1},{plugin_url:b})});a.addCommand("mceIns",function(){a.windowManager.open({file:b+"/ins.htm",width:340+parseInt(a.getLang("xhtmlxtras.ins_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.ins_delta_width",0)),inline:1},{plugin_url:b})});a.addCommand("mceAttributes",function(){a.windowManager.open({file:b+"/attributes.htm",width:380,height:370,inline:1},{plugin_url:b})});a.addButton("cite",{title:"xhtmlxtras.cite_desc",cmd:"mceCite"});a.addButton("acronym",{title:"xhtmlxtras.acronym_desc",cmd:"mceAcronym"});a.addButton("abbr",{title:"xhtmlxtras.abbr_desc",cmd:"mceAbbr"});a.addButton("del",{title:"xhtmlxtras.del_desc",cmd:"mceDel"});a.addButton("ins",{title:"xhtmlxtras.ins_desc",cmd:"mceIns"});a.addButton("attribs",{title:"xhtmlxtras.attribs_desc",cmd:"mceAttributes"});a.onNodeChange.add(function(d,c,f,e){f=d.dom.getParent(f,"CITE,ACRONYM,ABBR,DEL,INS");c.setDisabled("cite",e);c.setDisabled("acronym",e);c.setDisabled("abbr",e);c.setDisabled("del",e);c.setDisabled("ins",e);c.setDisabled("attribs",f&&f.nodeName=="BODY");c.setActive("cite",0);c.setActive("acronym",0);c.setActive("abbr",0);c.setActive("del",0);c.setActive("ins",0);if(f){do{c.setDisabled(f.nodeName.toLowerCase(),0);c.setActive(f.nodeName.toLowerCase(),1)}while(f=f.parentNode)}});a.onPreInit.add(function(){a.dom.create("abbr")})},getInfo:function(){return{longname:"XHTML Xtras Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/xhtmlxtras",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("xhtmlxtras",tinymce.plugins.XHTMLXtrasPlugin)})(); \ No newline at end of file +(function(){tinymce.create("tinymce.plugins.XHTMLXtrasPlugin",{init:function(a,b){a.addCommand("mceCite",function(){a.windowManager.open({file:b+"/cite.htm",width:350+parseInt(a.getLang("xhtmlxtras.cite_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.cite_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAcronym",function(){a.windowManager.open({file:b+"/acronym.htm",width:350+parseInt(a.getLang("xhtmlxtras.acronym_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.acronym_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAbbr",function(){a.windowManager.open({file:b+"/abbr.htm",width:350+parseInt(a.getLang("xhtmlxtras.abbr_delta_width",0)),height:250+parseInt(a.getLang("xhtmlxtras.abbr_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceDel",function(){a.windowManager.open({file:b+"/del.htm",width:340+parseInt(a.getLang("xhtmlxtras.del_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.del_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceIns",function(){a.windowManager.open({file:b+"/ins.htm",width:340+parseInt(a.getLang("xhtmlxtras.ins_delta_width",0)),height:310+parseInt(a.getLang("xhtmlxtras.ins_delta_height",0)),inline:1},{plugin_url:b})});a.addCommand("mceAttributes",function(){a.windowManager.open({file:b+"/attributes.htm",width:380+parseInt(a.getLang("xhtmlxtras.attr_delta_width",0)),height:370+parseInt(a.getLang("xhtmlxtras.attr_delta_height",0)),inline:1},{plugin_url:b})});a.addButton("cite",{title:"xhtmlxtras.cite_desc",cmd:"mceCite"});a.addButton("acronym",{title:"xhtmlxtras.acronym_desc",cmd:"mceAcronym"});a.addButton("abbr",{title:"xhtmlxtras.abbr_desc",cmd:"mceAbbr"});a.addButton("del",{title:"xhtmlxtras.del_desc",cmd:"mceDel"});a.addButton("ins",{title:"xhtmlxtras.ins_desc",cmd:"mceIns"});a.addButton("attribs",{title:"xhtmlxtras.attribs_desc",cmd:"mceAttributes"});a.onNodeChange.add(function(d,c,f,e){f=d.dom.getParent(f,"CITE,ACRONYM,ABBR,DEL,INS");c.setDisabled("cite",e);c.setDisabled("acronym",e);c.setDisabled("abbr",e);c.setDisabled("del",e);c.setDisabled("ins",e);c.setDisabled("attribs",f&&f.nodeName=="BODY");c.setActive("cite",0);c.setActive("acronym",0);c.setActive("abbr",0);c.setActive("del",0);c.setActive("ins",0);if(f){do{c.setDisabled(f.nodeName.toLowerCase(),0);c.setActive(f.nodeName.toLowerCase(),1)}while(f=f.parentNode)}});a.onPreInit.add(function(){a.dom.create("abbr")})},getInfo:function(){return{longname:"XHTML Xtras Plugin",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/xhtmlxtras",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("xhtmlxtras",tinymce.plugins.XHTMLXtrasPlugin)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin_src.js b/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin_src.js index 5f9d9bd50b..f24057211c 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin_src.js +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/editor_plugin_src.js @@ -27,7 +27,7 @@ ed.windowManager.open({ file : url + '/acronym.htm', width : 350 + parseInt(ed.getLang('xhtmlxtras.acronym_delta_width', 0)), - height : 250 + parseInt(ed.getLang('xhtmlxtras.acronym_delta_width', 0)), + height : 250 + parseInt(ed.getLang('xhtmlxtras.acronym_delta_height', 0)), inline : 1 }, { plugin_url : url @@ -38,7 +38,7 @@ ed.windowManager.open({ file : url + '/abbr.htm', width : 350 + parseInt(ed.getLang('xhtmlxtras.abbr_delta_width', 0)), - height : 250 + parseInt(ed.getLang('xhtmlxtras.abbr_delta_width', 0)), + height : 250 + parseInt(ed.getLang('xhtmlxtras.abbr_delta_height', 0)), inline : 1 }, { plugin_url : url @@ -49,7 +49,7 @@ ed.windowManager.open({ file : url + '/del.htm', width : 340 + parseInt(ed.getLang('xhtmlxtras.del_delta_width', 0)), - height : 310 + parseInt(ed.getLang('xhtmlxtras.del_delta_width', 0)), + height : 310 + parseInt(ed.getLang('xhtmlxtras.del_delta_height', 0)), inline : 1 }, { plugin_url : url @@ -60,7 +60,7 @@ ed.windowManager.open({ file : url + '/ins.htm', width : 340 + parseInt(ed.getLang('xhtmlxtras.ins_delta_width', 0)), - height : 310 + parseInt(ed.getLang('xhtmlxtras.ins_delta_width', 0)), + height : 310 + parseInt(ed.getLang('xhtmlxtras.ins_delta_height', 0)), inline : 1 }, { plugin_url : url @@ -70,8 +70,8 @@ ed.addCommand('mceAttributes', function() { ed.windowManager.open({ file : url + '/attributes.htm', - width : 380, - height : 370, + width : 380 + parseInt(ed.getLang('xhtmlxtras.attr_delta_width', 0)), + height : 370 + parseInt(ed.getLang('xhtmlxtras.attr_delta_height', 0)), inline : 1 }, { plugin_url : url diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/ins.htm b/plugins/TinyMCE/js/plugins/xhtmlxtras/ins.htm index 6c5470cfcc..d001ac7c4d 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/ins.htm +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/ins.htm @@ -10,11 +10,12 @@ - + + @@ -23,19 +24,19 @@
{#xhtmlxtras_dlg.fieldset_general_tab} -
:
+
- + @@ -43,9 +44,9 @@
{#xhtmlxtras_dlg.fieldset_attrib_tab} -
: - +
- +
:
+
- + @@ -61,7 +62,7 @@ - + @@ -87,7 +88,7 @@
{#xhtmlxtras_dlg.fieldset_events_tab} -
::
::
+
diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/js/attributes.js b/plugins/TinyMCE/js/plugins/xhtmlxtras/js/attributes.js index d62a219e6b..9c99995adb 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/js/attributes.js +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/js/attributes.js @@ -53,7 +53,6 @@ function insertAction() { var inst = tinyMCEPopup.editor; var elm = inst.selection.getNode(); - tinyMCEPopup.execCommand("mceBeginUndoLevel"); setAllAttribs(elm); tinyMCEPopup.execCommand("mceEndUndoLevel"); tinyMCEPopup.close(); @@ -72,21 +71,7 @@ function setAttrib(elm, attrib, value) { value = valueElm.value; } - if (value != "") { - dom.setAttrib(elm, attrib.toLowerCase(), value); - - if (attrib == "style") - attrib = "style.cssText"; - - if (attrib.substring(0, 2) == 'on') - value = 'return true;' + value; - - if (attrib == "class") - attrib = "className"; - - elm[attrib]=value; - } else - elm.removeAttribute(attrib); + dom.setAttrib(elm, attrib.toLowerCase(), value); } function setAllAttribs(elm) { diff --git a/plugins/TinyMCE/js/plugins/xhtmlxtras/js/del.js b/plugins/TinyMCE/js/plugins/xhtmlxtras/js/del.js index 9e5d8c5717..1f957dc786 100644 --- a/plugins/TinyMCE/js/plugins/xhtmlxtras/js/del.js +++ b/plugins/TinyMCE/js/plugins/xhtmlxtras/js/del.js @@ -21,17 +21,17 @@ function setElementAttribs(elm) { setAllCommonAttribs(elm); setAttrib(elm, 'datetime'); setAttrib(elm, 'cite'); + elm.removeAttribute('data-mce-new'); } function insertDel() { var elm = tinyMCEPopup.editor.dom.getParent(SXE.focusElement, 'DEL'); - tinyMCEPopup.execCommand('mceBeginUndoLevel'); if (elm == null) { var s = SXE.inst.selection.getContent(); if(s.length > 0) { insertInlineElement('del'); - var elementArray = tinymce.grep(SXE.inst.dom.select('del'), function(n) {return n.id == '#sxe_temp_del#';}); + var elementArray = SXE.inst.dom.select('del[data-mce-new]'); for (var i=0; i 0) { @@ -165,11 +164,11 @@ SXE.insertElement = function(element_name) { for (var i=0; i 0) { - insertInlineElement('INS'); - var elementArray = tinymce.grep(SXE.inst.dom.select('ins'), function(n) {return n.id == '#sxe_temp_ins#';}); + insertInlineElement('ins'); + var elementArray = SXE.inst.dom.select('ins[data-mce-new]'); for (var i=0; i
:
+
- + - - + +
{#advanced_dlg.anchor_title}{#advanced_dlg.anchor_title}
{#advanced_dlg.anchor_name}:
diff --git a/plugins/TinyMCE/js/themes/advanced/charmap.htm b/plugins/TinyMCE/js/themes/advanced/charmap.htm index 3991b8141b..2c3b3f27bd 100644 --- a/plugins/TinyMCE/js/themes/advanced/charmap.htm +++ b/plugins/TinyMCE/js/themes/advanced/charmap.htm @@ -6,47 +6,46 @@ - - - - - -
{#advanced_dlg.charmap_title}
+ + + + + + - - - - - + + + + + +
- - - - - - - - -
 
 
-
- - - - - - - - - - - - - - - - -
HTML-Code
 
 
NUM-Code
 
-
+ + + + + + + +
 
 
+
+ + + + + + + + + + + + + + + + +
 
 
 
+
- diff --git a/plugins/TinyMCE/js/themes/advanced/color_picker.htm b/plugins/TinyMCE/js/themes/advanced/color_picker.htm index 096e7550c3..ad1bb0f6cc 100644 --- a/plugins/TinyMCE/js/themes/advanced/color_picker.htm +++ b/plugins/TinyMCE/js/themes/advanced/color_picker.htm @@ -6,13 +6,14 @@ - + + @@ -34,7 +35,7 @@
- {#advanced_dlg.colorpicker_palette_title} + {#advanced_dlg.colorpicker_palette_title}
@@ -44,9 +45,9 @@
-
- {#advanced_dlg.colorpicker_named_title} -
+
+ {#advanced_dlg.colorpicker_named_title} +
@@ -65,7 +66,7 @@
- +
diff --git a/plugins/TinyMCE/js/themes/advanced/editor_template.js b/plugins/TinyMCE/js/themes/advanced/editor_template.js index 4c433127f9..57e7184a83 100644 --- a/plugins/TinyMCE/js/themes/advanced/editor_template.js +++ b/plugins/TinyMCE/js/themes/advanced/editor_template.js @@ -1 +1 @@ -(function(e){var d=e.DOM,b=e.dom.Event,h=e.extend,f=e.each,a=e.util.Cookie,g,c=e.explode;e.ThemeManager.requireLangPack("advanced");e.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(j,k){var l=this,m,i,n;l.editor=j;l.url=k;l.onResolveName=new e.util.Dispatcher(this);l.settings=m=h({theme_advanced_path:true,theme_advanced_toolbar_location:"bottom",theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"center",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",readonly:j.settings.readonly},j.settings);if(!m.font_size_style_values){m.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(e.is(m.theme_advanced_font_sizes,"string")){m.font_size_style_values=e.explode(m.font_size_style_values);m.font_size_classes=e.explode(m.font_size_classes||"");n={};j.settings.theme_advanced_font_sizes=m.theme_advanced_font_sizes;f(j.getParam("theme_advanced_font_sizes","","hash"),function(q,p){var o;if(p==q&&q>=1&&q<=7){p=q+" ("+l.sizes[q-1]+"pt)";o=m.font_size_classes[q-1];q=m.font_size_style_values[q-1]||(l.sizes[q-1]+"pt")}if(/^\s*\./.test(q)){o=q.replace(/\./g,"")}n[p]=o?{"class":o}:{fontSize:q}});m.theme_advanced_font_sizes=n}if((i=m.theme_advanced_path_location)&&i!="none"){m.theme_advanced_statusbar_location=m.theme_advanced_path_location}if(m.theme_advanced_statusbar_location=="none"){m.theme_advanced_statusbar_location=0}j.onInit.add(function(){if(!j.settings.readonly){j.onNodeChange.add(l._nodeChanged,l)}if(j.settings.content_css!==false){j.dom.loadCSS(j.baseURI.toAbsolute("themes/advanced/skins/"+j.settings.skin+"/content.css"))}});j.onSetProgressState.add(function(q,o,r){var s,t=q.id,p;if(o){l.progressTimer=setTimeout(function(){s=q.getContainer();s=s.insertBefore(d.create("DIV",{style:"position:relative"}),s.firstChild);p=d.get(q.id+"_tbl");d.add(s,"div",{id:t+"_blocker","class":"mceBlocker",style:{width:p.clientWidth+2,height:p.clientHeight+2}});d.add(s,"div",{id:t+"_progress","class":"mceProgress",style:{left:p.clientWidth/2,top:p.clientHeight/2}})},r||0)}else{d.remove(t+"_blocker");d.remove(t+"_progress");clearTimeout(l.progressTimer)}});d.loadCSS(m.editor_css?j.documentBaseURI.toAbsolute(m.editor_css):k+"/skins/"+j.settings.skin+"/ui.css");if(m.skin_variant){d.loadCSS(k+"/skins/"+j.settings.skin+"/ui_"+m.skin_variant+".css")}},createControl:function(l,i){var j,k;if(k=i.createControl(l)){return k}switch(l){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((j=this.controls[l])){return i.createButton(l,{title:"advanced."+j[0],cmd:j[1],ui:j[2],value:j[3]})}},execCommand:function(k,j,l){var i=this["_"+k];if(i){i.call(this,j,l);return true}return false},_importClasses:function(k){var i=this.editor,j=i.controlManager.get("styleselect");if(j.getLength()==0){f(i.dom.getClasses(),function(n,l){var m="style_"+l;i.formatter.register(m,{inline:"span",attributes:{"class":n["class"]},selector:"*"});j.add(n["class"],m)})}},_createStyleSelect:function(m){var k=this,i=k.editor,j=i.controlManager,l;l=j.createListBox("styleselect",{title:"advanced.style_select",onselect:function(o){var p,n=[];f(l.items,function(q){n.push(q.value)});i.focus();i.undoManager.add();p=i.formatter.matchAll(n);if(!o||p[0]==o){i.formatter.remove(p[0])}else{i.formatter.apply(o)}i.undoManager.add();i.nodeChanged();return false}});i.onInit.add(function(){var o=0,n=i.getParam("style_formats");if(n){f(n,function(p){var q,r=0;f(p,function(){r++});if(r>1){q=p.name=p.name||"style_"+(o++);i.formatter.register(q,p);l.add(p.title,q)}else{l.add(p.title)}})}else{f(i.getParam("theme_advanced_styles","","hash"),function(r,q){var p;if(r){p="style_"+(o++);i.formatter.register(p,{inline:"span",classes:r,selector:"*"});l.add(k.editor.translate(q),p)}})}});if(l.getLength()==0){l.onPostRender.add(function(o,p){if(!l.NativeListBox){b.add(p.id+"_text","focus",k._importClasses,k);b.add(p.id+"_text","mousedown",k._importClasses,k);b.add(p.id+"_open","focus",k._importClasses,k);b.add(p.id+"_open","mousedown",k._importClasses,k)}else{b.add(p.id,"focus",k._importClasses,k)}})}return l},_createFontSelect:function(){var k,j=this,i=j.editor;k=i.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(l){var m=k.items[k.selectedIndex];if(!l&&m){i.execCommand("FontName",false,m.value);return}i.execCommand("FontName",false,l);k.select(function(n){return l==n});return false}});if(k){f(i.getParam("theme_advanced_fonts",j.settings.theme_advanced_fonts,"hash"),function(m,l){k.add(i.translate(l),m,{style:m.indexOf("dings")==-1?"font-family:"+m:""})})}return k},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(i){var o=n.items[n.selectedIndex];if(!i&&o){o=o.value;if(o["class"]){k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}return}if(i["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:i["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,i.fontSize)}n.select(function(p){return i==p});return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(o,i){var p=o.fontSize;if(p>=1&&p<=7){p=m.sizes[parseInt(p)-1]+"pt"}n.add(i,o,{style:"font-size:"+p,"class":"mceFontSize"+(l++)+(" "+(o["class"]||""))})})}return n},_createBlockFormats:function(){var k,i={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},j=this;k=j.editor.controlManager.createListBox("formatselect",{title:"advanced.block",cmd:"FormatBlock"});if(k){f(j.editor.getParam("theme_advanced_blockformats",j.settings.theme_advanced_blockformats,"hash"),function(m,l){k.add(j.editor.translate(l!=m?l:i[m]),m,{"class":"mce_formatPreview mce_"+m})})}return k},_createForeColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_text_colors){l.colors=i}if(k.theme_advanced_default_foreground_color){l.default_color=k.theme_advanced_default_foreground_color}l.title="advanced.forecolor_desc";l.cmd="ForeColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("forecolor",l);return m},_createBackColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_background_colors){l.colors=i}if(k.theme_advanced_default_background_color){l.default_color=k.theme_advanced_default_background_color}l.title="advanced.backcolor_desc";l.cmd="HiliteColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("backcolor",l);return m},renderUI:function(k){var m,l,q,v=this,r=v.editor,w=v.settings,u,j,i;m=j=d.create("span",{id:r.id+"_parent","class":"mceEditor "+r.settings.skin+"Skin"+(w.skin_variant?" "+r.settings.skin+"Skin"+v._ufirst(w.skin_variant):"")});if(!d.boxModel){m=d.add(m,"div",{"class":"mceOldBoxModel"})}m=u=d.add(m,"table",{id:r.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});m=q=d.add(m,"tbody");switch((w.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":l=v._rowLayout(w,q,k);break;case"customlayout":l=r.execCallback("theme_advanced_custom_layout",w,q,k,j);break;default:l=v._simpleLayout(w,q,k,j)}m=k.targetNode;i=d.stdMode?u.getElementsByTagName("tr"):u.rows;d.addClass(i[0],"mceFirst");d.addClass(i[i.length-1],"mceLast");f(d.select("tr",q),function(o){d.addClass(o.firstChild,"mceFirst");d.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(d.get(w.theme_advanced_toolbar_container)){d.get(w.theme_advanced_toolbar_container).appendChild(j)}else{d.insertAfter(j,m)}b.add(r.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){v._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return b.cancel(n)}});if(!r.getParam("accessibility_focus")){b.add(d.add(j,"a",{href:"#"},""),"focus",function(){tinyMCE.get(r.id).focus()})}if(w.theme_advanced_toolbar_location=="external"){k.deltaHeight=0}v.deltaHeight=k.deltaHeight;k.targetNode=null;return{iframeContainer:l,editorContainer:r.id+"_parent",sizeContainer:u,deltaHeight:k.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:e.majorVersion+"."+e.minorVersion}},resizeBy:function(i,j){var k=d.get(this.editor.id+"_tbl");this.resizeTo(k.clientWidth+i,k.clientHeight+j)},resizeTo:function(i,l){var j=this.editor,k=this.settings,m=d.get(j.id+"_tbl"),n=d.get(j.id+"_ifr");i=Math.max(k.theme_advanced_resizing_min_width||100,i);l=Math.max(k.theme_advanced_resizing_min_height||100,l);i=Math.min(k.theme_advanced_resizing_max_width||65535,i);l=Math.min(k.theme_advanced_resizing_max_height||65535,l);d.setStyle(m,"height","");d.setStyle(n,"height",l);if(k.theme_advanced_resize_horizontal){d.setStyle(m,"width","");d.setStyle(n,"width",i);if(i"))}q.push(d.createHTML("a",{href:"#",accesskey:"q",title:r.getLang("advanced.toolbar_focus")},""));for(p=1;(y=A["theme_advanced_buttons"+p]);p++){m=j.createToolbar("toolbar"+p,{"class":"mceToolbarRow"+p});if(A["theme_advanced_buttons"+p+"_add"]){y+=","+A["theme_advanced_buttons"+p+"_add"]}if(A["theme_advanced_buttons"+p+"_add_before"]){y=A["theme_advanced_buttons"+p+"_add_before"]+","+y}z._addControls(y,m);q.push(m.renderHTML());k.deltaHeight-=A.theme_advanced_row_height}q.push(d.createHTML("a",{href:"#",accesskey:"z",title:r.getLang("advanced.toolbar_focus"),onfocus:"tinyMCE.getInstanceById('"+r.id+"').focus();"},""));d.setHTML(l,q.join(""))},_addStatusBar:function(m,j){var k,v=this,p=v.editor,w=v.settings,i,q,u,l;k=d.add(m,"tr");k=l=d.add(k,"td",{"class":"mceStatusbar"});k=d.add(k,"div",{id:p.id+"_path_row"},w.theme_advanced_path?p.translate("advanced.path")+": ":" ");d.add(k,"a",{href:"#",accesskey:"x"});if(w.theme_advanced_resizing){d.add(l,"a",{id:p.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize"});if(w.theme_advanced_resizing_use_cookie){p.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+p.id+"_size"),r=d.get(p.id+"_tbl");if(!n){return}v.resizeTo(n.cw,n.ch)})}p.onPostRender.add(function(){b.add(p.id+"_resize","mousedown",function(D){var t,r,s,o,C,z,A,F,n,E,x;function y(G){n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E)}function B(G){b.remove(d.doc,"mousemove",t);b.remove(p.getDoc(),"mousemove",r);b.remove(d.doc,"mouseup",s);b.remove(p.getDoc(),"mouseup",o);if(w.theme_advanced_resizing_use_cookie){a.setHash("TinyMCE_"+p.id+"_size",{cw:n,ch:E})}}D.preventDefault();C=D.screenX;z=D.screenY;x=d.get(v.editor.id+"_ifr");A=n=x.clientWidth;F=E=x.clientHeight;t=b.add(d.doc,"mousemove",y);r=b.add(p.getDoc(),"mousemove",y);s=b.add(d.doc,"mouseup",B);o=b.add(p.getDoc(),"mouseup",B)})})}j.deltaHeight-=21;k=m=null},_nodeChanged:function(r,z,l,x,j){var C=this,i,y=0,B,u,D=C.settings,A,k,w,m,q;e.each(C.stateControls,function(n){z.setActive(n,r.queryCommandState(C.controls[n][1]))});function o(p){var s,n=j.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s=1&&q<=7){p=q+" ("+l.sizes[q-1]+"pt)";o=m.font_size_classes[q-1];q=m.font_size_style_values[q-1]||(l.sizes[q-1]+"pt")}if(/^\s*\./.test(q)){o=q.replace(/\./g,"")}n[p]=o?{"class":o}:{fontSize:q}});m.theme_advanced_font_sizes=n}if((i=m.theme_advanced_path_location)&&i!="none"){m.theme_advanced_statusbar_location=m.theme_advanced_path_location}if(m.theme_advanced_statusbar_location=="none"){m.theme_advanced_statusbar_location=0}if(j.settings.content_css!==false){j.contentCSS.push(j.baseURI.toAbsolute(k+"/skins/"+j.settings.skin+"/content.css"))}j.onInit.add(function(){if(!j.settings.readonly){j.onNodeChange.add(l._nodeChanged,l);j.onKeyUp.add(l._updateUndoStatus,l);j.onMouseUp.add(l._updateUndoStatus,l);j.dom.bind(j.dom.getRoot(),"dragend",function(){l._updateUndoStatus(j)})}});j.onSetProgressState.add(function(q,o,r){var s,t=q.id,p;if(o){l.progressTimer=setTimeout(function(){s=q.getContainer();s=s.insertBefore(d.create("DIV",{style:"position:relative"}),s.firstChild);p=d.get(q.id+"_tbl");d.add(s,"div",{id:t+"_blocker","class":"mceBlocker",style:{width:p.clientWidth+2,height:p.clientHeight+2}});d.add(s,"div",{id:t+"_progress","class":"mceProgress",style:{left:p.clientWidth/2,top:p.clientHeight/2}})},r||0)}else{d.remove(t+"_blocker");d.remove(t+"_progress");clearTimeout(l.progressTimer)}});d.loadCSS(m.editor_css?j.documentBaseURI.toAbsolute(m.editor_css):k+"/skins/"+j.settings.skin+"/ui.css");if(m.skin_variant){d.loadCSS(k+"/skins/"+j.settings.skin+"/ui_"+m.skin_variant+".css")}},_isHighContrast:function(){var i,j=d.add(d.getRoot(),"div",{style:"background-color: rgb(171,239,86);"});i=(d.getStyle(j,"background-color",true)+"").toLowerCase().replace(/ /g,"");d.remove(j);return i!="rgb(171,239,86)"&&i!="#abef56"},createControl:function(l,i){var j,k;if(k=i.createControl(l)){return k}switch(l){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((j=this.controls[l])){return i.createButton(l,{title:"advanced."+j[0],cmd:j[1],ui:j[2],value:j[3]})}},execCommand:function(k,j,l){var i=this["_"+k];if(i){i.call(this,j,l);return true}return false},_importClasses:function(k){var i=this.editor,j=i.controlManager.get("styleselect");if(j.getLength()==0){f(i.dom.getClasses(),function(n,l){var m="style_"+l;i.formatter.register(m,{inline:"span",attributes:{"class":n["class"]},selector:"*"});j.add(n["class"],m)})}},_createStyleSelect:function(m){var k=this,i=k.editor,j=i.controlManager,l;l=j.createListBox("styleselect",{title:"advanced.style_select",onselect:function(o){var p,n=[];f(l.items,function(q){n.push(q.value)});i.focus();i.undoManager.add();p=i.formatter.matchAll(n);if(!o||p[0]==o){if(p[0]){i.formatter.remove(p[0])}}else{i.formatter.apply(o)}i.undoManager.add();i.nodeChanged();return false}});i.onInit.add(function(){var o=0,n=i.getParam("style_formats");if(n){f(n,function(p){var q,r=0;f(p,function(){r++});if(r>1){q=p.name=p.name||"style_"+(o++);i.formatter.register(q,p);l.add(p.title,q)}else{l.add(p.title)}})}else{f(i.getParam("theme_advanced_styles","","hash"),function(r,q){var p;if(r){p="style_"+(o++);i.formatter.register(p,{inline:"span",classes:r,selector:"*"});l.add(k.editor.translate(q),p)}})}});if(l.getLength()==0){l.onPostRender.add(function(o,p){if(!l.NativeListBox){b.add(p.id+"_text","focus",k._importClasses,k);b.add(p.id+"_text","mousedown",k._importClasses,k);b.add(p.id+"_open","focus",k._importClasses,k);b.add(p.id+"_open","mousedown",k._importClasses,k)}else{b.add(p.id,"focus",k._importClasses,k)}})}return l},_createFontSelect:function(){var k,j=this,i=j.editor;k=i.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(l){var m=k.items[k.selectedIndex];if(!l&&m){i.execCommand("FontName",false,m.value);return}i.execCommand("FontName",false,l);k.select(function(n){return l==n});if(m&&m.value==l){k.select(null)}return false}});if(k){f(i.getParam("theme_advanced_fonts",j.settings.theme_advanced_fonts,"hash"),function(m,l){k.add(i.translate(l),m,{style:m.indexOf("dings")==-1?"font-family:"+m:""})})}return k},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(i){var o=n.items[n.selectedIndex];if(!i&&o){o=o.value;if(o["class"]){k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}return}if(i["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:i["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,i.fontSize)}n.select(function(p){return i==p});if(o&&(o.value.fontSize==i.fontSize||o.value["class"]==i["class"])){n.select(null)}return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(o,i){var p=o.fontSize;if(p>=1&&p<=7){p=m.sizes[parseInt(p)-1]+"pt"}n.add(i,o,{style:"font-size:"+p,"class":"mceFontSize"+(l++)+(" "+(o["class"]||""))})})}return n},_createBlockFormats:function(){var k,i={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},j=this;k=j.editor.controlManager.createListBox("formatselect",{title:"advanced.block",onselect:function(l){j.editor.execCommand("FormatBlock",false,l);return false}});if(k){f(j.editor.getParam("theme_advanced_blockformats",j.settings.theme_advanced_blockformats,"hash"),function(m,l){k.add(j.editor.translate(l!=m?l:i[m]),m,{"class":"mce_formatPreview mce_"+m})})}return k},_createForeColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_text_colors){l.colors=i}if(k.theme_advanced_default_foreground_color){l.default_color=k.theme_advanced_default_foreground_color}l.title="advanced.forecolor_desc";l.cmd="ForeColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("forecolor",l);return m},_createBackColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_background_colors){l.colors=i}if(k.theme_advanced_default_background_color){l.default_color=k.theme_advanced_default_background_color}l.title="advanced.backcolor_desc";l.cmd="HiliteColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("backcolor",l);return m},renderUI:function(k){var m,l,q,v=this,r=v.editor,w=v.settings,u,j,i;if(r.settings){r.settings.aria_label=w.aria_label+r.getLang("advanced.help_shortcut")}m=j=d.create("span",{role:"application","aria-labelledby":r.id+"_voice",id:r.id+"_parent","class":"mceEditor "+r.settings.skin+"Skin"+(w.skin_variant?" "+r.settings.skin+"Skin"+v._ufirst(w.skin_variant):"")});d.add(m,"span",{"class":"mceVoiceLabel",style:"display:none;",id:r.id+"_voice"},w.aria_label);if(!d.boxModel){m=d.add(m,"div",{"class":"mceOldBoxModel"})}m=u=d.add(m,"table",{role:"presentation",id:r.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});m=q=d.add(m,"tbody");switch((w.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":l=v._rowLayout(w,q,k);break;case"customlayout":l=r.execCallback("theme_advanced_custom_layout",w,q,k,j);break;default:l=v._simpleLayout(w,q,k,j)}m=k.targetNode;i=u.rows;d.addClass(i[0],"mceFirst");d.addClass(i[i.length-1],"mceLast");f(d.select("tr",q),function(o){d.addClass(o.firstChild,"mceFirst");d.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(d.get(w.theme_advanced_toolbar_container)){d.get(w.theme_advanced_toolbar_container).appendChild(j)}else{d.insertAfter(j,m)}b.add(r.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){v._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return b.cancel(n)}});if(!r.getParam("accessibility_focus")){b.add(d.add(j,"a",{href:"#"},""),"focus",function(){tinyMCE.get(r.id).focus()})}if(w.theme_advanced_toolbar_location=="external"){k.deltaHeight=0}v.deltaHeight=k.deltaHeight;k.targetNode=null;r.onKeyDown.add(function(p,n){var s=121,o=122;if(n.altKey){if(n.keyCode===s){window.focus();v.toolbarGroup.focus();return b.cancel(n)}else{if(n.keyCode===o){d.get(p.id+"_path_row").focus();return b.cancel(n)}}}});r.addShortcut("alt+0","","mceShortcuts",v);return{iframeContainer:l,editorContainer:r.id+"_parent",sizeContainer:u,deltaHeight:k.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:e.majorVersion+"."+e.minorVersion}},resizeBy:function(i,j){var k=d.get(this.editor.id+"_ifr");this.resizeTo(k.clientWidth+i,k.clientHeight+j)},resizeTo:function(i,m,k){var j=this.editor,l=this.settings,n=d.get(j.id+"_tbl"),o=d.get(j.id+"_ifr");i=Math.max(l.theme_advanced_resizing_min_width||100,i);m=Math.max(l.theme_advanced_resizing_min_height||100,m);i=Math.min(l.theme_advanced_resizing_max_width||65535,i);m=Math.min(l.theme_advanced_resizing_max_height||65535,m);d.setStyle(n,"height","");d.setStyle(o,"height",m);if(l.theme_advanced_resize_horizontal){d.setStyle(n,"width","");d.setStyle(o,"width",i);if(i"));d.setHTML(l,q.join(""))},_addStatusBar:function(m,j){var k,v=this,p=v.editor,w=v.settings,i,q,u,l;k=d.add(m,"tr");k=l=d.add(k,"td",{"class":"mceStatusbar"});k=d.add(k,"div",{id:p.id+"_path_row",role:"group","aria-labelledby":p.id+"_path_voice"});if(w.theme_advanced_path){d.add(k,"span",{id:p.id+"_path_voice"},p.translate("advanced.path"));d.add(k,"span",{},": ")}else{d.add(k,"span",{}," ")}if(w.theme_advanced_resizing){d.add(l,"a",{id:p.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize"});if(w.theme_advanced_resizing_use_cookie){p.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+p.id+"_size"),r=d.get(p.id+"_tbl");if(!n){return}v.resizeTo(n.cw,n.ch)})}p.onPostRender.add(function(){b.add(p.id+"_resize","click",function(n){n.preventDefault()});b.add(p.id+"_resize","mousedown",function(D){var t,r,s,o,C,z,A,F,n,E,x;function y(G){G.preventDefault();n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E)}function B(G){b.remove(d.doc,"mousemove",t);b.remove(p.getDoc(),"mousemove",r);b.remove(d.doc,"mouseup",s);b.remove(p.getDoc(),"mouseup",o);n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E,true)}D.preventDefault();C=D.screenX;z=D.screenY;x=d.get(v.editor.id+"_ifr");A=n=x.clientWidth;F=E=x.clientHeight;t=b.add(d.doc,"mousemove",y);r=b.add(p.getDoc(),"mousemove",y);s=b.add(d.doc,"mouseup",B);o=b.add(p.getDoc(),"mouseup",B)})})}j.deltaHeight-=21;k=m=null},_updateUndoStatus:function(j){var i=j.controlManager,k=j.undoManager;i.setDisabled("undo",!k.hasUndo()&&!k.typing);i.setDisabled("redo",!k.hasRedo())},_nodeChanged:function(m,r,D,q,E){var y=this,C,F=0,x,G,z=y.settings,w,k,u,B,l,j,i;e.each(y.stateControls,function(n){r.setActive(n,m.queryCommandState(y.controls[n][1]))});function o(p){var s,n=E.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s0){y.statusKeyboardNavigation=new e.ui.KeyboardNavigation({root:m.id+"_path_row",items:d.select("a",C),excludeFromTabOrder:true,onCancel:function(){m.focus()}},d)}}},_sel:function(i){this.editor.execCommand("mceSelectNodeDepth",false,i)},_mceInsertAnchor:function(k,j){var i=this.editor;i.windowManager.open({url:this.url+"/anchor.htm",width:320+parseInt(i.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(i.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var i=this.editor;i.windowManager.open({url:this.url+"/charmap.htm",width:550+parseInt(i.getLang("advanced.charmap_delta_width",0)),height:250+parseInt(i.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var i=this.editor;i.windowManager.open({url:this.url+"/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceShortcuts:function(){var i=this.editor;i.windowManager.open({url:this.url+"/shortcuts.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(k,j){var i=this.editor;j=j||{};i.windowManager.open({url:this.url+"/color_picker.htm",width:375+parseInt(i.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(i.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:j.color,func:j.func,theme_url:this.url})},_mceCodeEditor:function(j,k){var i=this.editor;i.windowManager.open({url:this.url+"/source_editor.htm",width:parseInt(i.getParam("theme_advanced_source_editor_width",720)),height:parseInt(i.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(j,k){var i=this.editor;if(i.dom.getAttrib(i.selection.getNode(),"class").indexOf("mceItem")!=-1){return}i.windowManager.open({url:this.url+"/image.htm",width:355+parseInt(i.getLang("advanced.image_delta_width",0)),height:275+parseInt(i.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(j,k){var i=this.editor;i.windowManager.open({url:this.url+"/link.htm",width:310+parseInt(i.getLang("advanced.link_delta_width",0)),height:200+parseInt(i.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var i=this.editor;i.windowManager.confirm("advanced.newdocument",function(j){if(j){i.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var i=this;this._mceColorPicker(0,{color:i.fgColor,func:function(j){i.fgColor=j;i.editor.execCommand("ForeColor",false,j)}})},_mceBackColor:function(){var i=this;this._mceColorPicker(0,{color:i.bgColor,func:function(j){i.bgColor=j;i.editor.execCommand("HiliteColor",false,j)}})},_ufirst:function(i){return i.substring(0,1).toUpperCase()+i.substring(1)}});e.ThemeManager.add("advanced",e.themes.AdvancedTheme)}(tinymce)); \ No newline at end of file diff --git a/plugins/TinyMCE/js/themes/advanced/editor_template_src.js b/plugins/TinyMCE/js/themes/advanced/editor_template_src.js index e0d4dacc0c..d62f497e61 100644 --- a/plugins/TinyMCE/js/themes/advanced/editor_template_src.js +++ b/plugins/TinyMCE/js/themes/advanced/editor_template_src.js @@ -66,6 +66,9 @@ t.url = url; t.onResolveName = new tinymce.util.Dispatcher(this); + ed.forcedHighContrastMode = ed.settings.detect_highcontrast && t._isHighContrast(); + ed.settings.skin = ed.forcedHighContrastMode ? 'highcontrast' : ed.settings.skin; + // Default settings t.settings = s = extend({ theme_advanced_path : true, @@ -81,6 +84,8 @@ theme_advanced_resize_horizontal : 1, theme_advanced_resizing_use_cookie : 1, theme_advanced_font_sizes : "1,2,3,4,5,6,7", + theme_advanced_font_selector : "span", + theme_advanced_show_current_color: 0, readonly : ed.settings.readonly }, ed.settings); @@ -119,13 +124,19 @@ if (s.theme_advanced_statusbar_location == 'none') s.theme_advanced_statusbar_location = 0; + if (ed.settings.content_css !== false) + ed.contentCSS.push(ed.baseURI.toAbsolute(url + "/skins/" + ed.settings.skin + "/content.css")); + // Init editor ed.onInit.add(function() { - if (!ed.settings.readonly) + if (!ed.settings.readonly) { ed.onNodeChange.add(t._nodeChanged, t); - - if (ed.settings.content_css !== false) - ed.dom.loadCSS(ed.baseURI.toAbsolute("themes/advanced/skins/" + ed.settings.skin + "/content.css")); + ed.onKeyUp.add(t._updateUndoStatus, t); + ed.onMouseUp.add(t._updateUndoStatus, t); + ed.dom.bind(ed.dom.getRoot(), 'dragend', function() { + t._updateUndoStatus(ed); + }); + } }); ed.onSetProgressState.add(function(ed, b, ti) { @@ -153,6 +164,15 @@ DOM.loadCSS(url + "/skins/" + ed.settings.skin + "/ui_" + s.skin_variant + ".css"); }, + _isHighContrast : function() { + var actualColor, div = DOM.add(DOM.getRoot(), 'div', {'style': 'background-color: rgb(171,239,86);'}); + + actualColor = (DOM.getStyle(div, 'background-color', true) + '').toLowerCase().replace(/ /g, ''); + DOM.remove(div); + + return actualColor != 'rgb(171,239,86)' && actualColor != '#abef56'; + }, + createControl : function(n, cf) { var cd, c; @@ -230,9 +250,10 @@ // Toggle off the current format matches = ed.formatter.matchAll(formatNames); - if (!name || matches[0] == name) - ed.formatter.remove(matches[0]); - else + if (!name || matches[0] == name) { + if (matches[0]) + ed.formatter.remove(matches[0]); + } else ed.formatter.apply(name); ed.undoManager.add(); @@ -314,6 +335,10 @@ return v == sv; }); + if (cur && cur.value == v) { + c.select(null); + } + return false; // No auto select } }); @@ -361,6 +386,10 @@ return v == sv; }); + if (cur && (cur.value.fontSize == v.fontSize || cur.value['class'] == v['class'])) { + c.select(null); + } + return false; // No auto select }}); @@ -397,7 +426,11 @@ samp : 'advanced.samp' }, t = this; - c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', cmd : 'FormatBlock'}); + c = t.editor.controlManager.createListBox('formatselect', {title : 'advanced.block', onselect : function(v) { + t.editor.execCommand('FormatBlock', false, v); + return false; + }}); + if (c) { each(t.editor.getParam('theme_advanced_blockformats', t.settings.theme_advanced_blockformats, 'hash'), function(v, k) { c.add(t.editor.translate(k != v ? k : fmts[v]), v, {'class' : 'mce_formatPreview mce_' + v}); @@ -468,12 +501,19 @@ renderUI : function(o) { var n, ic, tb, t = this, ed = t.editor, s = t.settings, sc, p, nl; - n = p = DOM.create('span', {id : ed.id + '_parent', 'class' : 'mceEditor ' + ed.settings.skin + 'Skin' + (s.skin_variant ? ' ' + ed.settings.skin + 'Skin' + t._ufirst(s.skin_variant) : '')}); + if (ed.settings) { + ed.settings.aria_label = s.aria_label + ed.getLang('advanced.help_shortcut'); + } + + // TODO: ACC Should have an aria-describedby attribute which is user-configurable to describe what this field is actually for. + // Maybe actually inherit it from the original textara? + n = p = DOM.create('span', {role : 'application', 'aria-labelledby' : ed.id + '_voice', id : ed.id + '_parent', 'class' : 'mceEditor ' + ed.settings.skin + 'Skin' + (s.skin_variant ? ' ' + ed.settings.skin + 'Skin' + t._ufirst(s.skin_variant) : '')}); + DOM.add(n, 'span', {'class': 'mceVoiceLabel', 'style': 'display:none;', id: ed.id + '_voice'}, s.aria_label); if (!DOM.boxModel) n = DOM.add(n, 'div', {'class' : 'mceOldBoxModel'}); - n = sc = DOM.add(n, 'table', {id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0}); + n = sc = DOM.add(n, 'table', {role : "presentation", id : ed.id + '_tbl', 'class' : 'mceLayout', cellSpacing : 0, cellPadding : 0}); n = tb = DOM.add(n, 'tbody'); switch ((s.theme_advanced_layout_manager || '').toLowerCase()) { @@ -492,7 +532,7 @@ n = o.targetNode; // Add classes to first and last TRs - nl = DOM.stdMode ? sc.getElementsByTagName('tr') : sc.rows; // Quick fix for IE 8 + nl = sc.rows; DOM.addClass(nl[0], 'mceFirst'); DOM.addClass(nl[nl.length - 1], 'mceLast'); @@ -548,6 +588,24 @@ t.deltaHeight = o.deltaHeight; o.targetNode = null; + ed.onKeyDown.add(function(ed, evt) { + var DOM_VK_F10 = 121, DOM_VK_F11 = 122; + + if (evt.altKey) { + if (evt.keyCode === DOM_VK_F10) { + window.focus(); + t.toolbarGroup.focus(); + return Event.cancel(evt); + } else if (evt.keyCode === DOM_VK_F11) { + DOM.get(ed.id + '_path_row').focus(); + return Event.cancel(evt); + } + } + }); + + // alt+0 is the UK recommended shortcut for accessing the list of access controls. + ed.addShortcut('alt+0', '', 'mceShortcuts', t); + return { iframeContainer : ic, editorContainer : ed.id + '_parent', @@ -566,12 +624,12 @@ }, resizeBy : function(dw, dh) { - var e = DOM.get(this.editor.id + '_tbl'); + var e = DOM.get(this.editor.id + '_ifr'); this.resizeTo(e.clientWidth + dw, e.clientHeight + dh); }, - resizeTo : function(w, h) { + resizeTo : function(w, h, store) { var ed = this.editor, s = this.settings, e = DOM.get(ed.id + '_tbl'), ifr = DOM.get(ed.id + '_ifr'); // Boundery fix box @@ -589,8 +647,18 @@ DOM.setStyle(ifr, 'width', w); // Make sure that the size is never smaller than the over all ui - if (w < e.clientWidth) + if (w < e.clientWidth) { + w = e.clientWidth; DOM.setStyle(ifr, 'width', e.clientWidth); + } + } + + // Store away the size + if (store && s.theme_advanced_resizing_use_cookie) { + Cookie.setHash("TinyMCE_" + ed.id + "_size", { + cw : w, + ch : h + }); } }, @@ -685,7 +753,7 @@ each(explode(s.theme_advanced_containers || ''), function(c, i) { var v = s['theme_advanced_container_' + c] || ''; - switch (v.toLowerCase()) { + switch (c.toLowerCase()) { case 'mceeditor': n = DOM.add(tb, 'tr'); n = ic = DOM.add(n, 'td', {'class' : 'mceIframeContainer'}); @@ -753,17 +821,19 @@ }, _addToolbars : function(c, o) { - var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a; + var t = this, i, tb, ed = t.editor, s = t.settings, v, cf = ed.controlManager, di, n, h = [], a, toolbarGroup; + + toolbarGroup = cf.createToolbarGroup('toolbargroup', { + 'name': ed.getLang('advanced.toolbar'), + 'tab_focus_toolbar':ed.getParam('theme_advanced_tab_focus_toolbar') + }); + + t.toolbarGroup = toolbarGroup; a = s.theme_advanced_toolbar_align.toLowerCase(); a = 'mce' + t._ufirst(a); - n = DOM.add(DOM.add(c, 'tr'), 'td', {'class' : 'mceToolbar ' + a}); - - if (!ed.getParam('accessibility_focus')) - h.push(DOM.createHTML('a', {href : '#', onfocus : 'tinyMCE.get(\'' + ed.id + '\').focus();'}, '')); - - h.push(DOM.createHTML('a', {href : '#', accesskey : 'q', title : ed.getLang("advanced.toolbar_focus")}, '')); + n = DOM.add(DOM.add(c, 'tr', {role: 'presentation'}), 'td', {'class' : 'mceToolbar ' + a, "role":"presentation"}); // Create toolbar and add the controls for (i=1; (v = s['theme_advanced_buttons' + i]); i++) { @@ -776,13 +846,11 @@ v = s['theme_advanced_buttons' + i + '_add_before'] + ',' + v; t._addControls(v, tb); - - //n.appendChild(n = tb.render()); - h.push(tb.renderHTML()); + toolbarGroup.add(tb); o.deltaHeight -= s.theme_advanced_row_height; } - + h.push(toolbarGroup.renderHTML()); h.push(DOM.createHTML('a', {href : '#', accesskey : 'z', title : ed.getLang("advanced.toolbar_focus"), onfocus : 'tinyMCE.getInstanceById(\'' + ed.id + '\').focus();'}, '')); DOM.setHTML(n, h.join('')); }, @@ -791,9 +859,15 @@ var n, t = this, ed = t.editor, s = t.settings, r, mf, me, td; n = DOM.add(tb, 'tr'); - n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'}); - n = DOM.add(n, 'div', {id : ed.id + '_path_row'}, s.theme_advanced_path ? ed.translate('advanced.path') + ': ' : ' '); - DOM.add(n, 'a', {href : '#', accesskey : 'x'}); + n = td = DOM.add(n, 'td', {'class' : 'mceStatusbar'}); + n = DOM.add(n, 'div', {id : ed.id + '_path_row', 'role': 'group', 'aria-labelledby': ed.id + '_path_voice'}); + if (s.theme_advanced_path) { + DOM.add(n, 'span', {id: ed.id + '_path_voice'}, ed.translate('advanced.path')); + DOM.add(n, 'span', {}, ': '); + } else { + DOM.add(n, 'span', {}, ' '); + } + if (s.theme_advanced_resizing) { DOM.add(td, 'a', {id : ed.id + '_resize', href : 'javascript:;', onclick : "return false;", 'class' : 'mceResize'}); @@ -810,12 +884,18 @@ } ed.onPostRender.add(function() { + Event.add(ed.id + '_resize', 'click', function(e) { + e.preventDefault(); + }); + Event.add(ed.id + '_resize', 'mousedown', function(e) { var mouseMoveHandler1, mouseMoveHandler2, mouseUpHandler1, mouseUpHandler2, startX, startY, startWidth, startHeight, width, height, ifrElm; function resizeOnMove(e) { + e.preventDefault(); + width = startWidth + (e.screenX - startX); height = startHeight + (e.screenY - startY); @@ -829,13 +909,9 @@ Event.remove(DOM.doc, 'mouseup', mouseUpHandler1); Event.remove(ed.getDoc(), 'mouseup', mouseUpHandler2); - // Store away the size - if (s.theme_advanced_resizing_use_cookie) { - Cookie.setHash("TinyMCE_" + ed.id + "_size", { - cw : width, - ch : height - }); - } + width = startWidth + (e.screenX - startX); + height = startHeight + (e.screenY - startY); + t.resizeTo(width, height, true); }; e.preventDefault(); @@ -860,8 +936,15 @@ n = tb = null; }, + _updateUndoStatus : function(ed) { + var cm = ed.controlManager, um = ed.undoManager; + + cm.setDisabled('undo', !um.hasUndo() && !um.typing); + cm.setDisabled('redo', !um.hasRedo()); + }, + _nodeChanged : function(ed, cm, n, co, ob) { - var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn, formatNames, matches; + var t = this, p, de = 0, v, c, s = t.settings, cl, fz, fn, fc, bc, formatNames, matches; tinymce.each(t.stateControls, function(c) { cm.setActive(c, ed.queryCommandState(t.controls[c][1])); @@ -883,8 +966,7 @@ }; cm.setActive('visualaid', ed.hasVisual); - cm.setDisabled('undo', !ed.undoManager.hasUndo() && !ed.typing); - cm.setDisabled('redo', !ed.undoManager.hasRedo()); + t._updateUndoStatus(ed); cm.setDisabled('outdent', !ed.queryCommandState('Outdent')); p = getParent('A'); @@ -901,12 +983,12 @@ } if (c = cm.get('anchor')) { - c.setActive(!!p && p.name); + c.setActive(!co && !!p && p.name); } p = getParent('IMG'); if (c = cm.get('image')) - c.setActive(!!p && n.className.indexOf('mceItem') == -1); + c.setActive(!co && !!p && n.className.indexOf('mceItem') == -1); if (c = cm.get('styleselect')) { t._importClasses(); @@ -932,12 +1014,20 @@ if (n.nodeName === 'SPAN') { if (!cl && n.className) cl = n.className; + } + if (ed.dom.is(n, s.theme_advanced_font_selector)) { if (!fz && n.style.fontSize) fz = n.style.fontSize; if (!fn && n.style.fontFamily) fn = n.style.fontFamily.replace(/[\"\']+/g, '').replace(/^([^,]+).*/, '$1').toLowerCase(); + + if (!fc && n.style.color) + fc = n.style.color; + + if (!bc && n.style.backgroundColor) + bc = n.style.backgroundColor; } return false; @@ -963,24 +1053,52 @@ return true; }); } + + if (s.theme_advanced_show_current_color) { + function updateColor(controlId, color) { + if (c = cm.get(controlId)) { + if (!color) + color = c.settings.default_color; + if (color !== c.value) { + c.displayColor(color); + } + } + } + updateColor('forecolor', fc); + updateColor('backcolor', bc); + } + + if (s.theme_advanced_show_current_color) { + function updateColor(controlId, color) { + if (c = cm.get(controlId)) { + if (!color) + color = c.settings.default_color; + if (color !== c.value) { + c.displayColor(color); + } + } + }; + + updateColor('forecolor', fc); + updateColor('backcolor', bc); + } if (s.theme_advanced_path && s.theme_advanced_statusbar_location) { p = DOM.get(ed.id + '_path') || DOM.add(ed.id + '_path_row', 'span', {id : ed.id + '_path'}); + + if (t.statusKeyboardNavigation) { + t.statusKeyboardNavigation.destroy(); + t.statusKeyboardNavigation = null; + } + DOM.setHTML(p, ''); getParent(function(n) { var na = n.nodeName.toLowerCase(), u, pi, ti = ''; - /*if (n.getAttribute('_mce_bogus')) + // Ignore non element and bogus/hidden elements + if (n.nodeType != 1 || na === 'br' || n.getAttribute('data-mce-bogus') || DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved')) return; -*/ - // Ignore non element and hidden elements - if (n.nodeType != 1 || n.nodeName === 'BR' || (DOM.hasClass(n, 'mceItemHidden') || DOM.hasClass(n, 'mceItemRemoved'))) - return; - - // Fake name - if (v = DOM.getAttrib(n, 'mce_name')) - na = v; // Handle prefix if (tinymce.isIE && n.scopeName !== 'HTML') @@ -1056,14 +1174,25 @@ na = na.name; //u = "javascript:tinymce.EditorManager.get('" + ed.id + "').theme._sel('" + (de++) + "');"; - pi = DOM.create('a', {'href' : "javascript:;", onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na); + pi = DOM.create('a', {'href' : "javascript:;", role: 'button', onmousedown : "return false;", title : ti, 'class' : 'mcePath_' + (de++)}, na); if (p.hasChildNodes()) { - p.insertBefore(DOM.doc.createTextNode(' \u00bb '), p.firstChild); + p.insertBefore(DOM.create('span', {'aria-hidden': 'true'}, '\u00a0\u00bb '), p.firstChild); p.insertBefore(pi, p.firstChild); } else p.appendChild(pi); }, ed.getBody()); + + if (DOM.select('a', p).length > 0) { + t.statusKeyboardNavigation = new tinymce.ui.KeyboardNavigation({ + root: ed.id + "_path_row", + items: DOM.select('a', p), + excludeFromTabOrder: true, + onCancel: function() { + ed.focus(); + } + }, DOM); + } } }, @@ -1077,7 +1206,7 @@ var ed = this.editor; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/anchor.htm', + url : this.url + '/anchor.htm', width : 320 + parseInt(ed.getLang('advanced.anchor_delta_width', 0)), height : 90 + parseInt(ed.getLang('advanced.anchor_delta_height', 0)), inline : true @@ -1090,7 +1219,7 @@ var ed = this.editor; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/charmap.htm', + url : this.url + '/charmap.htm', width : 550 + parseInt(ed.getLang('advanced.charmap_delta_width', 0)), height : 250 + parseInt(ed.getLang('advanced.charmap_delta_height', 0)), inline : true @@ -1103,7 +1232,7 @@ var ed = this.editor; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/about.htm', + url : this.url + '/about.htm', width : 480, height : 380, inline : true @@ -1112,13 +1241,25 @@ }); }, + _mceShortcuts : function() { + var ed = this.editor; + ed.windowManager.open({ + url: this.url + '/shortcuts.htm', + width: 480, + height: 380, + inline: true + }, { + theme_url: this.url + }); + }, + _mceColorPicker : function(u, v) { var ed = this.editor; v = v || {}; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/color_picker.htm', + url : this.url + '/color_picker.htm', width : 375 + parseInt(ed.getLang('advanced.colorpicker_delta_width', 0)), height : 250 + parseInt(ed.getLang('advanced.colorpicker_delta_height', 0)), close_previous : false, @@ -1134,7 +1275,7 @@ var ed = this.editor; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/source_editor.htm', + url : this.url + '/source_editor.htm', width : parseInt(ed.getParam("theme_advanced_source_editor_width", 720)), height : parseInt(ed.getParam("theme_advanced_source_editor_height", 580)), inline : true, @@ -1153,7 +1294,7 @@ return; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/image.htm', + url : this.url + '/image.htm', width : 355 + parseInt(ed.getLang('advanced.image_delta_width', 0)), height : 275 + parseInt(ed.getLang('advanced.image_delta_height', 0)), inline : true @@ -1166,7 +1307,7 @@ var ed = this.editor; ed.windowManager.open({ - url : tinymce.baseURL + '/themes/advanced/link.htm', + url : this.url + '/link.htm', width : 310 + parseInt(ed.getLang('advanced.link_delta_width', 0)), height : 200 + parseInt(ed.getLang('advanced.link_delta_height', 0)), inline : true @@ -1214,4 +1355,4 @@ }); tinymce.ThemeManager.add('advanced', tinymce.themes.AdvancedTheme); -}(tinymce)); \ No newline at end of file +}(tinymce)); diff --git a/plugins/TinyMCE/js/themes/advanced/image.htm b/plugins/TinyMCE/js/themes/advanced/image.htm index f30d670641..b8ba729f6f 100644 --- a/plugins/TinyMCE/js/themes/advanced/image.htm +++ b/plugins/TinyMCE/js/themes/advanced/image.htm @@ -17,57 +17,57 @@
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
 
- x -
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
 
+ x +
diff --git a/plugins/TinyMCE/js/themes/advanced/img/colorpicker.jpg b/plugins/TinyMCE/js/themes/advanced/img/colorpicker.jpg index b4c542d107b25f68a9d4f9d7a109d0565d1f1437..b1a377aba7784d3a0a0fabb4d22b8114cde25ace 100644 GIT binary patch delta 2365 zcmYjO3pmqzAD>I9aMlowjp#C>)aEu~#cYyDxlQJt%Q?biYTo#tN~-`!P7ZFtr#nbAadE%ze9HDSzJMmFK4-1(Z9?%`+We=EjEv|W8 z!>fdSp#4VT&;i*tOEuLrFX!SvV5H)yQ$M{NTKU}Rsefh3dVL?o0U74_i)ZpjwWnX6 z6^GWUCyvDw8vI51WW6>*;PC!a;G{L3-)U)nS4+Mz!|^Nm96;x!$DzG3Jg0jb`V-hT z!RX58Qg_~Hsn)#>vYGK5Cq(JfK-%aRXp7MeN&Rl53iw{+L-+)W-WD?_Gv)rlC}&nC zch!w<-^aJ@-bXR16@ZXoZ~3np zHkJWU^yj*MC@S4CIAgtc)vERJ4#=w=c+x!dem~k9`*nt*JjoffY`OboyxPRP%Mp{o z3Is?qbu6n_(|p={5t(PxygI_$Ki%gJ3y86r22ZDXMbgbic+$jl@tct8aDGX^P8!5py0G(Y*e#hDL&adl}yF;&k=#MEQU?%wx7lj zg^D@iej=|$udQ;j$Y1u^zY&>rQP;i^ny}sb(MkyS^{Avxui{9St*d5QRuoe&vw$RE zP`P<}Ncy#QG=nPKM&5dVQ)wId<$bVOT??<&g0+x8xGtRC`12NY#>OFV_7*T09&zsL z$6JHpw~f9AFw<)B2$mIpy3fZdjzLS$Uyis3_x*H`v6FzN8P#9b2*N+pXh^Jp%< zz3=id_o{p`@dx!kNv6xdkh)!+r};VKp+81TQAtfJA$uPhjO16p$i=Pcb7qyFpUFM6 zXh>#7zZRNa?>}H--9-52_OSz4;D6Tgn<8GBk53x#-fy?Vuk56y^f59&d*(4bIYY00ZBdgfF#EuHHg( z-H;=%Gix(awxAypdOXi&u4L12N-yjqU%m}^LZL(2_cEC<8=?3Qff&iq${y@ zFYHZ8Zl6w}eQ6eK8+tW>tIlYTPzL6W=f4C+-eHM4GYxNYlbW?m2 zv%;g{S-F$|HG>Ed?QTs_%o#rHlh>vpG*rZ=ylRM7Kmr#65dLy#i?anDgQ}X^;>1~a zZck+}Q?VO0g;EfAEp%qzo>G;58DemHBwt@`H_tIb8QH%QjPuY;jrPuQ!_bXa>PS7+ zCaQ@Ogwiw)olB};8EQHb>)b?dAkC*9Dowu-4yq4o<8-aFiScSxs4FtRc(Q-wxKz27 zg8-xRADQKrR~tN^f`sQKX+|{ke1E0!^Nb3+(;j2w+`+fii%N0+&WuEHDS8DAKHlaS z?@2h$5%-+CDxab-pzt_@k!kV?6?MVcFOQ$hIR57;Sl-?!Z69h&Q7|G%A8m?u9*e&r zv8C|x7SsYfkkF6fbj*S|J;oOV@lt?q7_wswj0>wIQfvBT{NfXtsWp~R|5lk0ZtYmw zVZ^~LREbm!M)7dv7)Hg??v$Y7P_cU8uNZZ|D~e&mWU*ohW?@;);f?foEc?f5;ZjJU zlE9PwF=ZG1AgWk8uIO{K=)!MuCud}f7F~2$QoVYYmf~m$^t~}|b8Ut|v1?*G-R$Dx$TjdIOKcDK;mX@fH`!@w!LQ-p7}+gw+iH%#vd;c^>d>F zTrft9^Z7>o^Na*_ASiuZtWgMXI(|P{*mbX7wR~uTn{WVIZ^Hhifeczd?%Cc|P@jj4 z)cR==&S_jt*^-;slnb4tpqEkHb@wsy^*$YHECM(8+}PzN5^<#fmu9`LUSX0I^wtI$ z!!65Z1qrEnu+%&ix`kWiZaTea-x6IC~5 z*wI#uCo1&6l8=0_Yo?zsNR-n(!giGee;g)2ri9}6Xu!9b(LNjQ8&3CV7Oo+Hu!Kys@+D&1vNPYp$8X7kaM9`Kwp~Cx%94s{@0{2Sd9bYI*FY>E8Af!vsJOb`u+5UM zQ3W)7!-xd3PPi+Q-20;M#SNhvQcrH%T^RT1gzUYCM1*5pj*Cm`e4HUWKD9zl@;9b1 zEqikpFxXJ5j(H-uWIi9e2`<5UXf)auA+U?>!}WM`GpDrz$paBOarF7Yf-;CXS^$BV zBkb_-GlLW_p39MxymIwAl(O(=8lXK?9#&m!xHS`JOpBa W2*l#|Pa-Y~b(9+&nY$I(8UGuz^kRPi literal 3189 zcmbW0dsLEX8o)utyLkf>vO+8cOg9wF%x1j+p@RkpsHC1z^8%LRB~9&2XDqEGG)XNW za}>Dv$PIyhNYo}DFE8{K%%;saJRZN^Z|nBZpzy$8e9+2Iz;a<8Kk+#d^3T1~%eX+Yocd57U@)iBS;Lz~Rksn75)5aOo z?47y!`{oCW4<9{#^7PrO*Kd~J{`T(uhu>GYz#z*%v4Hp|*ne=j0$dhWR+d&aD_mfU z{lIJKY6bDeS-VBjZPE+fQ9+fq&?sTsg&TH0!Hk!%jG`%fj}7?y8(*!UeJ1mKAkW+N+qrtJ``cfL69@8V&h4pSlYZct zdbj(JoO9O?Qsypg_fMOg z#rMbU1sg3&fUGhub|uS1yIT&?FK_29gtOKhHhq6|)$&^OfnnC|ikp{TaNez5@_lf< zVtK=Xq%zSvAMNgxI$d``m?>^#DeXGE<=1t-8%N)&Uj?N0rRmZL=i-Ck?cDEJW9D3T zQNPlr2-xo8nJClmdhOM!G zSxEgwFp>mhr9k%KF1;r^Lf?*3q*Hw)AAX54&QN>v!`Sj4coX05(}r$KJj?NGNXrKD z8NeX+XC1e{BJniG?|2&dIw0`UbHjy&?fwkwr)jCV>jFx1PkkVvaTKR0CyLX7_nCecUzMp7ZL}O4zG~}I+CyvTeU-TI-o>tMCfOfLfd}6{ zn-VTf)-(a;Sp7?!H+8zxp-X96c*~5f=$(V9wU)QI1jM{4!5`D}1JYcRmW=fTf+e4QuYi-${T5Wl!DOA;{Oo23HgADWZ0p6&DQlQq?3y&OLbGnI?ce`qz*7HE3Q&J0yE1{KY(ay2sM|HXSio`Q) zzXlFjW+UfD{LLS0Y3NDMZ+bLSxya70{JN19=17g3?)?e9FZ5ZnrErV zvc9TlZ?yq&c7k1;y1CMvfr`2*p>dU3G~uVHuoh;U3XOlsL-Hc><_FsSENHw4o(p$j zw)bdIf$wKuY_M5uY7jo7*N8)xlDq44D&RA{O83Md zUZRt!OQyD3-d!M)y58T8o^7r1;Q)?=Jbggc))teO1jnW^(b!S@M~%0?c1D#A#m!42 z6EgV^RRPY~f@L299EO4F{YM6aRn%jA0bj&VhnX{+pd%E8D?>;{UE_=;kb=g2yfqfAsCc65n7)rm9R;0fugG!a?6I`}*+F&TF6jg!YbNSM&6n z!>=Ksh-cuFCLM#PT%OLR31*# zS!FN80v&b?Q9xLl3|=v$!KrSTHPk$lOz&cBC(uMCnl~&v&7{(2O78wex~cmSOpaE& z@n0x|jdJ&(EI@;CjEQDIz&KHWb$avInqg_#umE)7H0pr@iwQbrk>en z79En`gx%hnTVYhT!J&F=6h@YKI{B>qZeoJ13eb^8$|MD$Fd|@Xz9!KyjAO3$S7A&6 zYeXZFhR=5gk`glrvDnM5U17rT-%tL9$Xkv}o|0U3PlQp{eM3$Ocx?e|u{ujx6p2chSy@+SHkN##WBa9ifCVH+`fLyi`WHu2S0Ro<$2jyxdslxi%sXK_EHhD>M5VFx3b4`Flh zIc+g;!#Pf^N9TwRp)FB8seslma>NhVnFKcGYRfSYt`m)MKVN zJFFM37S4z!if;L>jai*Z;Dx9uyz#v$-IYW1Q)7knZia`sJ-gGm3ULV6Au?R(5Si3A z5F(+LINUNU&E#}=!BCsu%B>|82L8R~_$}at>B^3wP{a$xih^b*veU}^%SvA!+$lzK zBsz66-IK>Ysg7aaQ~#J+Ae@Vb#6Xz!tXUW*GLZDfkf66tq!{&32#Rm+|vJii{`y-7cV5enl_GL(c= z{?V^}q$&*ST0{H+~kYM|3uYAs#ozCy(?T>GWX{31NhEwAXaj z$-4<~)zvKkig3>%>7H#88haoT&KLQ(p^}5wZDdLx6KuYt)#=5@obg1ET z!{g_qB0WaNtYWyPG+?L#;E<_|jLW|K#~bMh0c5F+bE?jc+QiEu*c*>0hl)mt&v;q9 zPKAu!+3dJ`Y)zlylp^0O;m9NO(KQNpN*rDyx3ok0O5&`hV>Gm_4_)o#6CnbVu%_YL zkA_EL0QME}wev(ESKLmxMjDBc)Yb-aJM+rU(|mZh4tM?0}d<^7HhJa22mwL*EptRLFpXUAn5J_@V diff --git a/plugins/TinyMCE/js/themes/advanced/img/flash.gif b/plugins/TinyMCE/js/themes/advanced/img/flash.gif new file mode 100644 index 0000000000000000000000000000000000000000..dec3f7c7028df98657860529461af29b8793601c GIT binary patch literal 239 zcmVM~p;I&fgwbZVtlRJPxC7uw?yFxEX;uVr4IeWCJ^(5m4hjYVM>G^+2V)FnXE$mS p86yHh03AmHCKD}bWutOkFce4&0zF5CG_Myp4hRT+ig>^g06S0cRV@Gj literal 0 HcmV?d00001 diff --git a/plugins/TinyMCE/js/themes/advanced/img/icons.gif b/plugins/TinyMCE/js/themes/advanced/img/icons.gif index e46de5333082869b9bdab2576a554a2f9d01a966..641a9e3d314f4ea051692a2274aeb281456f5df9 100644 GIT binary patch delta 5712 zcmWlb_g_+r!+;NPfFmw6S5DldS!g*@OWe4%%#jUTiI!!SSIg=gjvz>=I7%9~NE=jI zq?J}$xC(7)Wm;BO8#kKQ%t2Q2e&3&-f8hB%pQn0##d>mRScun(R3*+Am{kL^W6aCs zDXcakldnkc0sz4JCx~y+!}VjZY`>aU;OIisFVXGFJxuXjgVjmw_rAfF9S%VpI&bc6 z%^-dP`(I2;H=z-Ofm`yRYz+3jZp)}fD;6`~Qlo|ZKMZtNYQR+_i3AVqfVytOCq#MH zViD7(w8-34IgnL)a+T~jHBu!Vz7yT?dRich%HU*}EOf{h>pzkhyKG|GDgEn~U@ey$ z_=GSWqQtlM&XE?x8%Nd$tE0qYXZ($YjDv3Of*qal=i{0jz62DU?{c*bu>+3M?-MvK!(t$v-|or{|~Z33pgBtLH* zC=3h--3*kG4OD~Q@93hS=8Tx*_bVv5rr1yQrp4O3hp0I9zw|ifzP7}Y5*8Z$Y8U4C z+RyP)Qt0U%y)i2^V)k1BvbJ_bqjFH)u`swtV-PlUjE+29ZA&crKGtzbE_OV&e80{O zSuxpfRjVVcQDJ?GsclWB=$O;wfDOu&-{Qopi2jCTJC?sae-8?R(8!xICR#Su<+6Oa zNMf;dqD+^tmB}pEGnIt{ZVBt-*d!-vIH<9idXl5<0esK|>#M6m%yv9=J@5Fg<`GP= z+4(`L{&M+_+0K`PQYX0Qu@mSExoEh)I(L=;dQr~n|D5d15D`c8 zC^)T=9eCS?_97_ai3m$JiTuNl_ikTK6lZc=OH!% zW+#>aJ^!R^5QS9Z8WkPk<*0tL3BLvXo`%mdrq2!;3)e5Bybu3)fD2*^Fj!fh6 z&V0T)viaV9kC(gNx>(1Me|^a2sjYYSEN0j>yvS)-UwoIFyOn>kDsq)Pm2Em7cD9P+ zV3Kt#bsGa$OZis^wy9mI#Rw#d*O_G28hOi4mPRny7o~X*8!IGVLfGg{j2x%CFheY9 zpIk5yp)_y|)@V3EIJIN5aJ9knQ>!jc{|pOfnELh3E(-P{*f8wB{- z=sG!M7gp4;m)q~>_a||P`OiLXhH(Gfr{3ZD{ol4vS*lc_1|TCxgBV01`XUZuX|~SJ zB=9H!%pUr_O=Z{037)ZS$=h zT%8gRpW)=OqrOr!xvEmLzXr~)UW;=`K`{2U5YAI6(aaYG8Z#w0@uHptH~GPfMbp?# zou^1$X%UwzPM7;pFyyN2gt!no6!5ZZK|4anjwtVJ4GZC3GYO2N@8CDrzPAcxaVY~_ zy@F{?VpP$vhfUtK=LI%cy;u!P?{P&a2c}uaj2Yj~!5j!41B|qng)bAZ7hr>W9Zl)> zPNB(KvGakfMQ;7hQ6CqWjf};MeulYh-)&eqjm@yNeGY3OEm12btL_TrcD7`Vh}WT; zt$)48P<8-mWc34x_`a$pGTuO}>=-;eSfvD_$h)ANd*_Q96 z|E9F{G)6bS!HhZ~DmBweuhUq;p?gnM>U@#caGgm$T~%$Ly*l;EOZrHbp4`5*56?!n z9SfM0RjkX8ws05edU~8BjlF`21r*AV>8Trp;U??dK~=B5aU%j?&@%z zeaKzWZTi|lxH=?r_scPYbJBMx#o)BovbH#lo7Q-(T{eV;3VMoR{&4%A|BB63TbO-W zw^Wi!qWV%bL4(00{n7*Xmml1e;h2()l8un!uUpda&H?RM8i{A<0%II|G0(2e;LKI@ zBbIuE-XL;7LA!>u!r^uO`&!zXd9r$S)LSyvQiCrOlss6Ip24_TaPCWcCL_f z{U0tkTqsQq_9nAKY58lmmc8?sdlHW_cGWM)y}UMPx3FZP{Xx%U`^thr|2|qNHRO<5 z%O#BSI{8^OCekB(X)mpL2(LI&XBTkjYI~;5fXb>Phyy3;BXu3(-lZ#w5!)+coZS4b z2ghjLo}DY&B*FG6&rKCWbIFN4iW*8`G~@03PhDy5`9nNHO7PMnBIwtX!4DiD%|S1_ zfj@4erbS3Drezlf(4Vy2dlwSWRpL|h)5@Dsf|((cZs0Knb`~L{4nR!{HPo8ZQW3|R ztK8`YW6qjgFU9aTl}iB#zYQA!pF zV{89)-K8b;;_%h}Z+4g6FovX<#n=3E)~LH7T0$61A5&*W-q`rGWvP3I`tn;#W4yv^ ze8(iu?ct!}@xe#=Ztyul`a$I~=3LzMeM`@nH#?aj20!lb_1b**FU_*jvkB~h`4~(Z zIUQvE)pcYv(#gwDa#6PTR$S3#H7x#NrHnrt@N1b@IKObUBjmqa-xZfFEiqsm5Buy0 zfzj=^d1Zb(Iqw<)s_j;2S1;Y8mY7tTxbGP--w@efb{OVg#dWa`4KN zQo;mao8#lmT03aMX)!OI!!AHeTQ}L?d{t;eI;Efb8_sSBfccXF1J3F0k{( zGHkfO?!a!Wtx{C;g z^&g21L2{P$PNt_Vj9e_96Ub z(y9S+f=R2(2zC`2ScQZ+d_)LTZj~MZ&*xdR30Ab@tYsi^z@H0XL5M?VfjVNOrynq% zK>Xjus54w%B3z8iK=*IIoh zkZUxsiXrmeO2cROK%YP1x3+W4Zh%(&Qj5tY+%epS=LFB#ZbufNL&vF?(?iiboL16O z=QhkvCB{fplEDvM2P+L}1IXMS%)$X+;h5n&H;UjgT} zbEyB5kioBIh)r;gUK|q3!fk@sFC@|DK$LvyvG0SYQ{m5cJ(x(>EEl`JstFU)qMpV_ zC6xF7K6?7ZL|KBHK!Z|+#U!lm8+r{r!<#(A`uCqw!Q~$t#N{g%eHrCv>z@Ix_Z#U& zT;qe5W6vDN5-i0-O~(@4-fCV+0HJ-=c!Fde~1vJEK2JBtN~DV19uDXoeWNIRY^>E$2(;JA9Q`Jh^l>gHtqyQ%C_#89x~eh3BdQ;ot#uc4vw{l5+iY%FW)C3$dfkxhZn{lxtCgrgHWx za*Z9OMt1^8kAxz{xJ45el6|>a05&m?ZH31!rE?$UA}lE6jwsk9_AyoU@=?L#tlALA z5q@?gKO_|~Xj^SfIrMGrF$Y>RCFH7;pu0mP&Qb|+xhMujd=F7>}wze{Zz%6+icMN0m$RNZ+lEMc}JqZ1PvK3Gf`_kX%!ccwubq2?)2T zoa&f@Aof*haIU`gzs$_u+Zs$H)uePe1IJa^rwD{!j-CO&-`esZys5UI_%CMr`)7Gg z;~T|iW=g;->k-4<1l3M#>lcS@&9^T|m(>P8NA_X&(Mo#aBYh^A2x@xnBRz%Ba|%Z) zzK;A_%Ll|pOJ>s618>!E-dK4N=b+tloG99%^lcX0$MI0<91kG;V3kDj&sliktymz5 zj|CvmTl%Dl0sU6$t}Z)&uKN7D@o38%|I32l%quj44_vB#S3iRBlwx)@vEOtENHTm1 zHEo_WT0g+P>Yn0BAGM3mv|_&Rt;RJ`PmGT>P9DxYFU?%HEfZyAc9v&eP-R}z-YitX zh^Yzy11L%SmGyE?E}v}y@#v>E>yEs%!mn2UMhLVew$qyx1?&(OM^^<5N7WAZLJONY zxfuv+1h=hcLnve^U5^m*a3G80MSe|Z@LgDIwiA?ZU!e8;jm67ZpIu0HWM66EPz{+`M$$=F3^! zFk4Bsg#-WK#ZqL{P*55?(v4yaWKlS&{TVADFL>b#B zNlx$`iDz(~Dzw5UUJNeVxP4Xn+X7%8`3o%J+}?dj>|I?ALB$yM7}8xZBt$&6;VEXzOzly3puJvzTGMP zkMN(Dq@{beaoqp#To4;-^OK*~p0IkMbp!NuG(mi2r??=VaHZZw-c9+G*o!e|2nKN#W)9F<(2iPC8$joHEV7eLSC+jan%{k_3rVVbpJgT6!wr zap~j`y!or;f0LfPA6{0bBh}YADr8jj!`JFajtZE4_QR_pJ}i^($16*qO$CPT3OqaH z!b|^Xp05yp9?sZdcw(1HoiMy|hhd%2aCrvml^Z~ujy0Z+b1aB6_F_9v$0ts&&6-Xq zoKECTC)G_SpPgRUI-PQNdj0V9h7Z#lXQww2;Tfj!OseBdn&(V<=uAf9OlH>1=E9jQ z-VCd5Cj0D6PV3B;yE9vdXL8|!Q+u}9e8d~So!Q|yo9{WhGjw)W;;d&VvfWXC6Vpe` z;04eTNX$)cdr&YuyYIv7{@GcWSd@H;y)m!wC%KTzKttNF&SRKp3R@jB@()s{Dmx3S z1g)wAbw%I=7p<%;ih+!&9A`N(A=NgZ2v^ags!jZPFze@`!rdEYXHeZjF#~lTLs)X6 zhns#l1M$q8tRv1zjOR`|&eabeGURrg3f*(+>`!NaU`7FL$Jt2;@w%X>;qF}H@Lbb} zIY|skr*d|U0sq@QvoTJLbPo2Bp-FVk#ll~$ykBi~#c6f;WEJnmrC&Gi7I!@Q)$Yi* zOG1r0IBUl+`UtO^N3=$GJx71tDg1qx_giskIshouO~Om}aEecGgPKZatA9Tt{uwa- zGZ+J%_WX02x3a#Cvw@5!$gu6v@ewjkj7iSp)<2_n|9pOFHOKb*0KfJtLW}MV$2<+P zPtH~Ceib_ZE^+?-KZT&2SOEi-p0AUnk4BcxCrkJJJ3RmO!~D1HGvdP8!@P-5SHS?ZZb(|>&^+AEsxk3?b^m>d-tq}V_EK|MdKRulO!mZ-m&H9_fu-S@0y zDJM>Ln`)>ZJnrR!2QF$Xs5$9k5WDr`r2T!dTh`;o>>myfk9ikP`j*L!dnDR=Q;Tz^ zsE<#D*SY0>np*T!y87(urkrV~XN~Jx^S^$Yb{>(X-K}=nGPC%_m7L+`+|M&#pCEwG F{{atF+}!{G delta 5709 zcmWlbc|6mN1INGn?)qAeInt2K5$kd#Br*5gXPP5T$Vgd=mZR@?hgpu04!TT+C1s%} z6*ZEp!=gi_nyBQdr`6-Bbv^q%zrQ|zeg68qUhmKQP~zc4VnCq3>-yw5v^($(0M@7U zUm`AmTGCStL@HCO)#l$Zs7_tnlz{@VK<9IfEB{qHYc!Gnhk?#U4H!i{N6lD|nSOOMoYuWG zm2LmP$6Z%z@7&s35oYvoW5>dWcT!rCKIQvO#yWa;ROsmYr5;R|FRHb3UbY|#UV_pw zE;Y4e{QWj$t5;F6dFzh1kz%!V2x~%gXRs->-ugwiY<^Q~oKfD@%*)fYx|Vw7q2$5U zRy5*6+ev0$iXB`PCJ*S4%!`-HE+M?C%VEu@ z9)7%Tz8o|n>}`%TARNdc)1t0+*o0>UoC?!QUN?TISJ0DrBzccoM3H(-o$qT{=#%Wa zrupvKqxpw|#;D7XQm3z};G3Jw`^Qql+@XdbxPs)&(oW;?&^mb zd*ZiDZWM*rKiBWW4-uoJ0wP4zc9j8WA;jhUB1KKtV>i*2Wc*Rrc?~@xnNeoL)vyM& zuFTo@@$#hR6c3V=!&&FgB(FjZvmW?iS4w~tx>mIfd_Ct$;FKLv)H-OgXX;Ww>lsPA zhY8G9-6pKF06v>pRu+;+mY*!tqb<#yeJ~`J8syw*BPx+DtI@qJXN-vog(PVH4!*`~ z86yDEv}X(*t;jq=jt5EqPBL|ZNt2CBmJ->AcuAyg znVz|G{_Bct!iYuL-aH0^@|dD#E(-bs9)9yEu}#X=TR$brZC>J3jnbqiALSd`r#_RI zrc}|LjAQw79Kp&eYt9Q7`ZFC9ekO8}Ubvq0*pdwOgR|I#rLLo3L~QV%WUKf%X7i-~ zeA>xUTP}7H$+~cnRW;2q@KA-t{#9JqM>gvgV&&6nbees36fH2xo8;{>a%98J2W<*w zt8LCON*&ABCY5$LxCbe4hl6i;$xvQ<|7=W}Ek$fsSSY@&st#V(Fq@9CLJttc3vmu& z+x;OOrIyY=Y@aeaD>|q0{`}}7aF6?7cFt0uo~`a8pZhT1R#W=Xbjcr=%mx0A-+>Zr zrpo5DKj{SH)Na95bFB!jbb}C%_-aqqGTok;d?Ye{4k$6U<)pcZ`y=(Q^SVv2rJr!5 zZ1>cvZoD2d$&RqC60X)RJiIbJeUxQ_${e;Q zc@!!e1Z(JlMV21?Oc5`-WJTInLHv<%t|9XX`Ht4L_trWd)*_#h#ec)6l7`owRap=} zUVSA5!1+$=z_>cAX{`kl@2y2&(>BfgR++R`=l^-h?q~ zvq8A)^N-q-h;4N-4fJfUV;x(Rp=W$zPTBPyinLp;?_UmE3WN=NNkB!B5NDp?L)lmP~yoPZJS}Fs#1!nj= zQ)X87V%sgBx&pX{ug{E98>S9pYg+ z%*$)xNFQen=S$W1vX~p7=Wo{^%mWw5XKML2l32O8oT{m2A@KuEi;Eo}HqiF>J05=u z={+>xiPy#ZOp&iRDH?X|Lt~eXvv|p>!{#Lv8vfr098cH)%^QQQmpjOvPlPLyv)w1M8;v>m8H}7N@F~SKOAft_t9X<=APm~8M z(cI-9zK;jg|MQuujvXhXG(xIx^6u(%{L|Q$=1@>|OIzNKq-7-scRxY-dtGYU2#cCr zmGP4Y5VRR%0&PtJ@?xsO^7?E34Pprl#!(TVPyn=%5l9A{NSkCB#8CK#ggy;#BHCj6 zFfq_?)bi+fvYl%#$AFz_636s6pOPV#gCL^G@oJwkSvAe5Hjke@+s?4iNM7e#e*2m~ z+@Rd*l;l&fHhCuXe&o;|nDW}FhZq3fWi9e!gG)>|j#?Ujf!372ChD9%Xh`ZCf?Zz| zJDIn2yBV|s+rPD42WWT;r7$3We$A0793slEDvf`5*8YCbipmD5SQ=$>@z*6=D!p!K z>GF}I>Z@-KKHd?W=%^S8L^YE_-nxNl(KWt`oa4PAd=oXgRtUkt;Mdp3yD)-u9Twm4 zlp-{2piX}~@tvzyfKw~0ECKhxnELrzZT>RfF-^`Xs@h>)_;l2Rlv@&iBkyU%KmIh4 ze%Fd}+Q5N1YnEYtB-YV19NPOV@6-Ym$Yzz;t9|ep_OfN(yRVRu*Wz2qbIkU$$KE>4 zvYrNxhN^dK+rS_8S}N*5{aA8L%373>Z<IcD(`1z&}}m-RIh`MtvD@?3u;4 z#pos`@i!kq&>n1s|Fc=npldU(R^oMfn>;}vR9v~gco$G^ivTj}`>r+9@?I(myWouq zv&TAr05r@QGm+Jx0iH;#_$walIYv&hJyWISa_ZYAP5GdH_d}wKv{Wyg|C-fI@?*lw ze9L-r+BK7qSN6uYND~t8>1r0+D$z#+edaEgiYoQZ^3{D7waAX;6|log_64_IykeYz zU*yS!QdwNxDzLZY5J$I!^4T*it3B!)h+2o-b`Co|50jDy*Pw_{zq)5+^7yl_k{jPV z3pG>4n)_`$x8I1on{gt3Fe*OM174id;a!BI*RQ&~Q=V6p5gS&#sGh;%gwZK_L$p$IjA!Fqx zNq<(f=`J7L^V>{W`YzyeA-L)aV-g&SxWZ6!f*Dvn+By#*R(<~PNfRQ@zqX@}tQo6t zF;}{X0j`z^^!x>Sz;nQ0KWeG{dXEL4l`7CLkt4A5t@&F&u~qL-8R8OwDL<)aQZ-O| ze!yn^fT!kw*Xn^f<$!PEfWN`*Itk}hb;5{7T;tLC zS}a>TCa_8f#CctWXxHfOSGO*3Tgu#gS)hXqXCo6N$zeC+!v;ZhSDD>>(^7$fvZ3Qn zvFRjA$A0l269SwPvEpu6#kN~zkKe;Utr)!y%Pq9nivz3pn;!u2Ku-mgn?ZK(Fdnvz za9>V!fEox9ETMp9xt3~gj}ScOh_Uup)=YvPM8KnV#O6JMqhM=vaaduAshqH(2W>9J;OF`T0EmJ3 zR3=8d78o1_mMQ_CUt>Vgg%=1G?H3_z)U%%Mc44E_r328W!y5M_gkE`AOayAVyf0sl z!A79q(-#U@a`d{ZFs;Uz#`R`jwP45_Ar4+uypsxOPDW}5Os`?ggg7%oyFkH9dWv&l-m+l=+EldK zi9W<*p*2}{tGZEp=1_)Jyi`#@JPa7x%Yk3{C?h#wq*`oLtAVWUF(x9xM9_Q=TuyiA z`x2OO!?4g@K$Sve!w1`j>quxDS3UtTbp((*;!>|4d>+N>VNB>_%{x!ZL%$T19g<#p zd48mVcJEQvz0FNQ|8_2KfC%)UQVmyKjM3xh=}ijqW2}8FCN8L%2y6d&om3fl?&IIk zj+NHngCNq1J6D95Wva(Es@P@HP3>Ke*ZwTKOb0;ro$e!Re{}}O_upxh2j4f5`TV@| zpYa2~@D%w8n9<^MvYJ`|`lSH)5RL)4WXPBB-@byTyXVf`tq@@#5nnB!Vn7+TRYWgK zgB)boisJ5Fzv0-J>*$?w9Q|nM(TZBLh0s(;%Tolrj_I#s;4#A!#&bN12qY_!@<_Ko zV-Q=D#UHy)8Y;c*HOG_&W032Z4Qb55>b$hS*L@De5^>*C`D_JmL;@_50(dAPPBA7H z@%k)$b(AQ>7f|OqIeJrq@cil^Cu}si#6g9D{p8^HvIM=_=hu3l_q=%C#!Toce%`n7 z`IWQ>#xm3^N{y9kjgAsYO@%^g(JP?U3GT(30JxcjGRJ~;RP2MD2$MWGB=I9L$0@`u z4=SQE+Wc*l(2i7ymW&w4qs(0mm3q+v^29&o#cDb^;0b|mC&D{P#(1^Y^NuWrHOWSX z?3eD3Zty0f?UmPS=K|s>F+R(CR#HykBwF~h<9LM9Y)v{CXjrYs8z zVqhr$DFXmd<|ao}{Mg!Jo{I1723G$AW%q8Z@q7Ao`bH9)|FVD^kJTlS;?N#Xk5oKq zQ#}$vJVuj*k^pcw>ZZcQhqeDzY=3c6gMlQI1Wq)bK+%+VR`ah;Yf!^;=bO=sZ9y7u zIjrBYIk%^iq}D1P|8gR*WWV719&R_LC41EKf~@oCmN;$^SY(eL%nI26O><71XhnG? z2=S|ffGTX<@0~(GddyBcC6P3vhJ}nuHs-kdQ?%s1&6$)8c!cjvtgQDIEHHT?qI0IM zSTiPuAmko^FmAHwc82gbP!-*<@_g&cx8LuZjsJ%Qg5(7^ScphlQ^k`g7YQf#0&4bA zDM5-&puSdHB#7mxE1?N4^aSgyG&6SE&|%(1s@aTc^}?k$=Vfma1aEkZH~md-+K6wj zEPq>}f)QgCf{iEBMZJwO{!Sss6vBJ=Y}ZjHnwyRTzY!emqLtRWkz9^Hldq#fCesX_ zz7QIBV6syY<|HqBYD)n5%(+Aa$3kP6d{@d#DnqyinP4qrzIg_UMK23O=05lltSIi3 zZvO7J2yNOM^_S3LTp+)=D<*iO@arS^A!g4jXD;G{a50i{ONux*^0>awBLQOudmv?} za0YY0A>(wQW%v7K9?#-T@$E91Bm)f&#SbWA34}fCZ>5+(eank&2lM|Iu z$reztp?{_gFS!yyjLu9ii9}31AWN3DbZPLZ`|qco&tER|R9PYxINg3#9c&pV`CaDW zc19B~84-btVJCmh# z<%4$1@}c3BV^5!-{vLxlFF zUoK8UIdbsav~~2ZoCG58@E??*7X7v@Itc3!{tP#3Q_&F$F2EcP!Z%+e=wG| z*Kg~B@6Ani^)vHMUq+-mo)&&Kys}`_t{Kwu*|1%6NyscO;-imQZj@bawC6ujcHLZ` z+}P~g&2TQgGB>V1H@-bL;bv~)Snifrxk;aLx2kg)I(f-vaNah%ycEy8)bPBtt$EwC z^U~owW@TPReO_jJ-j17jSz~!SU*+xkl$U+{pQgiqTD~tP{mk3rxo>ayzTB<*^0N1> z4*+(1>TP9TucMWCQxT}PI8GkA@6$e5y${i0bIern?VKdxw;z;m0vgx98(gJ8g^@Yx zaOGBRJG<;A%q|~eSG2P+N-V!cCqErpLgBBHm2BQ`>CNU`RjudV!^q_dB2 z^R14?U8O*nvJ#gdy&xLmBFw2X%Rg(E-{_ey{$#l1^v33`KbmfSUj^Vy$b7454jn1E zc2*^Rm4ES5e!DvVY&e%n;qO%d%x;W{f*&sX0dJ6U=~Rrgvfyfc!L|0EDaWyKDtymS zLGP=dH{KQ8@Dy6nK~gV&lLDoO;BS}U%@O=yXTfk~;YfYq=+HmjfIx>{d@dhTRFCz) zfd1ZE_`s}a+^%RMUDzC6)KcHu*v;QU#Nwpf-t95LQhvDo{KQz%i&sUTUb^J-HmAdi z%_?41@YD1d|BZ1wi9cR$J@7XBz`JkzFtUNtcB`3-~uq_WRwZ1E16flqGp5 zD)*hNR|X7^%{~z%O#Z9PhQGnE>Rm2d%`TK2xEq3m(@>czj4uFfQRDPhGnM3iK4FPt z)|}FOK&WRE)yDj6F<5TwlJjBiv!~^7l|{he)fr!`MvtuA+|fmEe8Q`BOdoB##5!hc zo47ZW`TlPkxyZXjZ%yU`Wn3I|+;Qi;fhD-rsb$btxlr@h8WX)WQ{6f5#xLynX8W=y K-wuZXHvA7eh13lI diff --git a/plugins/TinyMCE/js/themes/advanced/img/iframe.gif b/plugins/TinyMCE/js/themes/advanced/img/iframe.gif new file mode 100644 index 0000000000000000000000000000000000000000..410c7ad084db698e9f35e3230233aa4040682566 GIT binary patch literal 600 zcmZ?wbhEHb6krfwcoxm@|NsB$<##6SeDUYszh8g<{{H*-%a7k_-3KZc-T3+YPwBiX zzyAIE^Y`z!U%$Wp{QdX;|FQ*Fw;jIy{pasbUw?o3{yVB>Q_sRgx-G9iegFLZcfrha#d9w;%sU=Zx~6K$tw~$%z4`#O^Y@3Z zKV#~)MpSKh@#b63l#}6=>yq2|{`&JLqwny)|NnC)o%r$l&-Y)yKYjo8?#quSuRaGB zt_&<%`RV)bl#YEr{`~p)?RU|v^Y1_Z`u*?Ux8J`*N>>+5JlMAOZr+qr@y$D{mfVhO z+zt#7208-8pDc_F4ABfaAUi>E!oa?@A-bu#r8Qd6oKeb*Lx9UTz)0QBL@+vxY38ii zvqGa87c5+~h&?)zVa3W-D;=U$88}^qMBJ^ERU|z17!;#97+4%Rd1XcXJq#>t8KR;E z7zr5i6BgH5y=gAD)sAQlGB zh8au?j!n~E(Pks?@!j1fR&j*RWY8GF(-=x H6d0@lT&58X literal 0 HcmV?d00001 diff --git a/plugins/TinyMCE/js/plugins/pagebreak/img/pagebreak.gif b/plugins/TinyMCE/js/themes/advanced/img/pagebreak.gif similarity index 100% rename from plugins/TinyMCE/js/plugins/pagebreak/img/pagebreak.gif rename to plugins/TinyMCE/js/themes/advanced/img/pagebreak.gif diff --git a/plugins/TinyMCE/js/themes/advanced/img/quicktime.gif b/plugins/TinyMCE/js/themes/advanced/img/quicktime.gif new file mode 100644 index 0000000000000000000000000000000000000000..8f10e7aa6b6ab40ee69a1a41a961c092168d6fda GIT binary patch literal 301 zcmV+|0n+|QNk%w1VGsZi0Q4UK+~)L6v+~s9^fsC5ZpZP=*zu3F=Jxpf8k_5u%JNv6 z=md-84VLU4w)kSE=yI&-yw>b=v+SqE?+kq47pC+YrR?bJ^yu>Zyvpn;hTp*6^mM!O zu+8!}sO$`q%8%`=C5EEn#1d#z95FHtK5(^#(cp^e+Y!d=4FCrFbY9A3U z4-O0-4kHJPJ2(jk13n5879s!!3Q`V>8VwW`9my3H#|R8ZD+fdx0E-+693cQZ;!k;* literal 0 HcmV?d00001 diff --git a/plugins/TinyMCE/js/plugins/media/img/realmedia.gif b/plugins/TinyMCE/js/themes/advanced/img/realmedia.gif similarity index 100% rename from plugins/TinyMCE/js/plugins/media/img/realmedia.gif rename to plugins/TinyMCE/js/themes/advanced/img/realmedia.gif diff --git a/plugins/TinyMCE/js/themes/advanced/img/shockwave.gif b/plugins/TinyMCE/js/themes/advanced/img/shockwave.gif new file mode 100644 index 0000000000000000000000000000000000000000..9314d044709c9845876e08003cf94526fd69177f GIT binary patch literal 384 zcmZ?wbhEHb6lD-#_^Qe9?Af#b->&}n`s(k;lb>H+`#+Q6|3c{>OLTv23;utm>DSfy zuOD3adm!iUuGar)4FAhzel5=UwZ7*6(K(+k@BP_g{o}}@k7u_2k7W2iGwlom!+#Z( z|Hj5w_4MwTo8QaHxm#EFYX1DUOO|}vvgQBb!_ST${rmj+`+Fep|C$j4HGtwz7FGrZ zO$Hs1VIV&_u+2R%#bJV$RKJIcL*N7vss0Y-EsB{gGlSJaTr>sRLKbLj5HMTpyK;)l zJcfpaMYltBZdEK6Kht6+BPy*VtthFMtIoqFC=#Tu$e^eaDXCC7U0vOYOJjNk(;P!VagC#fQ*?7otVO)-#9rK#nB%ry4`E_DHQ Wm01j~^6E13^D1O7+^=wCum%9s<%z=p literal 0 HcmV?d00001 diff --git a/plugins/TinyMCE/js/plugins/media/img/trans.gif b/plugins/TinyMCE/js/themes/advanced/img/trans.gif similarity index 100% rename from plugins/TinyMCE/js/plugins/media/img/trans.gif rename to plugins/TinyMCE/js/themes/advanced/img/trans.gif diff --git a/plugins/TinyMCE/js/themes/advanced/img/video.gif b/plugins/TinyMCE/js/themes/advanced/img/video.gif new file mode 100644 index 0000000000000000000000000000000000000000..3570104077a3b3585f11403c8d4c3fc9351f35d2 GIT binary patch literal 597 zcmZ?wbhEHb6krfwc$UTx9v<%P?Ok48Ze?YanwpxCkzrwBk(ZYzB_&l;Qw!gmM(Ep^QBwbzIoSdAh>*2n> zz9l6k0Xw#(?);y5^ls9w|LObxXI*si^YfcEYu3*P8J(S-PEJlaNB-yTd}C^Ax@_69 zzP`Ryt5)S5`=P3;TDk9SbaeFk_3NiTjGA~aFd-pf@}tlxQ>GLb7jM|Gp`oFHlaq7F zk|nvhxjsHV=g+oST3Rl6T(N1>rn0iK*Ed>3MMVn>3vF#}**q!otE>Sy|^jDoRUBoBANRc=wyaJged$+}u3x zK}ld>puWET{||NozXdO-0f3nK$V8iNkVNKl+Guy1NeYie$3 zZB}=&Zex!RYq8YfVwgNdMpdFkN|rU!Fha}0m66q>CDxczOhH^pM9qvxw1p`;Rftzu zQJ&9}g>iErlc2ORw;aC_=l*6UJ=st%r*ISVV2jgDT<)w>rXHGL<21Kdo z#'; document.getElementById('iframecontainer').innerHTML = html; document.getElementById('help_tab').style.display = 'block'; + document.getElementById('help_tab').setAttribute("aria-hidden", "false"); } } diff --git a/plugins/TinyMCE/js/themes/advanced/js/anchor.js b/plugins/TinyMCE/js/themes/advanced/js/anchor.js index 7fe7810558..e528e4f42f 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/anchor.js +++ b/plugins/TinyMCE/js/themes/advanced/js/anchor.js @@ -19,6 +19,11 @@ var AnchorDialog = { update : function() { var ed = this.editor, elm, name = document.forms[0].anchorName.value; + if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) { + tinyMCEPopup.alert('advanced_dlg.anchor_invalid'); + return; + } + tinyMCEPopup.restoreSelection(); if (this.action != 'update') diff --git a/plugins/TinyMCE/js/themes/advanced/js/charmap.js b/plugins/TinyMCE/js/themes/advanced/js/charmap.js index 8c5aea1721..1cead6dfe8 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/charmap.js +++ b/plugins/TinyMCE/js/themes/advanced/js/charmap.js @@ -173,7 +173,7 @@ var charmap = [ ['ý', 'ý', true, 'y - acute'], ['þ', 'þ', true, 'thorn'], ['ÿ', 'ÿ', true, 'y - diaeresis'], - ['Α', 'Α', true, 'Alpha'], + ['Α', 'Α', true, 'Alpha'], ['Β', 'Β', true, 'Beta'], ['Γ', 'Γ', true, 'Gamma'], ['Δ', 'Δ', true, 'Delta'], @@ -258,8 +258,8 @@ var charmap = [ ['⌋', '⌋', false,'right floor'], ['⟨', '〈', false,'left-pointing angle bracket'], ['⟩', '〉', false,'right-pointing angle bracket'], - ['◊', '◊', true,'lozenge'], - ['♠', '♠', false,'black spade suit'], + ['◊', '◊', true, 'lozenge'], + ['♠', '♠', true, 'black spade suit'], ['♣', '♣', true, 'black club suit'], ['♥', '♥', true, 'black heart suit'], ['♦', '♦', true, 'black diamond suit'], @@ -275,19 +275,38 @@ var charmap = [ tinyMCEPopup.onInit.add(function() { tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML()); + addKeyboardNavigation(); }); +function addKeyboardNavigation(){ + var tableElm, cells, settings; + + cells = tinyMCEPopup.dom.select(".charmaplink", "charmapgroup"); + + settings ={ + root: "charmapgroup", + items: cells + }; + + tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom); +} + function renderCharMapHTML() { var charsPerRow = 20, tdWidth=20, tdHeight=20, i; - var html = ''; + var html = '
'+ + '
'; var cols=-1; for (i=0; i' - + '' + + '' + charmap[i][1] + ''; if ((cols+1) % charsPerRow == 0) @@ -301,7 +320,8 @@ function renderCharMapHTML() { html += ''; } - html += '
 
'; + html += '
'; + html = html.replace(/
' + // TODO: VoiceOver doesn't seem to support legend as a label referenced by labelledby. + h += '
' + ''; for (i=0; i' - + '' - + ''; + + ''; + if (tinyMCEPopup.editor.forcedHighContrastMode) { + h += ''; + } + h += ''; + h += ''; if ((i+1) % 18 == 0) h += ''; } - h += '
'; + h += '
'; el.innerHTML = h; el.className = 'generated'; + + paintCanvas(el); + enableKeyboardNavigation(el.firstChild); } +function paintCanvas(el) { + tinyMCEPopup.getWin().tinymce.each(tinyMCEPopup.dom.select('canvas.mceColorSwatch', el), function(canvas) { + var context; + if (canvas.getContext && (context = canvas.getContext("2d"))) { + context.fillStyle = canvas.getAttribute('data-color'); + context.fillRect(0, 0, 10, 10); + } + }); +} function generateNamedColors() { var el = document.getElementById('namedcolors'), h = '', n, v, i = 0; @@ -178,11 +238,27 @@ function generateNamedColors() { for (n in named) { v = named[n]; - h += '' + h += ''; + if (tinyMCEPopup.editor.forcedHighContrastMode) { + h += ''; + } + h += ''; + h += ''; + i++; } el.innerHTML = h; el.className = 'generated'; + + paintCanvas(el); + enableKeyboardNavigation(el); +} + +function enableKeyboardNavigation(el) { + tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', { + root: el, + items: tinyMCEPopup.dom.select('a', el) + }, tinyMCEPopup.dom); } function dechex(n) { diff --git a/plugins/TinyMCE/js/themes/advanced/js/image.js b/plugins/TinyMCE/js/themes/advanced/js/image.js index 6423d90809..2bccc97b92 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/image.js +++ b/plugins/TinyMCE/js/themes/advanced/js/image.js @@ -18,7 +18,7 @@ var ImageDialog = { e = ed.selection.getNode(); - this.fillFileList('image_list', 'tinyMCEImageList'); + this.fillFileList('image_list', tinyMCEPopup.getParam('external_image_list', 'tinyMCEImageList')); if (e.nodeName == 'IMG') { f.src.value = ed.dom.getAttrib(e, 'src'); @@ -39,7 +39,7 @@ var ImageDialog = { fillFileList : function(id, l) { var dom = tinyMCEPopup.dom, lst = dom.get(id), v, cl; - l = window[l]; + l = typeof(l) === 'function' ? l() : window[l]; if (l && l.length > 0) { lst.options[lst.options.length] = new Option('', ''); @@ -77,7 +77,7 @@ var ImageDialog = { args.style = this.styleVal; tinymce.extend(args, { - src : f.src.value, + src : f.src.value.replace(/ /g, '%20'), alt : f.alt.value, width : f.width.value, height : f.height.value @@ -87,6 +87,8 @@ var ImageDialog = { if (el && el.nodeName == 'IMG') { ed.dom.setAttribs(el, args); + tinyMCEPopup.editor.execCommand('mceRepaint'); + tinyMCEPopup.editor.focus(); } else { ed.execCommand('mceInsertContent', false, '', {skip_undo : 1}); ed.dom.setAttribs('__mce_tmp', args); diff --git a/plugins/TinyMCE/js/themes/advanced/js/link.js b/plugins/TinyMCE/js/themes/advanced/js/link.js index f67a5bc828..53ff409e79 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/link.js +++ b/plugins/TinyMCE/js/themes/advanced/js/link.js @@ -31,7 +31,7 @@ var LinkDialog = { }, update : function() { - var f = document.forms[0], ed = tinyMCEPopup.editor, e, b; + var f = document.forms[0], ed = tinyMCEPopup.editor, e, b, href = f.href.value.replace(/ /g, '%20'); tinyMCEPopup.restoreSelection(); e = ed.dom.getParent(ed.selection.getNode(), 'A'); @@ -39,7 +39,6 @@ var LinkDialog = { // Remove element if there is no href if (!f.href.value) { if (e) { - tinyMCEPopup.execCommand("mceBeginUndoLevel"); b = ed.selection.getBookmark(); ed.dom.remove(e, 1); ed.selection.moveToBookmark(b); @@ -49,19 +48,17 @@ var LinkDialog = { } } - tinyMCEPopup.execCommand("mceBeginUndoLevel"); - // Create new anchor elements if (e == null) { ed.getDoc().execCommand("unlink", false, null); - tinyMCEPopup.execCommand("CreateLink", false, "#mce_temp_url#", {skip_undo : 1}); + tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1}); tinymce.each(ed.dom.select("a"), function(n) { if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') { e = n; ed.dom.setAttribs(e, { - href : f.href.value, + href : href, title : f.linktitle.value, target : f.target_list ? getSelectValue(f, "target_list") : null, 'class' : f.class_list ? getSelectValue(f, "class_list") : null @@ -70,7 +67,7 @@ var LinkDialog = { }); } else { ed.dom.setAttribs(e, { - href : f.href.value, + href : href, title : f.linktitle.value, target : f.target_list ? getSelectValue(f, "target_list") : null, 'class' : f.class_list ? getSelectValue(f, "class_list") : null diff --git a/plugins/TinyMCE/js/themes/advanced/js/source_editor.js b/plugins/TinyMCE/js/themes/advanced/js/source_editor.js index 279328614c..84546ad52e 100644 --- a/plugins/TinyMCE/js/themes/advanced/js/source_editor.js +++ b/plugins/TinyMCE/js/themes/advanced/js/source_editor.js @@ -44,19 +44,13 @@ function toggleWordWrap(elm) { setWrap('off'); } -var wHeight=0, wWidth=0, owHeight=0, owWidth=0; - function resizeInputs() { - var el = document.getElementById('htmlSource'); + var vp = tinyMCEPopup.dom.getViewPort(window), el; - if (!tinymce.isIE) { - wHeight = self.innerHeight - 65; - wWidth = self.innerWidth - 16; - } else { - wHeight = document.body.clientHeight - 70; - wWidth = document.body.clientWidth - 16; + el = document.getElementById('htmlSource'); + + if (el) { + el.style.width = (vp.w - 20) + 'px'; + el.style.height = (vp.h - 65) + 'px'; } - - el.style.height = Math.abs(wHeight) + 'px'; - el.style.width = Math.abs(wWidth) + 'px'; } diff --git a/plugins/TinyMCE/js/themes/advanced/langs/en.js b/plugins/TinyMCE/js/themes/advanced/langs/en.js index 69694b1f9f..fbf29893fe 100644 --- a/plugins/TinyMCE/js/themes/advanced/langs/en.js +++ b/plugins/TinyMCE/js/themes/advanced/langs/en.js @@ -58,5 +58,11 @@ clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\r\nDo you path:"Path", newdocument:"Are you sure you want clear all contents?", toolbar_focus:"Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X", -more_colors:"More colors" -}); \ No newline at end of file +more_colors:"More colors", + +// Accessibility Strings +shortcuts_desc:'Accessibility Help', +help_shortcut:'. Press ALT F10 for toolbar. Press ALT 0 for help.', +rich_text_area:"Rich Text Area", +toolbar:"Toolbar" +}); diff --git a/plugins/TinyMCE/js/themes/advanced/langs/en_dlg.js b/plugins/TinyMCE/js/themes/advanced/langs/en_dlg.js index 9d124d7db6..0a459beb5c 100644 --- a/plugins/TinyMCE/js/themes/advanced/langs/en_dlg.js +++ b/plugins/TinyMCE/js/themes/advanced/langs/en_dlg.js @@ -10,6 +10,7 @@ about_version:"Version", about_loaded:"Loaded plugins", anchor_title:"Insert/edit anchor", anchor_name:"Anchor name", +anchor_invalid:"Please specify a valid anchor name.", code_title:"HTML Source Editor", code_wordwrap:"Word wrap", colorpicker_title:"Select a color", @@ -45,7 +46,9 @@ link_target:"Target", link_target_same:"Open link in the same window", link_target_blank:"Open link in a new window", link_titlefield:"Title", -link_is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?", -link_is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?", -link_list:"Link list" +link_is_email:"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?", +link_is_external:"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?", +link_list:"Link list", +accessibility_help:"Accessibility Help", +accessibility_usage_title:"General Usage" }); \ No newline at end of file diff --git a/plugins/TinyMCE/js/themes/advanced/link.htm b/plugins/TinyMCE/js/themes/advanced/link.htm index 7565b9ae8b..5d9dea9b8c 100644 --- a/plugins/TinyMCE/js/themes/advanced/link.htm +++ b/plugins/TinyMCE/js/themes/advanced/link.htm @@ -18,34 +18,33 @@
- - - - - - - - - - - - - - - - - - - - - - -
- - - - -
 
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + +
 
diff --git a/plugins/TinyMCE/js/themes/advanced/shortcuts.htm b/plugins/TinyMCE/js/themes/advanced/shortcuts.htm new file mode 100644 index 0000000000..20ec2f5a34 --- /dev/null +++ b/plugins/TinyMCE/js/themes/advanced/shortcuts.htm @@ -0,0 +1,47 @@ + + + + {#advanced_dlg.accessibility_help} + + + + +

{#advanced_dlg.accessibility_usage_title}

+

Toolbars

+

Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys. + Press enter to activate a button and return focus to the editor. + Press escape to return focus to the editor without performing any actions.

+ +

Status Bar

+

To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path. + Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.

+ +

Context Menu

+

Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key. + To close submenus press the left arrow key. Press escape to close the context menu.

+ +

Keyboard Shortcuts

+ + + + + + + + + + + + + + + + + + + + + +
KeystrokeFunction
Control-BBold
Control-IItalic
Control-ZUndo
Control-YRedo
+ + diff --git a/plugins/TinyMCE/js/themes/advanced/skins/default/content.css b/plugins/TinyMCE/js/themes/advanced/skins/default/content.css index 9fba0431da..569a3ae8c7 100644 --- a/plugins/TinyMCE/js/themes/advanced/skins/default/content.css +++ b/plugins/TinyMCE/js/themes/advanced/skins/default/content.css @@ -1,6 +1,7 @@ body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:8px;} body {background:#FFF;} body.mceForceColors {background:#FFF; color:#000;} +body.mceBrowserDefaults {background:transparent; color:inherit; font-size:inherit; font-family:inherit;} h1 {font-size: 2em} h2 {font-size: 1.5em} h3 {font-size: 1.17em} @@ -8,7 +9,7 @@ h4 {font-size: 1em} h5 {font-size: .83em} h6 {font-size: .75em} .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} -a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat 0 0;} +a.mceItemAnchor {display:inline-block; -webkit-user-select:all; -webkit-user-modify:read-only; -moz-user-select:all; -moz-user-modify:read-only; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat center center} span.mceItemNbsp {background: #DDD} td.mceSelected, th.mceSelected {background-color:#3399ff !important} img {border:0;} @@ -34,3 +35,13 @@ scrollbar-track-color:#F5F5F5; img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} font[face=mceinline] {font-family:inherit !important} + +.mceItemMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc} +.mceItemShockWave {background-image:url(../../img/shockwave.gif)} +.mceItemFlash {background-image:url(../../img/flash.gif)} +.mceItemQuickTime {background-image:url(../../img/quicktime.gif)} +.mceItemWindowsMedia {background-image:url(../../img/windowsmedia.gif)} +.mceItemRealMedia {background-image:url(../../img/realmedia.gif)} +.mceItemVideo {background-image:url(../../img/video.gif)} +.mceItemIframe {background-image:url(../../img/iframe.gif)} +.mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../../img/pagebreak.gif) no-repeat center top;} diff --git a/plugins/TinyMCE/js/themes/advanced/skins/default/img/buttons.png b/plugins/TinyMCE/js/themes/advanced/skins/default/img/buttons.png index 7dd58418ba7cfe58ae7efdf174e0b223fe3aa6a0..1e53560e0aa7bb1b9a0373fc2f330acab7d1d51f 100644 GIT binary patch delta 2525 zcmV<32_p8&8NC>gBe7Up0)GjqNklW6KNnY z5Dmy?f+RtfI3miXgUZ$l3N2OYxbJnZTdVCj)}{MCZD&hL34hpp-*fJkN9^6-rttRd_kS0lKeglM98q|x zSXg)|clwtWRQ;MY1qEx?toa>1R4`M3mjVKlOJfdD-oUKKN?soPS!gqP#L^XT4aOn{ z<|RX4N|~K3sI#VE=T7#D$4&spi{!Bt^$m?o{QUC{rr%gvO7{Aqylm?0S+zX;7S)5x zYH`$|q9m`!4|np5D1R_fYSKe+^>SWz0Y7FK1ysuqN>D&2@AB2F{;N0@haxPiQCh0& zhw4lG5r0WZQ4t;*Lqq;NdgWD1{6j!LBHsQN0n-H)T^-WjVH5Nl`Db5R>T*R~PM05_ zz&}62x_GwK&EQ;@DGPWTGSzxvULAk)dDV>VGDjevLnadS|zjKJgNr z`bf8#+LA20zq{MdV;qyd)>%W;u2b1cxN5qol8KVq;TnzZb$VIutgWfp%2Ix?b*q1c zp^rpdy`U!2+}vDCtV5;l-Wsivb|!ywlycE%FI3t1UC}6o*QwN+^e&e(+6tmh&IV$* zwKr1BS*PP_Wq6=`xrq%|~+T_C5$Ej&(aBhffVASe$q7B6G zIup%|XhSd0Mu0Qgpy>-sR}42bHT5AGzmv^*wAx7)^Unf>~5$T9%lO1CJm!P4FXMOHKz$z zM=wnfkZ6UWhyVA>%nC?#J^af}srE1Jej#Va#*O+2?4ajYUZim8X-e~b+=1AA=!;Li z{LVWs=YIfLPf;Us>ZKfUYN0sSZPfdXhr^3GA$+*;eW5Y@_20p3+g{(S@;An7+c>-4 zzH{fVD(lz(Woh*EW|q5i=WXKKaHDYeKe^uY^@!eVA} zU?3JNw_3}~%v4||MYYOBD+pBBK=CiB2=GM=ZK74QsnEWGf%6%rzj!7P2v}t?l}eTC zl$E#0Ct|T!SuA#?$iibMaNC?>Kiw?CEKd zzJCvBq=2zAM1~_he8t?66 zfn&!4^f)$wyn6yk5sZ(EV*dOH)4w{O@AEl)KA*H@%a$t8Lb%;&pMYYFvGMV7tDQ2w z^uMR<7J&^Nb)p7@Ek2(-Hpb#JGc#^?{(Oh7_Y#hyQXS{kEm_{u>HP%tcr7sFmVeV; zGlCm7l_N*oN4?%UH-)z_WRu>~d7~W&AKja>6GxBYOY^mRsgg|aEiHo5uHm)287)vU zr_lbNqZGYW2PCP^q)&h2+XLDKi)GP5+_T)9>fh5og-X&n zYuzV%<`96qIK=6}-Q;lqal;oUona*U5Yva9&^5?HCzQCBYQePB^} z1G^QI{#~E1|9S|__B%kDaVhkfLtwn|hPKge|6hpk+D-7KxzMN35)ad9$LArF{=NSG z{!d2}qobpb=6s;j0hH0v{xnBWfu(a4gfKE85W&$|9{#7pap|+sgr+|~pMU?=SC_nV zeSOzIPT)Rt_LyM34W+BD~pYLNtW_A6!EA8z!ZnXCe z{-Cr!8XWBV0fzy~;NTt~fi0#gpAQZWzL(Ahi@v_WS(w3%#Nc3J&U@vYs=s*VZae6k zo>dfO@8IF5}l ze2%BrIIn|UoVTuFde>WwT^d-P#5C>en7nrF8d*jxYW`2>4Sop9r3$7^9D z0|tV3X(>MKmaTjdTktrvwvFjGojrtexg~ch8%eTiL$?HEDrQFQ(o|zg&NduBtLhIO zr!H+##_1SX!$S-&LZ~82VT&b<_XeVjKkdaT)8&MZn3s@_Ho}t76Fe-_-RMhe8N;d)Q7$ zgh%o6N^}7$y zR~4_W4h0it*_&N5iO~AmA~pIUX&|1-eOHt8eKM$d&WQn~arrTISYK3<2LI5tZb~ra4Vor00000NkvXXu0mjf6xaGA delta 2666 zcmV-w3YGP}7|I!tBQpR5XF*Lt006JZHwB960000PbVXQnQ*UN;cVTj606}DLVr3vn zZDD6+Qe|Oed2z{QJh35N0)GktNklOuzigg*>~3$W~EbK zkJI3gRag&Pk;36h;(u!ibKpZf$s%$Un3eX0^;fTCr3YA`hg=wxWdVv6yUWeGa`md^ zYPZydB%+pJHp})s^~DyqrMS4T5Pd~@dMsJ!Oj3(2J%GGL`1xNDC>B(BwMYI1lfb@) zTzj)wuXpQpdJ9~Ee*nbvVdZyBfC9gXDU5y?>5fdiK8l)c-n4+B;1rlzK9#2!fM3|C1>(w;0$9;EYl!lG3Qi{9fw zVrhld3VXd?=YR169vz_+(dP}js|kB#^j=K3^ni>w0`h8!(x#?9g}qC!cX=BCuM6&( zm{HZxpeuFbq|$0R$Ae@IeR~u%VLT0CqICm0PlIHiXU^_(xm;m9ufe020DG5mHvqWk zv8uF52_Ex?yhN-=D+`4b_He8EJfV;`4BcMHBKDz>n13aP=+L^rCKL*n%DC}jfrgM* zj~-Vb3=*%x-h&8rgsVIa9UY-C+KkIp)zOjKN-D+E(b3VTO9zdHI=n;%MjatfU&@~N z!#M213$q)l`uecF*CmlkfbI_0Z>#|qtPY)A$N-G8753)rKWsDEX0yWHoW0$crGIJn z#nJPOdwtjmu*fKZ%u>cXgG^6d`tnH)&sRp%WhF|=p(lZ|$`~53maBoH z-%@TRgV0nnG@}+l^J1|}>)3v2-fFed9Fs^S%4AB)nz{2npRdH{JKxN49BoCRYH@$W zp?{o#0q%5JIs7UqY368gX)vp#Y<}rDwr^itVY<4S*`KWv351npCs7VWCVpmtHLEXu zgA50~9E00sJ|D+6!*ZnMSyvXvi2Z8Ld4^_ha?A+2j12SC`joL+yT)&F2`hXO|9YNa z*qbWVI0T^SJ`BU%+!()E`5c@1%FZU(@qg22pO=Ztdper4`U2YzuI5l&vnHuBOb-uF zPos-DGCVvyLM1h$3^2-!T1Q7KRa7#WWNC4O22B!vYlf|7&sx#<>?r6Bqo71nMn)JW zXLS(UA79NenY1R8iEU|VsRWu421C+BkuaJb9vK;-HArJh{(D@bqHt4N$HFYWvR_B)x^!$Fg+_ z`{WO%UZ9OqsWw!Id#Zcm(cU%)JAcDM6xkEU)v0D5_CCZ?wnbbe7$VoYFM4M|%;M#Z zkKa=%?1Mq=>``DA?q2fIqem1%I66bA2rpl1L`+99GgO_7II?{7p{Q1!g4w*n{(;F9 zz3u>JqFNw{S$2G-#W~ceQ_@6@=6^`$5Ht$N(5&OjQ$+qKnbdymP}qMIjekbJ9108# z4LzPk&qNS~@IymU5|pGwz$FNxA&0ar0v@vs%@FZFwc6#ch60lPrPZA8zFQV%Ba!Q$ z2jCz?AD{>mABo%u27~f$#FXoiNTioa2Ms=s%z!aWFqu9F$&75jxYE{k<3?K~{tMss zI3ADuf;JP4^6_{t&ItyUDSuzbA;{V5}yfT`Het49+(wY7DfA|`Mc;*i%iY% zJbyGkHT9SmAYu90l#T3zM4$`yYck1CO+7QEoPR~#FdBU}^$>IqqBbzN&M)7cUm}0C zmtwKiyWjq4Tlx0xYAlBBFJFS!$^1&rwz4u0uag(>I&rT5c#<&IK7UBw$JdSzwzm(C zy@10B!n?p>!u!{t`|$gi!xAt&2Hj|0``EQ>*O1F#`}goNoV@Vrv(H{-0C0s@d86~f z`sMWuaC!X#6e1Zeqtt3TQ}(o4O{twvP-&J|k+(mMyb40z{=L7CtX7KmKXIxl+Sa~WQrB0pi^&f|09 zya82dI7=<>51&YtmLS~*j+Ryi+Qh`}R%~CpFai5Au!clBEPqQ&O#`aZI25KttkOis z1efk`Zb7u4IESjV4GwmPfid_p&J9l1GOSaja&pS)3G6@e;EDw5##NmZJ(A5x{!DLc>`uo9qQq30%Q$+e$2XEbV!Mk8BEAO(yeX`~ck zG*oGzF(xS|s(;c@Q_H5RG+3C?$caikUABMkn2}UztOUAam0CfY%0g_a(o)e-rLls* zVi{Q@ckDgcUZv#`lt$ykr3KC~@`9KIS!7!jFC$fHB9)aeM#SP0752#=jDCQZt2B*D z<23qtrM&atqW=vISyu-0YmF9m_mF9QYPRUh|*6$cNCff^OZwnwCe*8?} zDlHH&Zm!a_ShZD^7O=@h5AO&BWcwon=vMjdc84th2b6{2?RFmLq*rMUyWQ^JqDphv zZA1+#wSU_Kwt*u`dmh~UJRd-l1<4+7h3rL6fo0f*%~hH)0QO`acm(`{!hRRBhjBPU zvfaT80=BmqB~l5{Z8xS{<26faV!-c8*&jKw>zhArE8pw_Q(|8Mt$|(J%mA38e`(J3 zC*o_kwYE0Zs;zBB$Gpu{Y~792WS(eJTl)lFhAXt~RmOlB(02E9v#?C$X5eP{z{CIq|Noy+{K>+~z`(?y1LA{Z9GJviddkHn8j1n{4_XQ! literal 70 zcmZ?wbhEHb{{R300000000000 z000000000000000000000000X`2+<305$+D00000ECE^oKnDLnl0#7_8jr}Na>;Bu zpU|juO08P2*sL~N;aI-luy{-^o6qR9dd+UT-|)D6PL~%bkGy`*@B9CNfr5jCg@%WS ziHeJijgEhf1p$(il$Dm3l{K21oSmMZprN9pq@|{(sHv)}tgWu4k(jcxnXk6DxVgH! zyuGeAz`?@9#Kp$P$jQpf%+1cv(9zP<)Ya26Dh1Zt+}+;a;Njxq$|x+_0PICJXU$+M@=|DQm87Klf*sL`WHlPX=x zw5ijlP@_tnO0}xht5~zfqQw=HudiUkiXBU~6~nV=)3!^{fP~t&aN|}}@q(Y+yLj^k zYq5XAuHL_Z&+ZFMxNyS3h7&7Z%($`RWC{+>)y?~x9{J;g9{%XyugJE7?LYr&b+zv=g^}|pH98H z_3PNPYv0bjyLavdR!$gCzP$PK=+moT&%S@X`}gqU%b!obzWw|7?K5y7puhkB00t=F zfCLt3;DHDxsNjMOHt67k5Jo6rgj;oG;Ur~csNsejc9{Q4g%?`r;fN%bXksrQhRD^4 zEVk(4i=L#Y;*2!bXyc7I=BVS2Jobp=V?YK8&I}7EAmouqPLo0lekJMTlf;w&Lz90{ zR_P=PE>LOZmO%>O00UfxnIvLjmiZW&W~QkanrgNg7@Ka!Dd(JY)@kRRc;=aq0|XcV z`m}aW!rkr-_>81sY;K8V*mTKy$ zsHUpws;su^>Z`EED(kGY)@tjmxZZzSfNK@>>g%t-1}p5a#1?DpvB)N??6S-@>+G}8 zMk_6}1$=Sbwb*8>?Y7)@>+QGThAZy4TttntPickF-h#~^!L zz<3mtZ1Tw{r>yeIEVu0P%P_|*^UO5YZ1c@H=d3f%TlDPn&p-z)^w2~XEd_sBC9U+* zOgHWH(@;n4l#DwLYW3AvvqH6wS$FOA*PLvfBiLk@EvVQynyvQQC!&2L+i=INq1!gf zZTH>2&|M?meE0o|-aZB{_~3tp7jF3BI_jzTK?o4wz~Yb()PW3IMsE2#F`!WS<(#Xt zeOJVI_t1MV?tlC*KSAq?EnqnCGNaK1848R8}obc#0N8c z@x&jGJn+gd&wKOE-wu8BwNFp|_1I^x{r22<@BR1ShcEv4;BupU|juO08P2*sK-{DI5ae zuy{-^o6qR9dd+UT-|)D6POr}wh?;)S@B9CNfr5jCg@%WSiHeJijgF6w1|lLhBbJw# znVOrNot~edp`xRtrKYE-sj91}1~(+Iv9f=&w6(UkxVgH!yuH4^z`?@9#Kpu0B_PVn z%+1cv(9zP<)YaD4*xB0K+}+;a-UcBd9p&cd=;`X~?CtLF@bU8V^!4`l`1$(y2IUw3 z00RmfNU)&6g9sBUT*$DY!-o(fN}NbhqJaw@FlgM!v7^V2AVZ2ANwTELlPFWFT*-g3 zrOTHs4QR|jv!>0PICJXU$+M@=|DQmE3LQ$csL`WHlO8odQ-jl|P@_tnO0}xht5~yY z-O9DA*RNp1iX9u)fCLE>(yCp{wyoQ@aO29IOSi7wyLj{J-OIPHU%m#?QW#9Qu;Igq z6DwZKxUu8MkRwZ;Ou4e<%a|=2*sy)y?~x9{J;g9{%{ytwh>$dfBy&b;|@1Gp_npH98H_3PNPYv0bjyZ7(l!;2qJ zzP$PK)+46zyJRL1_8GHE8V0AGPATfCs76X^sZplt>Z^dR%IcG_ z)@rMqvd((zuDp7gE33T*D{LLV&T8zj$R?}ovdlK?EUU#nEA6z@R%?Ilwb%-P!?xUZ z>+QGThAZy4w0tntPicT58d7HlKo2~ZR?V`{^+HA)y_qZ>-J@?&s=dJhN>ka^c1AGUL zHvxVNZg|`(!hQJSOFyYN*03sFQqp z>a1_Pdh4)D{Ce!PCp=4g?YI+sd+xmNyL<1z+xvU)#J4+q@yI8y{PN5<@BH)7M=$;K r)K_o)_1I^x{r22<@BR1ShcEv4aEJp$8AWOiVm@@lvn$rkBQx*((~wsDsti)R;g_q_hM}13`8R z%WhE?HvHLHm=)%o_xbs5_kGLD@ND0HKK6+LR9qKlBIArR%La&c!H|Fanm&VkVwq2b z6veEvozK@1tz4~PDOfjs8H#3Dwd(eAxFPokvl|z;9<9QDxC_4zt4&aoeHTKh8Fo0 zLV@66`D25_aF_4Ff*CyQ?z1f#&OoctYS5z5qSZJV>lW_Q zFCkZ_z~Nz8VOo53`hS6V>ZLT9eRgHd;}d*74}ikgBzqaP+))Se~}=;ILEfx$KtWs zfF58lRUXlUgGb=tQ6dTynv>A{0|oZ9jU!aL5i{Za=t@8wX^aDeei6KN@W{cpB2H1T z4Nf;Fo2Rz{vt;aS6rnM6qo`|Dx}b4%&q#Zn&~Gbn?%=ttFiOE?;Bxc#Jj5~{Bm{F$ z1xb|5jRtgsB$|I2>}pLD`puAmmITa$^+C z;9<7}M;k4mp+{+;0mFpGz+!`!Gdq*PR#0hLR8fS2eOlG{wdc|7bat~+}#x@QKK2OT2!9E0};PT@0! zkHg2_d>wyA7VeHMzz7S7GO{qTfY+;oWR6qt10MJ#8Te7<^T-F!76H81n{ zMH^UkZ4X5exh^?7GGCK+jU`#PR9zB<8tocu7-rS*Eecf0DLFf1uETPWbf6;vJv&dZ zkl=ObT{3$qay-gz3PpLCD1OI#WR8EG0_9Ow$7Fwc2cUd74v2~(tYIUWTNDf=* zgmFMccYq2Ypm?d08Kh`{Tujb}F)2|}f&!wfB1AQY654d6)%6DH136EeIK*;LSbc-Xv#(-Ok`JAj%3=LGaqRKt?EI!@J-_hZd!_ zggBwr7R7JglKJ~C9vHOb2FY2y08E?*CZ>N#O}t0ytN1uWW`u$p)8uZDvoo8V(dkf; z4?}QfIuI57bORZoKrA^SXSwzTJ|+rS6_mB;Eml3bpMu5|xyEZ`>}`w0-JgCGG>Rz&zY zR>@Z=V+S#$oCqWV4&#hV@X{}mag=|tfWv@*3!K3?+@so@qV<1eCE|Qi^~|*EpkUSj&0=o+V`{W6hG*+M+5bL)?F%wm8IE z7AzS<8T%eZ6X#j+B3>J>k{P3n4N-9hCqio4s!;^L`EfFH6O^zYIHOK90CgBuBRJiM zmkY^kql{IP1Ocj&7~?P~s>a}@hRlDzObJV36x0BM3aDc(dWls}7|Ph6{!EQS6hu@= zIo9&Fl6mI@C2ak-D8k$*Dxe?&bEA6X6h6oJ?EVk>E^TIJem(5~0000eq7#CI)kVp&dhaEO-g|J7 zDA`T4Z}0ccIcJ`k`De~~&-2bR6AarT?|2XZsh76JD*zzB|DWRlxgVGTfXv7R0(tVp z+0)nam9wW8mktEN<>lk)83z#7%0lEzGy2ROI@2C&ebFA>fqVT$WQy=M(gwX?PLCNZ+fSM*=SbjF2 zDNslN*p9xi-v*wD0Ji)H#NG@LmXFN|#se(Vxf$>ZQvt5~j&T}*vm#J6`844%022r3 zo%H(TfdvsjT*ur=8~D-$bWPBZ*8?OJfVgp7v>-qb4A>6w@B{!+IRL%pnYq$0p&FWf z5Uy4^^-5@7`N!dwBqH9#=H{ZD0uwq+LiDnB_v~`jM0)}eIV_Ul($pL0V*pT?%7DxF z{3c+6s%BzBHW@`_BXZbDboapCe*1QJveHWp05*L?r*4JC8d$>=iNf4(iyxj4I6o&Z z^ur`N)l;i|1qu(A%+J04tIp%1cj(2%-JP8U-9B|oyAkt{TX>I6m-)@hKcPz3n9Gfh zE#7cRgmt(U0d}Kj>_WeUeeykNl>N$Hiq>@#`Q0_g%!581do&D0zimwCove|YbS_!) zAYT2wVE@DEJBO`x;VXQVbs6A`s|sFlsz{mj3;f@D{4_A%t}P4zoV9v(e-|LZ4|9&( zobAd#_fae;#qR^2B)j<*j0B973gT8>-F1ne8yNKAk30JzwuWeQWb{)$%yNiHZ6(t@OoqA?-XAl=rTFhD9vK>Zw|f^xhaf=dEa~*S(TGyi}t@& zI#VyDs6YnAyM8beOZB}J7aizTuX`j+n)YI}?m-nr--7m!XI~$ z$`bgibJ=l%wPE@&!v*a!E_PmN+9gti94UU3aS#84v@*R$z82a)ea!Zf60tCCVV*g< zl>1^d!Eum2IbOPWh$KJy-94SU&(LYQY0YU56P^R%@;qs6R-UxsB?q^9V)=AoE}^05 zo&25N9jP6*9quzrvV40r@6TA%Edi4eS6!A}nqBE#BFAh=u-T_vlhv{!D6I@4<(YbQ z5z3_2IJWG*v|q0LcqF5aUP*Ov#tf@7lQYJp_J?l^?P><6Vb(YE>CpqNA6Y-}FZ?Me zV;CX_^RDZ3A57FIXA^gt^@)D`Wh^W%~H)#uwkb2DN72aI_{WSCkjY zL!@-2%o|M3)16d_x3j&mAAAi-_XUty=b;H}^rwPbf^4PI`e+G9D>p<%W>zMwQoGW) zQtPN)w&oa_U)uh-)#56g3OuOGZ^f?#PnjUh-#1+}T}6^184Z*bE^9<9+)CJrS~dJT zJ&-5a1s%`B3iLgZYk}?if7wICZlE{rf03736fmL&3SOdRiV0?=ei?61B@VH{s~cTiCuH8Zo8xX;$;CCUug_fYmndw)=qlz$ZQ;K5jlegF}OpToVIysbHz1 zzM}r%_}F;y_*{-mp0dQeip`5bFI~_NLnP?FwL;CU=H5<ao^gb}YV@I3c&f0LJMrN}HKhL{^FRy^o1~dsklIGw9~JC# z$v4fL(SkF<(XS%U;}YZbB1T2CR7CUG23CjKcXWL(y{$KcrZ4mJ8uEIM%a&_TWKUd9 zVpl$nNq-b9Kv+n<`qn!H*)ZOnQYHVGA?~(b6>0=A3WtB)=Mj4$mTF!-|D~zKzXD@- z%B1pJ#pmO;%C?f+n&g^=&6r$Q(@@i>QLkr#P4qeh!E@(u7j!oTAj2Nw!SUn6!Qqzo zuCPIGxI2?o6_y=;*DoG}lM2yb25?G5b;NFWHMjE+;@@}G+?f6BiPQ-fs^}-7Kjyv> z+wIvU_J&gMN5@8+$EYTI#lcvoB(h}ur&b`Z);0cWWNNJC!6l63YejTrKq?iYu1ZUC zEz&Kj1ENkAW3#Y)n9fT*c6m`yjjYGZj`i!~^VqHYE%NPPrfjhxYp=kfiJpsSBxAWK zov=bCLQOx;@KO3tFb$}TG3nviegB8aWPv>#J@5x&Q?gTW3lJ+1r{S44$ROzbzo~69 zfxP`vCBnPtDE{(yZTgh@t9c3qjJdD5+$EJ2+9e|2r@r%6ui!RFL%|Q>drq%Ms~n^2 zZ~HwGo5VOXh=<)8-c=D=h>)SwOMgJ03Cx3t5%q9KbEnSn_!0Tc$^xPBMM(@qC_Ya#`fRGAf7ds$Q-l#5G^lI+dE+9FfBl2$8vllvhYB^1{yxhwtqe6unG-tFq8j|C z<2L`)UxZSY((LVrfh`^{jli7)4Cy+ClTu;nby9HECh^QauQ}ixVy^1BXSterrny&^ z_LeP1V=7Z~higICTFd`Xe~?zP2-H1?4!bNJM9ieY&nA=dGx9@1MgOeWE*GPM5&JJD z)?KMRPg`hwH>V%pCGIP>DNb0OHT#~`FYn$rZ#K`ZRj_eC^gUF%O`9O&vE)`o!V&U4HrV-&iPN>rRg{1RT@iL+8qIY_WAV-RVk5W000Q! zU;{7!)Fr>UGET#-xn5|S7yv-fLjVYi1b{zxxcLA8{KNs^&=vp`vH^g}^Sw>KW*s*x z0fKl>M*|EESW2HqSh2x5x_;FlMbw{#z?!Xxb^P!U?hP=H8YyOQF)d=+$Ew@rMHTAl4iHTYE0SO6V9J(;W z9FdzCNXf?h_xbsGUYkpqt!JJ?<&{;V!(p`Ol ztyDSZw48y5&^SpGzve4rv!w%9=+J5q??}9UWBi1zM;-oI$1r!kr0qvI7TJxiwiy^0@Blyn z1On-He{7*#jFD%>;Wk$h-5sa+g7!&*L!#!x|2Pp*- ziXSEKv3b!yrWELqtE~GCdrD;W42LBsF66$BWPYppDOHvg7il95oYIEd)*WOs@-TU$ zqXtf#&Mbz%tO&h zO%^eZh#hx~9UU1N8#cGdK~pSO2cR>C8P*7_%>0@wKxiljqmAceQ4(~oVJqL~G!tgf-vDN;bl50PFhP&uocVxE^353}ii64% z;SLU(tWWX@THZ)@qF&Ev-EIQ#4lOZh1XmnganvJi8Vyn~4A+{H8%-tCoTWh_HHNjL z<8ucMmuPg;q2J-vpX=koE%sefzd$!kpO)hc4-C%oeU zq0vG9#~9u2lThkyJLb}+_N)U(9M##cV~k_+6w_qnkli-vksF}{GZO(y#|6(zvs~cJ z1KV~=oDA5;?{aq7Zm}Wd?1+Cn}}Hp@*-OkIBN?{F>5 zV4T+}m6zs`6#gwG3Nss%BM7jUr}%}o06iIDWC}rKx2*s(84-k=0qb2(#q4q0W+m0Q z{RFoc9Wg9JPZ6zNR4BRfEBkx7G`7-*W<^dGhu6=oCiOm=ZRnJHI`&JWeEw1Us=)tPEJlS1vxl`Z%l1&Ho#+JV<)MosZ}L}ODJqQ zxcmeuZxL^;6qG(tsd_)9?7&Ku>oBWaDxysV1CsLgoBsqRZ{Lo1vk!WcpOce+ki7m^ z>~m-}W$fPGo)b^Q)S|XDT~6Lxjp9_awgyXwm+>J1#mC$Bl>>Tqb`}c)M8TC{5S}$9W_m=nf z@b&eDvV{IMsTVT0#iEfr1(BLF-mUG?sF~l4OKT65GcllE>JW>=wMI);SAOXdYC3|{ zEUmcR-CbIZ=LM2)#4~=28}QQI>G0m>Y4i3OiQzs$edJ^YgXtR?E$(j=H)IoEH%x3=SpS zvFp0!U8d{rbHB&TKb@b$*==15C=_OGZE0y1uDA=nwRR6k-46`?1)4lhRGPedyB}Dv zKfB?{e>G9txEWwYLjaCL+?mou?GtiyGHt0}2WCuNn3mhD(X*$Jt6R}T1srM-s)${_ za(_gckjT}y9l_OSwlNWoYbF36-^jIhRBu!dXSgwZ`?amH3bh@M#|o&e)3aMz#P>h7 zN2K)I*JWfZ=nA9i=}iA@8&FYEO^0!^vtPLMn&a*g=xvR#+6lY`ARvA62(r!>rz2ANhRI*qH;b7AwQ7nN8@TH#Ws&GcSz85IM7W=p+9@ zRI74y*H;0$iA=)}@wHcH>)3TL_cxy(uBoX>Tjg*4KU!L#8?ha{ezmgtG#WajIMLFG m$9hVqYNgZs*94epU`y6#e2-qmp8{7)K diff --git a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/img/button_bg_black.png b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/img/button_bg_black.png index 8996c7493e8a58c9c40845cbe8abdc3e6730716d..7fc57f2bc2d63a3ad6fbf98b663f336539f011ec 100644 GIT binary patch delta 618 zcmV-w0+s!k9g78!83+Ra0086$;ro#x7k>cEP)t-s0002HySo4Y08>*_a&~-=k(7~{ zq?n(no1(0rrmv!@vZk!Hsjs-Lv%9dizO=c)x4gu=z{b14$GpMFzQf7C#LL0P%)`gc z#L3Ub%FxKn(aFuz%g@yRt3Us-P5-h`|Fl&9wO9YQTmQIT|GHxTyJi2qY5%`%|9`=9 z|HF3w#e4t9fd9#a|I3O0&5r-ub^qLY|J{H8--Q3*iT~k_|KpSYd|L3Cr z=%)YbtN-h;|LwH@@45f*zW?&W|MbWI_00eO|F&Wq@&Et;0(4SNQveU|I_8w5<1)+Sxjy>khxmTZ^UMAPuDhl=nJ%xacLVXE zN31WKSh0P^hawhnw)jf}#5_+GPu2e^5c51aiV00%6xVrr#$!*$V|i{OPJb2GYE{RI zUk${E_f%7X#d{l5O*06LqA`1W{A{z-KcE#qKx)lR6a_=R{wHo}S^x<1c*Pfemr)l5 zdENxVv+rLvA{OzVh(9zy{H9446TMvi`r@7X*kwhrq7{r{OWVwhm!6C_^4vrmA^ryB ziMy8mgg|d`WSser1qE6f|5sqVKRBqtZ!0b!I11C^6r?oOYvK8FsKs4z{;LqNh=&nh z+Biyl2i(R3MA5bJ5E*aeRfzb1#Gw{<#77AJa-hW>&Xefx-T2hw#sB~S07*qoM6N<$ Eg3||6=l}o! delta 3727 zcmV;A4sh{{1(+R>83+ad007h25y_Du7k>&*X+uL$P-t&-Z*ypGa3D!TLm+T+Z)Rz1 zWdHzp+MQEpR8#2|J@?-9LQ9B%luK_?6$l_wLW_VDktQl32@pz%A)(n7QNa;KMFbnj zpojyGj)066Q7jCK3fKqaA)=0hqlk*i`{8?|Yu3E?=FR@K*FNX0^PRKL2fzpnmVZby zQ8j=JsX`tR;Dg7+#^K~HK!FM*Z~zbpvt%K2{UZSY_f59&ghTmgWD0l;*TI7e|ZE3OddDgXd@nX){&BsoQa zTL>+22Uk}v9w^R97b_GtVFF>AKrX_0nHe&HG!NkO%m4tOkrff(gY*4(&VLTB&dxTD zwhmt{>c0m6B4T3W{^ifBa6kY6;dFk{{wy!E8h|?nfNlPwCGG@hUJIag_lst-4?wj5 zpy}FI^KkfnJUm6Akh$5}<>chpO2k52Vaiv1{%68pz*qfj`F=e7_x0eu;v|7GU4cgg z_~63K^h~83&yop*V%+ABM}Pdc3;+Bb(;~!4V!2o<6ys46agIcqjPo+3B8fthDa9qy z|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S1Au6Q;m>#f??3%V zpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG3xE7zHiSYX#KJ-l zLJDMn9CBbOtb#%)hRv`YDqt_vKpix|QD}yfa1JiQRk#j4a1Z)n2%fLC6Rb zVIkUx0b+_+BaR3cnT7Zv!AJxWizFb)h!jyGOOZ85F;a?DAXP{m@;!0_Ifqlp|(=5QHQ7# zGr)$3XMd?XsE4X&sBct1q<&fbi3VB2 zOv6t@q*0);U*o*SAPZv|vv@2aYYnT0b%8a+Cb7-ge0D0knEf5Qi#@8Tp*ce{N;6lp zQuCB%KL_KOarm5cP6_8IrP_yNQcbz0DW*G2J50yT z%*~?B)|oY%Ju%lZ=bPu7*PGwBU|M)uEVih&xMfMQuC{HqePL%}7iYJ{uEXw=y_0>q zeSeMpJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR=4N)wtYw9={>5&K zw=W)*2gz%*kgNq+Eef_mrsz~!DAy_nvS(#iX1~pe$~l&+o-57m%(KedkbgIv@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEq|U{4wkBy=9dm`4cXeX4c}I@?e+FW+b@^RDBHV(wnMq2 zzdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i&_B8C(+grT%{XWUQ+f@NoP1R=A zW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01)YTo*JycSU)_*JOM-ImyzW$x> zcP$Mz4ONYt#^NJzM0w=t_X*$k9t}F$c8q(h;Rn+nb{%IOFKR-X@|s4QQ=0o*Vq3aT z%s$c9>fU<%N829{oHRUHc}nwC$!Xf@g42^{^3RN&m7RTlF8SPG+oHC6=VQ*_Y7cMk zx)5~X(nbG^=R3SR&VO9;xODQe+vO8ixL2C5I$v$-bm~0*lhaSfyPUh4uDM)mx$b(s zwR>jw=^LIm&fWCAdGQwi*43UlJ>9+YdT;l|_x0Zv-F|W>{m#p~*>@-It-MdXU-Urj zLD@syht)q@{@mE_+<$7occAmp+(-8Yg@e!jk@b%cLj{kSkAKUC4TkHUI6gT!;y-fz z>HMcd&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{ zUi4P`?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000DMK}|sb z0I`mI`%#ks0Dk}=V@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000BCNkl%`Zo(Y1Aj?R|BwL*lGFS%byy z6<_PB?8gMKt#y$3n#Pv>Rr3?i;C|+)$6!Au23uMOnXhSV*-V3Q@xhOu1K)$MU%g`FFW0215ys%%osV6|Va)Tq5mdhUN6U~J-AM~#pUO%r%hKW> zB7eusX0zWr)GVVYyceilo$(Yz}V4nP`(d_C!HvOqs3Ng zayGsi@d6C|wnfB2sVXyr<6toNU~muS7Jp%5!G7Wx>|A`%&Y)*EBQp3H z2j^7#-9YRw^5q6F@uMxC7i4t%>0n!!hpD9ts>D$Uth zU#de?8&_dbEojxLRFxCA$%)qMsCas#?K7L3ocQuk8=uZsWj;k%IYs!L-$f*s!GD8v zieLt#8SD=Oz(@w;URN@MZQ$V7nZbQx@b0(d0Q~o0U;$RD%K5zvB-b1urssJhJBPP$ z>+c;#%1@;#JE-3(oBmc<*HFJzMwzRv(wbTrRaXZ%Z590fKye~-XQQ}NT^<@TI z+2lmEK+fpwvFbapEke{2MBvsQY@+%ygNODMkt7E5DS{b1R6Up(%q@Z$j0YI0)Y`Tr tDd0rp<~3DXQ_F!8)>XlC0|M~B0RV7?*50eEtCs)(002ovPDHLkV1i_X4a@)l diff --git a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/img/button_bg_silver.png b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/img/button_bg_silver.png index bd5d2550c06d83c1141b78c5af7217e89559fc32..c0dcc6cac2003f7405fff3ea5df7bcf276243596 100644 GIT binary patch delta 2072 zcmV+z2bL86o&f`_+2dMjNDlznH&TyHd_URN{##*Ml(GE~%a^)cgqM3rM6 zy{bondNjd$e}A~n3(q}gq4ulxA1GMAU&Onw&G(G!`w1>rDpD?2qyj2sDOZq}vmEsd z@}xM$9V2sUnzinX>{lh^hXjQ<)2Nkx*%9e)zkkSD0CoV{iZJ)DasnENC6 zO3eKu1`Fo?3BIrvYh2$;@cjI|BpLJbiDbD&l4LPSRIcEBvIVYz{%C^DeJ19f%sg1I zUXySwx9qiQ?A_Q?s9^K`6JE!_ z_bH;j`G1t4avR;FV7+1Waz2(|Uc;urnCmH`!L@zx6WnSxrP*vrv(=JThRQ)R8*>hQ zYQ71wvFg#UXH>6?^{X=WplEV0ExjMW`9Q(y{i(G;wl>F@)APzl%kNj^PNyxMPDk49 z4x$C>ZH`GBSan^CCfK|VA>41MV6M?-$Q72-@G>9egXySHG$4qGvBl01NZ;Wk5IlbdYjLYHBI{RmBx^I0qP8}!GuogJYk_!zN2?;k z|>^JhLf(MIk(!X*D?q~AKKA_i6@c2i;>U72h zvW9WSnu*;0QO^O4*~dEac!Gy3nZTYC^nc|OJm-VIVBBrPr70OKP9f&UTqC03W&Esn zg1&r$XMOM&jBoqFjW1=Rb4L0Z8{5Df=WS8%`SX1EkC7(aeCzViXS5bXT0 z2Y0X`bDP|q>h>IK@dQKM?V6iGFQ4GmFMaSAjBn?D{e;CvrjbbpH> zSZYT^etAG~1(C3BM?2T-$2jhfh{bQl9C+a~3q2=)T?-eCKNy!z0Io?;*Pz!=a9Vwv zk|v7WZ;3Q>ikAq_KzC(jyDTxBt>P zqC_AX^<0AcU6Jcg6Rxes1igNO1%HB#yVN1hs1uGO3tlT{0;dchz^bkOo>TB)1FX$4 z@fJL4d?<45u`#3BM*(u9hDaVqbP-Q5?#$)y-K>@K37&i2hg^a|xM0@N8(;9sjL6Mt zH|t5bU_9FW@rn=V^%IOos`TpNOv*EeI^P_#_N>k=WLEVf0@R`jzIjpP)_)~8>(yci z#xDlx+^gjJD>70sgX1hm1V$g{P-jmx!T9!HnQ=1eH*yGG6iMFnW8nE0u<=`0n!IH& z%5c2D`Dk-1N-F?tx)JaWF4V-Q(z_RnP(IMpbK;H$@Emx17@r^@NAX(zIt z6hrXnr`JS&eq9i){L&j3gULPiTx7w^UMJk?>Rd4d4}W-CMi)#}?T}S7#@|21u}O5n zgI>wO*OIQx7DMphi+=+GAY~h>er9{^LFRm|5z!O#$Y`T|%E|EN<>CouPJxzizZh3= zDECwMgVgrwg-IR-gkeh`tcmwk2}cXHfQ1*&W$KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=00004XF*Lt006O$eEU(80000WV@Og>004R=004l4008;_004mL004C` z008P>0026e000+nl3&F}000UJNklsV|cYlY&q4zsSqY(=s&=iZ>cW|Jxv$MmG9zDvBot+(KW~|_7TD<6H{cAkN3K|aG zcrux+oO=g@0Ya4~{cSpH8q)S^C!RJ4&uZ})*9T~k*=eimkK)R(5Tt1);2fRB?TM})FJ3}Q5GXUb8Lk){FF_3Wx z=iJIUQx^{h5)s+dB4+IF?&d(;*xttO?zotV+(ty0F%iZKw08@d%-%zcDVt0A1Sf#Z z!$i550O_}rB?3rfgC(+rO4veFh#~^8Hy-20_BQs$V=WfUeQHPBy1+Q2J>DBT_nOd; zg%BBtmQXJ}Okfa+99U7I2a5MoP!1ME*2}cE*xTO+2~p?`YNwur5G5ud?C!LPP@KOm{BB z#+D0KgT?0I#e@*i(sz&zP75$15rJ3S|2QI{O)t_@pSjQy1b~?`xvW2-u@wmfCWc_c z)13c;fEO-bc3xDzZd;8l6W9w42 zW<`}u<0ZaeC@-Kijls+P(6(Jz6qgLJDBi=ii9)_II9f8%T4>=@up99}kB^U{(Z*SusdxZ;9thpIi5|i%i*z7$Q42&#_|A+Sh|kzjQ25$CH1E&}eROqug=T&4vm5K@rO%+N(%@`EF2u{BU z2Qnvsn%2zW93s5e7jCOIXrWnutK12sf9DVsIqQl!K zhoN|xb6z?(C(OXNeio?91RU=H0IvOZk=t(m;#^_H#4j{gps5xS*M76PNc)#Z#YNxG ziV!N#^i_O(Q*TlwRk0u{wdK&9Q_#P8{fY~KbKOP@%m6t7Q#fr z6(&y=#~QAtQ!vp0V0x&ttt5csqa28v*RKG_N5#EX2FeV0Jl4nlM=tICkBWPb$GWXo z+@j2iWlp6fpqDxQv_v1P%!ka5<0Jz&aqHWHjHo#FZ)M=#a_bw+j+mn}px!qeOTe}Q zY!hrb(x+I|44{$-^&C&VxQs>Iq8|c?*8SU-N@Z4=h=ATktzooG$I%jf zM^9NqP`kBL{y`K^Q5aM2ED-e}OpJ=ndH@$KuK0e+hz~1_tWL#>s0WxKT0l$@h4C8d{u@yJ}>WAE3Fd(@KviX7h9|z;NfuiI1EEH+t=KPgTM3Aw^tS8%B9EP z^FIQ3GY}A4!0e!2MEv!BH|*f^eOPO4vn>O8GOk!rNj0Vl^C`K{oB$@Vy3__9;QQZu zsT%p6nI|0@Px#?8vwI>zRXr6&qMS=T9077Cn~IJ)5MpqpvI zv*Y?!y^a9vbgF8avwNRNI6?R_xcWD=lsNK`)oC{XE_1H47NP>Y@&~8_J8U8J9{vFU zaP8Kjt$p*SAL^5fKL#$m)&YR~8wE(E1t_M@-d$N4PclpTv(-N;ISMKwaxkx7!L@h) z?Ofv@=u{EZUkCL!fwc{Yb$ys~>ThPh>-m8-eczl@e;u@L&NuaSNK0aRs52VW1Ma=! zW`6IzQ`|$`4H1F0bD)atgv*kf_TDsm_bxeM`GEfvi4`EMXxeA*;pX*U0iV6+){Bk+ z%x6ReTe}PSOr2szl;!Ry`!)GE+Z)6|z#gj^AWExl?*DF~j;SAfiH08s_s-@COXCse zt1K&4O)3x&A>UQ0%;Mqbl!n9UBEXfN+*(&e#D=3fmi?ZrZcfuxmO$jOUxm5?aMX7! zfjl>t#TnF+1%XC-2r6=Uu4xg9gQtKvc9uisyY6kqWefa}R)j}lGU^Bi!vc^> z9-S($V$V6bv=SaqzQ4o2%)s%DcQ3_4T)pHJ_8n&Rr~9ROG-5#LxX)wLf6NO|fq`uOj7mdgJI0H2v4wf~~Kng9R* M07*qoM6N<$f@g#ZbN~PV diff --git a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui.css b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui.css index a6253976af..29e35e5ef2 100644 --- a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui.css +++ b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui.css @@ -4,8 +4,8 @@ .o2k7Skin table td {vertical-align:middle} /* Containers */ -.o2k7Skin table {background:#E5EFFD} -.o2k7Skin iframe {display:block; background:#FFF} +.o2k7Skin table {background:transparent} +.o2k7Skin iframe {display:block;} .o2k7Skin .mceToolbar {height:26px} /* External */ @@ -19,7 +19,8 @@ .o2k7Skin table.mceLayout tr.mceLast td {border-bottom:1px solid #ABC6DD} .o2k7Skin table.mceToolbar, .o2k7Skin tr.mceFirst .mceToolbar tr td, .o2k7Skin tr.mceLast .mceToolbar tr td {border:0; margin:0; padding:0} .o2k7Skin .mceIframeContainer {border-top:1px solid #ABC6DD; border-bottom:1px solid #ABC6DD} -.o2k7Skin .mceStatusbar {display:block; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; height:20px} +.o2k7Skin td.mceToolbar{background:#E5EFFD} +.o2k7Skin .mceStatusbar {background:#E5EFFD; display:block; font-family:'MS Sans Serif',sans-serif,Verdana,Arial; font-size:9pt; line-height:16px; overflow:visible; color:#000; height:20px} .o2k7Skin .mceStatusbar div {float:left; padding:2px} .o2k7Skin .mceStatusbar a.mceResize {display:block; float:right; background:url(../../img/icons.gif) -800px 0; width:20px; height:20px; cursor:se-resize; outline:0} .o2k7Skin .mceStatusbar a:hover {text-decoration:underline} @@ -50,7 +51,7 @@ .o2k7Skin .mceSeparator {display:block; background:url(img/button_bg.png) -22px 0; width:5px; height:22px} /* ListBox */ -.o2k7Skin .mceListBox {margin-left:3px} +.o2k7Skin .mceListBox {display: inline-block; margin-left: 3px} .o2k7Skin .mceListBox, .o2k7Skin .mceListBox a {display:block} .o2k7Skin .mceListBox .mceText {padding-left:4px; text-align:left; width:70px; border:1px solid #b3c7e1; border-right:0; background:#eaf2fb; font-family:Tahoma,Verdana,Arial,Helvetica; font-size:11px; height:20px; line-height:20px; overflow:hidden} .o2k7Skin .mceListBox .mceOpen {width:14px; height:22px; background:url(img/button_bg.png) -66px 0} @@ -62,7 +63,7 @@ .o2k7Skin select.mceListBox {font-family:Tahoma,Verdana,Arial,Helvetica; font-size:12px; border:1px solid #b3c7e1; background:#FFF;} /* SplitButton */ -.o2k7Skin .mceSplitButton, .o2k7Skin .mceSplitButton a, .o2k7Skin .mceSplitButton span {display:block; height:22px} +.o2k7Skin .mceSplitButton, .o2k7Skin .mceSplitButton a, .o2k7Skin .mceSplitButton span {display:block; height:22px; direction:ltr} .o2k7Skin .mceSplitButton {background:url(img/button_bg.png)} .o2k7Skin .mceSplitButton a.mceAction {width:22px} .o2k7Skin .mceSplitButton span.mceAction {width:22px; background-image:url(../../img/icons.gif)} @@ -105,6 +106,7 @@ .o2k7Skin .mceNoIcons .mceMenuItemSelected a {background:url(../default/img/menu_arrow.gif) no-repeat -6px center} .o2k7Skin .mceMenu span.mceMenuLine {display:none} .o2k7Skin .mceMenuItemSub a {background:url(../default/img/menu_arrow.gif) no-repeat top right;} +.o2k7Skin .mceMenuItem td, .o2k7Skin .mceMenuItem th {line-height: normal} /* Progress,Resize */ .o2k7Skin .mceBlocker {position:absolute; left:0; top:0; z-index:1000; opacity:0.5; -ms-filter:'alpha(opacity=30)'; filter:alpha(opacity=50); background:#FFF} diff --git a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_black.css b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_black.css index 153f0c38a6..50c9b76a2d 100644 --- a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_black.css +++ b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_black.css @@ -1,6 +1,6 @@ /* Black */ .o2k7SkinBlack .mceToolbar .mceToolbarStart span, .o2k7SkinBlack .mceToolbar .mceToolbarEnd span, .o2k7SkinBlack .mceButton, .o2k7SkinBlack .mceSplitButton, .o2k7SkinBlack .mceSeparator, .o2k7SkinBlack .mceSplitButton a.mceOpen, .o2k7SkinBlack .mceListBox a.mceOpen {background-image:url(img/button_bg_black.png)} -.o2k7SkinBlack table, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack .mceMenuItemTitle span.mceText, .o2k7SkinBlack .mceStatusbar div, .o2k7SkinBlack .mceStatusbar span, .o2k7SkinBlack .mceStatusbar a {background:#535353; color:#FFF} +.o2k7SkinBlack td.mceToolbar, .o2k7SkinBlack td.mceStatusbar, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack .mceMenuItemTitle span.mceText, .o2k7SkinBlack .mceStatusbar div, .o2k7SkinBlack .mceStatusbar span, .o2k7SkinBlack .mceStatusbar a {background:#535353; color:#FFF} .o2k7SkinBlack table.mceListBoxEnabled .mceText, o2k7SkinBlack .mceListBox .mceText {background:#FFF; border:1px solid #CBCFD4; border-bottom-color:#989FA9; border-right:0} .o2k7SkinBlack table.mceListBoxEnabled:hover .mceText, .o2k7SkinBlack .mceListBoxHover .mceText, .o2k7SkinBlack .mceListBoxSelected .mceText {background:#FFF; border:1px solid #FFBD69; border-right:0} .o2k7SkinBlack .mceExternalToolbar, .o2k7SkinBlack .mceListBox .mceText, .o2k7SkinBlack div.mceMenu, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceFirst td, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceLast td, .o2k7SkinBlack .mceIframeContainer {border-color: #535353;} diff --git a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_silver.css b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_silver.css index 7fe3b45e12..960a8e4755 100644 --- a/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_silver.css +++ b/plugins/TinyMCE/js/themes/advanced/skins/o2k7/ui_silver.css @@ -1,5 +1,5 @@ /* Silver */ .o2k7SkinSilver .mceToolbar .mceToolbarStart span, .o2k7SkinSilver .mceButton, .o2k7SkinSilver .mceSplitButton, .o2k7SkinSilver .mceSeparator, .o2k7SkinSilver .mceSplitButton a.mceOpen, .o2k7SkinSilver .mceListBox a.mceOpen {background-image:url(img/button_bg_silver.png)} -.o2k7SkinSilver table, .o2k7SkinSilver .mceMenuItemTitle a {background:#eee} +.o2k7SkinSilver td.mceToolbar, .o2k7SkinSilver td.mceStatusbar, .o2k7SkinSilver .mceMenuItemTitle a {background:#eee} .o2k7SkinSilver .mceListBox .mceText {background:#FFF} .o2k7SkinSilver .mceExternalToolbar, .o2k7SkinSilver .mceListBox .mceText, .o2k7SkinSilver div.mceMenu, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceFirst td, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceLast td, .o2k7SkinSilver .mceIframeContainer {border-color: #bbb} diff --git a/plugins/TinyMCE/js/themes/advanced/source_editor.htm b/plugins/TinyMCE/js/themes/advanced/source_editor.htm index 5957bbd178..3c6d65808a 100644 --- a/plugins/TinyMCE/js/themes/advanced/source_editor.htm +++ b/plugins/TinyMCE/js/themes/advanced/source_editor.htm @@ -6,7 +6,7 @@
-
{#advanced_dlg.code_title}
+
@@ -17,8 +17,8 @@
- - + +
diff --git a/plugins/TinyMCE/js/themes/simple/editor_template.js b/plugins/TinyMCE/js/themes/simple/editor_template.js index ed89abc067..4b3209cc92 100644 --- a/plugins/TinyMCE/js/themes/simple/editor_template.js +++ b/plugins/TinyMCE/js/themes/simple/editor_template.js @@ -1 +1 @@ -(function(){var a=tinymce.DOM;tinymce.ThemeManager.requireLangPack("simple");tinymce.create("tinymce.themes.SimpleTheme",{init:function(c,d){var e=this,b=["Bold","Italic","Underline","Strikethrough","InsertUnorderedList","InsertOrderedList"],f=c.settings;e.editor=c;c.onInit.add(function(){c.onNodeChange.add(function(h,g){tinymce.each(b,function(i){g.get(i.toLowerCase()).setActive(h.queryCommandState(i))})});c.dom.loadCSS(d+"/skins/"+f.skin+"/content.css")});a.loadCSS((f.editor_css?c.documentBaseURI.toAbsolute(f.editor_css):"")||d+"/skins/"+f.skin+"/ui.css")},renderUI:function(h){var e=this,i=h.targetNode,b,c,d=e.editor,f=d.controlManager,g;i=a.insertAfter(a.create("span",{id:d.id+"_container","class":"mceEditor "+d.settings.skin+"SimpleSkin"}),i);i=g=a.add(i,"table",{cellPadding:0,cellSpacing:0,"class":"mceLayout"});i=c=a.add(i,"tbody");i=a.add(c,"tr");i=b=a.add(a.add(i,"td"),"div",{"class":"mceIframeContainer"});i=a.add(a.add(c,"tr",{"class":"last"}),"td",{"class":"mceToolbar mceLast",align:"center"});c=e.toolbar=f.createToolbar("tools1");c.add(f.createButton("bold",{title:"simple.bold_desc",cmd:"Bold"}));c.add(f.createButton("italic",{title:"simple.italic_desc",cmd:"Italic"}));c.add(f.createButton("underline",{title:"simple.underline_desc",cmd:"Underline"}));c.add(f.createButton("strikethrough",{title:"simple.striketrough_desc",cmd:"Strikethrough"}));c.add(f.createSeparator());c.add(f.createButton("undo",{title:"simple.undo_desc",cmd:"Undo"}));c.add(f.createButton("redo",{title:"simple.redo_desc",cmd:"Redo"}));c.add(f.createSeparator());c.add(f.createButton("cleanup",{title:"simple.cleanup_desc",cmd:"mceCleanup"}));c.add(f.createSeparator());c.add(f.createButton("insertunorderedlist",{title:"simple.bullist_desc",cmd:"InsertUnorderedList"}));c.add(f.createButton("insertorderedlist",{title:"simple.numlist_desc",cmd:"InsertOrderedList"}));c.renderTo(i);return{iframeContainer:b,editorContainer:d.id+"_container",sizeContainer:g,deltaHeight:-20}},getInfo:function(){return{longname:"Simple theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.ThemeManager.add("simple",tinymce.themes.SimpleTheme)})(); \ No newline at end of file +(function(){var a=tinymce.DOM;tinymce.ThemeManager.requireLangPack("simple");tinymce.create("tinymce.themes.SimpleTheme",{init:function(c,d){var e=this,b=["Bold","Italic","Underline","Strikethrough","InsertUnorderedList","InsertOrderedList"],f=c.settings;e.editor=c;c.contentCSS.push(d+"/skins/"+f.skin+"/content.css");c.onInit.add(function(){c.onNodeChange.add(function(h,g){tinymce.each(b,function(i){g.get(i.toLowerCase()).setActive(h.queryCommandState(i))})})});a.loadCSS((f.editor_css?c.documentBaseURI.toAbsolute(f.editor_css):"")||d+"/skins/"+f.skin+"/ui.css")},renderUI:function(h){var e=this,i=h.targetNode,b,c,d=e.editor,f=d.controlManager,g;i=a.insertAfter(a.create("span",{id:d.id+"_container","class":"mceEditor "+d.settings.skin+"SimpleSkin"}),i);i=g=a.add(i,"table",{cellPadding:0,cellSpacing:0,"class":"mceLayout"});i=c=a.add(i,"tbody");i=a.add(c,"tr");i=b=a.add(a.add(i,"td"),"div",{"class":"mceIframeContainer"});i=a.add(a.add(c,"tr",{"class":"last"}),"td",{"class":"mceToolbar mceLast",align:"center"});c=e.toolbar=f.createToolbar("tools1");c.add(f.createButton("bold",{title:"simple.bold_desc",cmd:"Bold"}));c.add(f.createButton("italic",{title:"simple.italic_desc",cmd:"Italic"}));c.add(f.createButton("underline",{title:"simple.underline_desc",cmd:"Underline"}));c.add(f.createButton("strikethrough",{title:"simple.striketrough_desc",cmd:"Strikethrough"}));c.add(f.createSeparator());c.add(f.createButton("undo",{title:"simple.undo_desc",cmd:"Undo"}));c.add(f.createButton("redo",{title:"simple.redo_desc",cmd:"Redo"}));c.add(f.createSeparator());c.add(f.createButton("cleanup",{title:"simple.cleanup_desc",cmd:"mceCleanup"}));c.add(f.createSeparator());c.add(f.createButton("insertunorderedlist",{title:"simple.bullist_desc",cmd:"InsertUnorderedList"}));c.add(f.createButton("insertorderedlist",{title:"simple.numlist_desc",cmd:"InsertOrderedList"}));c.renderTo(i);return{iframeContainer:b,editorContainer:d.id+"_container",sizeContainer:g,deltaHeight:-20}},getInfo:function(){return{longname:"Simple theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.ThemeManager.add("simple",tinymce.themes.SimpleTheme)})(); \ No newline at end of file diff --git a/plugins/TinyMCE/js/themes/simple/editor_template_src.js b/plugins/TinyMCE/js/themes/simple/editor_template_src.js index 4b862d49d6..01ce87c58a 100644 --- a/plugins/TinyMCE/js/themes/simple/editor_template_src.js +++ b/plugins/TinyMCE/js/themes/simple/editor_template_src.js @@ -19,6 +19,7 @@ var t = this, states = ['Bold', 'Italic', 'Underline', 'Strikethrough', 'InsertUnorderedList', 'InsertOrderedList'], s = ed.settings; t.editor = ed; + ed.contentCSS.push(url + "/skins/" + s.skin + "/content.css"); ed.onInit.add(function() { ed.onNodeChange.add(function(ed, cm) { @@ -26,8 +27,6 @@ cm.get(c.toLowerCase()).setActive(ed.queryCommandState(c)); }); }); - - ed.dom.loadCSS(url + "/skins/" + s.skin + "/content.css"); }); DOM.loadCSS((s.editor_css ? ed.documentBaseURI.toAbsolute(s.editor_css) : '') || url + "/skins/" + s.skin + "/ui.css"); diff --git a/plugins/TinyMCE/js/themes/simple/img/icons.gif b/plugins/TinyMCE/js/themes/simple/img/icons.gif index 16af141ff0eea376a889b1e8d28e9c1cacaaab16..6fcbcb5dedf16a5fa1d15c2aa127bceb612f1e71 100644 GIT binary patch literal 806 zcmZ?wbhEHbJi#Es@KuxH{{08bHy>kQU|4+kcV*u?6Yu2z|Nk2X_I-c9E~4fBsnb_x z&7Ngzq1inB@Woqi-rnfiGF7yw9zM z^p;~=3MY4TT)2AY!iC=7fBwej_wPS(UDm1P!}|}9?`#au+qhx#R?Fl=KuakHia%Lc z85lGfbU;Rd{N%v)|G<<24;`ug6HAIt=2*?Yu%d)ZG@><(acbwmDSj%f4MMZ#%vkt3 z%+g~)i8kP^LLB_(WJHBo z)4eilyozQ8a&qqSt%<6xpa0;xA7k;M?mchbzI*>+`RnL~M?L!{MDwZt;o_B2F2$0=pQSpQ!u@RcUGT{(44KaY91N#ws_nDH9G%Qf=ZF z5o_THWH`G~`GwyilS^z$ZvV~I`dh4Lx_8c>?R@8gr-07UIgFjp0y#A&c{B)cE>2kS zL5I1;i$zoEA)6qV`HGJvVWE!{8MZ6ST|PC}d%Kid7{KiD{l18xziSGKuWtj9AkWy-*`}#c~0`Lrjq> z-;O-o=3A#@&dst%_SasuJq0xZW;OwR3vM!diY%Es?;J~Pp}LYununP(i|XxU>#u=* zSvNC^0?cJ=S?=UK4&2DdcCO^BsHxjWc4vR-Z64x&8r#>V9!JMd4O!Z*d@mNrgX=jUy;0|T>ZntHjDU$=-I8y`|tN~Y9 literal 1440 zcmV;R1z-9{Nk%w1VaNa!0QUd@Ib*`7v&H}b0P*i`B{WZ*I4YI8{iDPCZ*XyWj;?N! z&ooP8CcKTM%}ImAk&d@bUef&=iA% zhPA3sm56OYcjMRI^s}jof~E0n!SIozxs`y)bZpaM%~elOt(xIz_1F@`xREtxwxO@X zElsNLx;f_MIwnTOux@bk@5r<-;@s){f~fMSskU>S&vlpdmZGk)n^Ks084*pfMo5}`Y)@uBrt7q^ z_xb)XxI@^-XhLVQWPPfUtMQSg&Xb6UQhU2=S3pa1!Lhs1Kwz1)!P59aI6r5pthLM4 zE-ud4`aC>8zybolqcQ$sRq*)W>+kl^)!br%x2LJkVv+Dui1Oh7|6z>ag023Luhg%= z;=sbh)RP30t>V}2$H?fg=;-%zOTU8v0MO8l85I$+z}bYP#G9DS_#hs}n3hj*tissz zAwYQh{QX~VkH5&*9YTcu{{H^`{_yYcW|;u|{Qilm^upTyi?sd!nVG)6{{LrW`s5%! zQETJeu@Y0sB3Qy+jGVB@-BWO)C1U{h_4v@?@UEu*S8lPiucH6>|4vxO2|0#LaF@v0 z@ZaCy@c8hkxVXaB{z|fT@U~;Hv$d$T$J*xpqPpE8TH+G^0=vlI+KzIEuZN}B@UYO} z&dtoGp5{=vw)ErQRcDJbQgSxGf8JYL_`X^{uFH_9uqY`f`}_Of)zF}&w4mVd!0r05 zoM3>k!2kdMA^8LW00930EC2ui0LTCo000R80RIUbNU)&6g9sBUT*$DY!-o(fN}Ncs zqQ#3CGiuz(v7^V2AVW@EluM+^lPFV4B&kwhfCK?JZW}S8Lq-x8D(>2KU{_0tBn}8A zagb%p1Q&P-6u`78(}*2LRH3FT;{^Z%ooYoWl!#X%K7Tem@Rf*AgGMWAZK^N;uLKrJ zgqs_6Dufyfw<06~AZA3KR{>nO09GJYj!yq2Mo2^;St0-;UpPxp*8_}f6+Z>JE!?&a z+dPb*b~hYDra%-%J`C}|)xna%9$;-yz|zc`Z6DmMS)p07fiENwe4t=jwVQEwY|=zo zxL=@s=&E6Qp)TGXT_1)l*emUVx)m?~6;Hl)c5^2e&KlH&3v877L9rfP;Fp}T4iu?af8AOXd@5C0(U&fK3z8Av u{UxbK=c.length){for(e=0,b=g.length;e=c.length||g[e]!=c[e]){f=e+1;break}}}if(g.length=g.length||g[e]!=c[e]){f=e+1;break}}}if(f==1){return h}for(e=0,b=g.length-(f-1);e=0;c--){if(f[c].length==0||f[c]=="."){continue}if(f[c]==".."){b++;continue}if(b>0){b--;continue}h.push(f[c])}c=e.length-b;if(c<=0){g=h.reverse().join("/")}else{g=e.slice(0,c).join("/")+"/"+h.reverse().join("/")}if(g.indexOf("/")!==0){g="/"+g}if(d&&g.lastIndexOf("/")!==g.length-1){g+=d}return g},getURI:function(d){var c,b=this;if(!b.source||d){c="";if(!d){if(b.protocol){c+=b.protocol+"://"}if(b.userInfo){c+=b.userInfo+"@"}if(b.host){c+=b.host}if(b.port){c+=":"+b.port}}if(b.path){c+=b.path}if(b.query){c+="?"+b.query}if(b.anchor){c+="#"+b.anchor}b.source=c}return b.source}})})();(function(){var a=tinymce.each;tinymce.create("static tinymce.util.Cookie",{getHash:function(d){var b=this.get(d),c;if(b){a(b.split("&"),function(e){e=e.split("=");c=c||{};c[unescape(e[0])]=unescape(e[1])})}return c},setHash:function(j,b,g,f,i,c){var h="";a(b,function(e,d){h+=(!h?"":"&")+escape(d)+"="+escape(e)});this.set(j,h,g,f,i,c)},get:function(i){var h=document.cookie,g,f=i+"=",d;if(!h){return}d=h.indexOf("; "+f);if(d==-1){d=h.indexOf(f);if(d!=0){return null}}else{d+=2}g=h.indexOf(";",d);if(g==-1){g=h.length}return unescape(h.substring(d+f.length,g))},set:function(i,b,g,f,h,c){document.cookie=i+"="+escape(b)+((g)?"; expires="+g.toGMTString():"")+((f)?"; path="+escape(f):"")+((h)?"; domain="+h:"")+((c)?"; secure":"")},remove:function(e,b){var c=new Date();c.setTime(c.getTime()-1000);this.set(e,"",c,b,c)}})})();tinymce.create("static tinymce.util.JSON",{serialize:function(e){var c,a,d=tinymce.util.JSON.serialize,b;if(e==null){return"null"}b=typeof e;if(b=="string"){a="\bb\tt\nn\ff\rr\"\"''\\\\";return'"'+e.replace(/([\u0080-\uFFFF\x00-\x1f\"])/g,function(g,f){c=a.indexOf(f);if(c+1){return"\\"+a.charAt(c+1)}g=f.charCodeAt().toString(16);return"\\u"+"0000".substring(g.length)+g})+'"'}if(b=="object"){if(e.hasOwnProperty&&e instanceof Array){for(c=0,a="[";c0?",":"")+d(e[c])}return a+"]"}a="{";for(c in e){a+=typeof e[c]!="function"?(a.length>1?',"':'"')+c+'":'+d(e[c]):""}return a+"}"}return""+e},parse:function(s){try{return eval("("+s+")")}catch(ex){}}});tinymce.create("static tinymce.util.XHR",{send:function(g){var a,e,b=window,h=0;g.scope=g.scope||this;g.success_scope=g.success_scope||g.scope;g.error_scope=g.error_scope||g.scope;g.async=g.async===false?false:true;g.data=g.data||"";function d(i){a=0;try{a=new ActiveXObject(i)}catch(c){}return a}a=b.XMLHttpRequest?new XMLHttpRequest():d("Microsoft.XMLHTTP")||d("Msxml2.XMLHTTP");if(a){if(a.overrideMimeType){a.overrideMimeType(g.content_type)}a.open(g.type||(g.data?"POST":"GET"),g.url,g.async);if(g.content_type){a.setRequestHeader("Content-Type",g.content_type)}a.setRequestHeader("X-Requested-With","XMLHttpRequest");a.send(g.data);function f(){if(!g.async||a.readyState==4||h++>10000){if(g.success&&h<10000&&a.status==200){g.success.call(g.success_scope,""+a.responseText,a,g)}else{if(g.error){g.error.call(g.error_scope,h>10000?"TIMED_OUT":"GENERAL",a,g)}}a=null}else{b.setTimeout(f,10)}}if(!g.async){return f()}e=b.setTimeout(f,10)}}});(function(){var c=tinymce.extend,b=tinymce.util.JSON,a=tinymce.util.XHR;tinymce.create("tinymce.util.JSONRequest",{JSONRequest:function(d){this.settings=c({},d);this.count=0},send:function(f){var e=f.error,d=f.success;f=c(this.settings,f);f.success=function(h,g){h=b.parse(h);if(typeof(h)=="undefined"){h={error:"JSON Parse error."}}if(h.error){e.call(f.error_scope||f.scope,h.error,g)}else{d.call(f.success_scope||f.scope,h.result)}};f.error=function(h,g){e.call(f.error_scope||f.scope,h,g)};f.data=b.serialize({id:f.id||"c"+(this.count++),method:f.method,params:f.params});f.content_type="application/json";a.send(f)},"static":{sendRPC:function(d){return new tinymce.util.JSONRequest().send(d)}}})}());(function(m){var k=m.each,j=m.is,i=m.isWebKit,d=m.isIE,a=/^(H[1-6R]|P|DIV|ADDRESS|PRE|FORM|T(ABLE|BODY|HEAD|FOOT|H|R|D)|LI|OL|UL|CAPTION|BLOCKQUOTE|CENTER|DL|DT|DD|DIR|FIELDSET|NOSCRIPT|MENU|ISINDEX|SAMP)$/,e=g("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),f=g("src,href,style,coords,shape"),c={"&":"&",'"':""","<":"<",">":">"},n=/[<>&\"]/g,b=/^([a-z0-9],?)+$/i,h=/<(\w+)((?:\s+\w+(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)(\s*\/?)>/g,l=/(\w+)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;function g(q){var p={},o;q=q.split(",");for(o=q.length;o>=0;o--){p[q[o]]=1}return p}m.create("tinymce.dom.DOMUtils",{doc:null,root:null,files:null,pixelStyles:/^(top|left|bottom|right|width|height|borderWidth)$/,props:{"for":"htmlFor","class":"className",className:"className",checked:"checked",disabled:"disabled",maxlength:"maxLength",readonly:"readOnly",selected:"selected",value:"value",id:"id",name:"name",type:"type"},DOMUtils:function(u,q){var p=this,o;p.doc=u;p.win=window;p.files={};p.cssFlicker=false;p.counter=0;p.boxModel=!m.isIE||u.compatMode=="CSS1Compat";p.stdMode=u.documentMode===8;p.settings=q=m.extend({keep_values:false,hex_colors:1,process_html:1},q);if(m.isIE6){try{u.execCommand("BackgroundImageCache",false,true)}catch(r){p.cssFlicker=true}}if(q.valid_styles){p._styles={};k(q.valid_styles,function(t,s){p._styles[s]=m.explode(t)})}m.addUnload(p.destroy,p)},getRoot:function(){var o=this,p=o.settings;return(p&&o.get(p.root_element))||o.doc.body},getViewPort:function(p){var q,o;p=!p?this.win:p;q=p.document;o=this.boxModel?q.documentElement:q.body;return{x:p.pageXOffset||o.scrollLeft,y:p.pageYOffset||o.scrollTop,w:p.innerWidth||o.clientWidth,h:p.innerHeight||o.clientHeight}},getRect:function(s){var r,o=this,q;s=o.get(s);r=o.getPos(s);q=o.getSize(s);return{x:r.x,y:r.y,w:q.w,h:q.h}},getSize:function(r){var p=this,o,q;r=p.get(r);o=p.getStyle(r,"width");q=p.getStyle(r,"height");if(o.indexOf("px")===-1){o=0}if(q.indexOf("px")===-1){q=0}return{w:parseInt(o)||r.offsetWidth||r.clientWidth,h:parseInt(q)||r.offsetHeight||r.clientHeight}},getParent:function(q,p,o){return this.getParents(q,p,o,false)},getParents:function(z,v,s,y){var q=this,p,u=q.settings,x=[];z=q.get(z);y=y===undefined;if(u.strict_root){s=s||q.getRoot()}if(j(v,"string")){p=v;if(v==="*"){v=function(o){return o.nodeType==1}}else{v=function(o){return q.is(o,p)}}}while(z){if(z==s||!z.nodeType||z.nodeType===9){break}if(!v||v(z)){if(y){x.push(z)}else{return z}}z=z.parentNode}return y?x:null},get:function(o){var p;if(o&&this.doc&&typeof(o)=="string"){p=o;o=this.doc.getElementById(o);if(o&&o.id!==p){return this.doc.getElementsByName(p)[1]}}return o},getNext:function(p,o){return this._findSib(p,o,"nextSibling")},getPrev:function(p,o){return this._findSib(p,o,"previousSibling")},add:function(s,v,o,r,u){var q=this;return this.run(s,function(y){var x,t;x=j(v,"string")?q.doc.createElement(v):v;q.setAttribs(x,o);if(r){if(r.nodeType){x.appendChild(r)}else{q.setHTML(x,r)}}return !u?y.appendChild(x):x})},create:function(q,o,p){return this.add(this.doc.createElement(q),q,o,p,1)},createHTML:function(v,p,s){var u="",r=this,q;u+="<"+v;for(q in p){if(p.hasOwnProperty(q)){u+=" "+q+'="'+r.encode(p[q])+'"'}}if(m.is(s)){return u+">"+s+""}return u+" />"},remove:function(o,p){return this.run(o,function(r){var q,s;q=r.parentNode;if(!q){return null}if(p){while(s=r.firstChild){if(!m.isIE||s.nodeType!==3||s.nodeValue){q.insertBefore(s,r)}else{r.removeChild(s)}}}return q.removeChild(r)})},setStyle:function(r,o,p){var q=this;return q.run(r,function(v){var u,t;u=v.style;o=o.replace(/-(\D)/g,function(x,s){return s.toUpperCase()});if(q.pixelStyles.test(o)&&(m.is(p,"number")||/^[\-0-9\.]+$/.test(p))){p+="px"}switch(o){case"opacity":if(d){u.filter=p===""?"":"alpha(opacity="+(p*100)+")";if(!r.currentStyle||!r.currentStyle.hasLayout){u.display="inline-block"}}u[o]=u["-moz-opacity"]=u["-khtml-opacity"]=p||"";break;case"float":d?u.styleFloat=p:u.cssFloat=p;break;default:u[o]=p||""}if(q.settings.update_styles){q.setAttrib(v,"_mce_style")}})},getStyle:function(r,o,q){r=this.get(r);if(!r){return false}if(this.doc.defaultView&&q){o=o.replace(/[A-Z]/g,function(s){return"-"+s});try{return this.doc.defaultView.getComputedStyle(r,null).getPropertyValue(o)}catch(p){return null}}o=o.replace(/-(\D)/g,function(t,s){return s.toUpperCase()});if(o=="float"){o=d?"styleFloat":"cssFloat"}if(r.currentStyle&&q){return r.currentStyle[o]}return r.style[o]},setStyles:function(u,v){var q=this,r=q.settings,p;p=r.update_styles;r.update_styles=0;k(v,function(o,s){q.setStyle(u,s,o)});r.update_styles=p;if(r.update_styles){q.setAttrib(u,r.cssText)}},setAttrib:function(q,r,o){var p=this;if(!q||!r){return}if(p.settings.strict){r=r.toLowerCase()}return this.run(q,function(u){var t=p.settings;switch(r){case"style":if(!j(o,"string")){k(o,function(s,x){p.setStyle(u,x,s)});return}if(t.keep_values){if(o&&!p._isRes(o)){u.setAttribute("_mce_style",o,2)}else{u.removeAttribute("_mce_style",2)}}u.style.cssText=o;break;case"class":u.className=o||"";break;case"src":case"href":if(t.keep_values){if(t.url_converter){o=t.url_converter.call(t.url_converter_scope||p,o,r,u)}p.setAttrib(u,"_mce_"+r,o,2)}break;case"shape":u.setAttribute("_mce_style",o);break}if(j(o)&&o!==null&&o.length!==0){u.setAttribute(r,""+o,2)}else{u.removeAttribute(r,2)}})},setAttribs:function(q,r){var p=this;return this.run(q,function(o){k(r,function(s,t){p.setAttrib(o,t,s)})})},getAttrib:function(r,s,q){var o,p=this;r=p.get(r);if(!r||r.nodeType!==1){return false}if(!j(q)){q=""}if(/^(src|href|style|coords|shape)$/.test(s)){o=r.getAttribute("_mce_"+s);if(o){return o}}if(d&&p.props[s]){o=r[p.props[s]];o=o&&o.nodeValue?o.nodeValue:o}if(!o){o=r.getAttribute(s,2)}if(/^(checked|compact|declare|defer|disabled|ismap|multiple|nohref|noshade|nowrap|readonly|selected)$/.test(s)){if(r[p.props[s]]===true&&o===""){return s}return o?s:""}if(r.nodeName==="FORM"&&r.getAttributeNode(s)){return r.getAttributeNode(s).nodeValue}if(s==="style"){o=o||r.style.cssText;if(o){o=p.serializeStyle(p.parseStyle(o),r.nodeName);if(p.settings.keep_values&&!p._isRes(o)){r.setAttribute("_mce_style",o)}}}if(i&&s==="class"&&o){o=o.replace(/(apple|webkit)\-[a-z\-]+/gi,"")}if(d){switch(s){case"rowspan":case"colspan":if(o===1){o=""}break;case"size":if(o==="+0"||o===20||o===0){o=""}break;case"width":case"height":case"vspace":case"checked":case"disabled":case"readonly":if(o===0){o=""}break;case"hspace":if(o===-1){o=""}break;case"maxlength":case"tabindex":if(o===32768||o===2147483647||o==="32768"){o=""}break;case"multiple":case"compact":case"noshade":case"nowrap":if(o===65535){return s}return q;case"shape":o=o.toLowerCase();break;default:if(s.indexOf("on")===0&&o){o=(""+o).replace(/^function\s+\w+\(\)\s+\{\s+(.*)\s+\}$/,"$1")}}}return(o!==undefined&&o!==null&&o!=="")?""+o:q},getPos:function(A,s){var p=this,o=0,z=0,u,v=p.doc,q;A=p.get(A);s=s||v.body;if(A){if(d&&!p.stdMode){A=A.getBoundingClientRect();u=p.boxModel?v.documentElement:v.body;o=p.getStyle(p.select("html")[0],"borderWidth");o=(o=="medium"||p.boxModel&&!p.isIE6)&&2||o;return{x:A.left+u.scrollLeft-o,y:A.top+u.scrollTop-o}}q=A;while(q&&q!=s&&q.nodeType){o+=q.offsetLeft||0;z+=q.offsetTop||0;q=q.offsetParent}q=A.parentNode;while(q&&q!=s&&q.nodeType){o-=q.scrollLeft||0;z-=q.scrollTop||0;q=q.parentNode}}return{x:o,y:z}},parseStyle:function(r){var u=this,v=u.settings,x={};if(!r){return x}function p(D,A,C){var z,B,o,y;z=x[D+"-top"+A];if(!z){return}B=x[D+"-right"+A];if(z!=B){return}o=x[D+"-bottom"+A];if(B!=o){return}y=x[D+"-left"+A];if(o!=y){return}x[C]=y;delete x[D+"-top"+A];delete x[D+"-right"+A];delete x[D+"-bottom"+A];delete x[D+"-left"+A]}function q(y,s,o,A){var z;z=x[s];if(!z){return}z=x[o];if(!z){return}z=x[A];if(!z){return}x[y]=x[s]+" "+x[o]+" "+x[A];delete x[s];delete x[o];delete x[A]}r=r.replace(/&(#?[a-z0-9]+);/g,"&$1_MCE_SEMI_");k(r.split(";"),function(s){var o,t=[];if(s){s=s.replace(/_MCE_SEMI_/g,";");s=s.replace(/url\([^\)]+\)/g,function(y){t.push(y);return"url("+t.length+")"});s=s.split(":");o=m.trim(s[1]);o=o.replace(/url\(([^\)]+)\)/g,function(z,y){return t[parseInt(y)-1]});o=o.replace(/rgb\([^\)]+\)/g,function(y){return u.toHex(y)});if(v.url_converter){o=o.replace(/url\([\'\"]?([^\)\'\"]+)[\'\"]?\)/g,function(y,z){return"url("+v.url_converter.call(v.url_converter_scope||u,u.decode(z),"style",null)+")"})}x[m.trim(s[0]).toLowerCase()]=o}});p("border","","border");p("border","-width","border-width");p("border","-color","border-color");p("border","-style","border-style");p("padding","","padding");p("margin","","margin");q("border","border-width","border-style","border-color");if(d){if(x.border=="medium none"){x.border=""}}return x},serializeStyle:function(v,p){var q=this,r="";function u(s,o){if(o&&s){if(o.indexOf("-")===0){return}switch(o){case"font-weight":if(s==700){s="bold"}break;case"color":case"background-color":s=s.toLowerCase();break}r+=(r?" ":"")+o+": "+s+";"}}if(p&&q._styles){k(q._styles["*"],function(o){u(v[o],o)});k(q._styles[p.toLowerCase()],function(o){u(v[o],o)})}else{k(v,u)}return r},loadCSS:function(o){var q=this,r=q.doc,p;if(!o){o=""}p=q.select("head")[0];k(o.split(","),function(s){var t;if(q.files[s]){return}q.files[s]=true;t=q.create("link",{rel:"stylesheet",href:m._addVer(s)});if(d&&r.documentMode){t.onload=function(){r.recalc();t.onload=null}}p.appendChild(t)})},addClass:function(o,p){return this.run(o,function(q){var r;if(!p){return 0}if(this.hasClass(q,p)){return q.className}r=this.removeClass(q,p);return q.className=(r!=""?(r+" "):"")+p})},removeClass:function(q,r){var o=this,p;return o.run(q,function(t){var s;if(o.hasClass(t,r)){if(!p){p=new RegExp("(^|\\s+)"+r+"(\\s+|$)","g")}s=t.className.replace(p," ");s=m.trim(s!=" "?s:"");t.className=s;if(!s){t.removeAttribute("class");t.removeAttribute("className")}return s}return t.className})},hasClass:function(p,o){p=this.get(p);if(!p||!o){return false}return(" "+p.className+" ").indexOf(" "+o+" ")!==-1},show:function(o){return this.setStyle(o,"display","block")},hide:function(o){return this.setStyle(o,"display","none")},isHidden:function(o){o=this.get(o);return !o||o.style.display=="none"||this.getStyle(o,"display")=="none"},uniqueId:function(o){return(!o?"mce_":o)+(this.counter++)},setHTML:function(q,p){var o=this;return this.run(q,function(v){var r,t,s,z,u,r;p=o.processHTML(p);if(d){function y(){while(v.firstChild){v.firstChild.removeNode()}try{v.innerHTML="
"+p;v.removeChild(v.firstChild)}catch(x){r=o.create("div");r.innerHTML="
"+p;k(r.childNodes,function(B,A){if(A){v.appendChild(B)}})}}if(o.settings.fix_ie_paragraphs){p=p.replace(/

<\/p>|]+)><\/p>|/gi,' 

')}y();if(o.settings.fix_ie_paragraphs){s=v.getElementsByTagName("p");for(t=s.length-1,r=0;t>=0;t--){z=s[t];if(!z.hasChildNodes()){if(!z._mce_keep){r=1;break}z.removeAttribute("_mce_keep")}}}if(r){p=p.replace(/

]+)>|

/ig,'

');p=p.replace(/<\/p>/gi,"
");y();if(o.settings.fix_ie_paragraphs){s=v.getElementsByTagName("DIV");for(t=s.length-1;t>=0;t--){z=s[t];if(z._mce_tmp){u=o.doc.createElement("p");z.cloneNode(false).outerHTML.replace(/([a-z0-9\-_]+)=/gi,function(A,x){var B;if(x!=="_mce_tmp"){B=z.getAttribute(x);if(!B&&x==="class"){B=z.className}u.setAttribute(x,B)}});for(r=0;r]+)\/>|/gi,"");if(q.keep_values){if(/)/g,"\n");t=t.replace(/^[\r\n]*|[\r\n]*$/g,"");t=t.replace(/^\s*(\/\/\s*|\]\]>|-->|\]\]-->)\s*$/g,"");return t}r=r.replace(/]+|)>([\s\S]*?)<\/script>/gi,function(s,x,t){if(!x){x=' type="text/javascript"'}x=x.replace(/src=\"([^\"]+)\"?/i,function(y,z){if(q.url_converter){z=p.encode(q.url_converter.call(q.url_converter_scope||p,p.decode(z),"src","script"))}return'_mce_src="'+z+'"'});if(m.trim(t)){v.push(o(t));t=""}return""+t+""});r=r.replace(/]+|)>([\s\S]*?)<\/style>/gi,function(s,x,t){if(t){v.push(o(t));t=""}return""+t+""});r=r.replace(/]+|)>([\s\S]*?)<\/noscript>/g,function(s,x,t){return""})}r=r.replace(//g,"");function u(s){return s.replace(h,function(y,z,x,t){return"<"+z+x.replace(l,function(B,A,E,D,C){var F;A=A.toLowerCase();E=E||D||C||"";if(e[A]){if(E==="false"||E==="0"){return}return A+'="'+A+'"'}if(f[A]&&x.indexOf("_mce_"+A)==-1){F=p.decode(E);if(q.url_converter&&(A=="src"||A=="href")){F=q.url_converter.call(q.url_converter_scope||p,F,A,z)}if(A=="style"){F=p.serializeStyle(p.parseStyle(F),A)}return A+'="'+E+'" _mce_'+A+'="'+p.encode(F)+'"'}return B})+t+">"})}r=u(r);r=r.replace(/MCE_SCRIPT:([0-9]+)/g,function(t,s){return v[s]})}return r},getOuterHTML:function(o){var p;o=this.get(o);if(!o){return null}if(o.outerHTML!==undefined){return o.outerHTML}p=(o.ownerDocument||this.doc).createElement("body");p.appendChild(o.cloneNode(true));return p.innerHTML},setOuterHTML:function(r,p,s){var o=this;function q(u,t,x){var y,v;v=x.createElement("body");v.innerHTML=t;y=v.lastChild;while(y){o.insertAfter(y.cloneNode(true),u);y=y.previousSibling}o.remove(u)}return this.run(r,function(u){u=o.get(u);if(u.nodeType==1){s=s||u.ownerDocument||o.doc;if(d){try{if(d&&u.nodeType==1){u.outerHTML=p}else{q(u,p,s)}}catch(t){q(u,p,s)}}else{q(u,p,s)}}})},decode:function(p){var q,r,o;if(/&[\w#]+;/.test(p)){q=this.doc.createElement("div");q.innerHTML=p;r=q.firstChild;o="";if(r){do{o+=r.nodeValue}while(r=r.nextSibling)}return o||p}return p},encode:function(o){return(""+o).replace(n,function(p){return c[p]})},insertAfter:function(o,p){p=this.get(p);return this.run(o,function(r){var q,s;q=p.parentNode;s=p.nextSibling;if(s){q.insertBefore(r,s)}else{q.appendChild(r)}return r})},isBlock:function(o){if(o.nodeType&&o.nodeType!==1){return false}o=o.nodeName||o;return a.test(o)},replace:function(s,r,p){var q=this;if(j(r,"array")){s=s.cloneNode(true)}return q.run(r,function(t){if(p){k(m.grep(t.childNodes),function(o){s.appendChild(o)})}return t.parentNode.replaceChild(s,t)})},rename:function(r,o){var q=this,p;if(r.nodeName!=o.toUpperCase()){p=q.create(o);k(q.getAttribs(r),function(s){q.setAttrib(p,s.nodeName,q.getAttrib(r,s.nodeName))});q.replace(p,r,1)}return p||r},findCommonAncestor:function(q,o){var r=q,p;while(r){p=o;while(p&&r!=p){p=p.parentNode}if(r==p){break}r=r.parentNode}if(!r&&q.ownerDocument){return q.ownerDocument.documentElement}return r},toHex:function(o){var q=/^\s*rgb\s*?\(\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?,\s*?([0-9]+)\s*?\)\s*$/i.exec(o);function p(r){r=parseInt(r).toString(16);return r.length>1?r:"0"+r}if(q){o="#"+p(q[1])+p(q[2])+p(q[3]);return o}return o},getClasses:function(){var s=this,o=[],r,u={},v=s.settings.class_filter,q;if(s.classes){return s.classes}function x(t){k(t.imports,function(y){x(y)});k(t.cssRules||t.rules,function(y){switch(y.type||1){case 1:if(y.selectorText){k(y.selectorText.split(","),function(z){z=z.replace(/^\s*|\s*$|^\s\./g,"");if(/\.mce/.test(z)||!/\.[\w\-]+$/.test(z)){return}q=z;z=z.replace(/.*\.([a-z0-9_\-]+).*/i,"$1");if(v&&!(z=v(z,q))){return}if(!u[z]){o.push({"class":z});u[z]=1}})}break;case 3:x(y.styleSheet);break}})}try{k(s.doc.styleSheets,x)}catch(p){}if(o.length>0){s.classes=o}return o},run:function(u,r,q){var p=this,v;if(p.doc&&typeof(u)==="string"){u=p.get(u)}if(!u){return false}q=q||this;if(!u.nodeType&&(u.length||u.length===0)){v=[];k(u,function(s,o){if(s){if(typeof(s)=="string"){s=p.doc.getElementById(s)}v.push(r.call(q,s,o))}});return v}return r.call(q,u)},getAttribs:function(q){var p;q=this.get(q);if(!q){return[]}if(d){p=[];if(q.nodeName=="OBJECT"){return q.attributes}if(q.nodeName==="OPTION"&&this.getAttrib(q,"selected")){p.push({specified:1,nodeName:"selected"})}q.cloneNode(false).outerHTML.replace(/<\/?[\w:\-]+ ?|=[\"][^\"]+\"|=\'[^\']+\'|=[\w\-]+|>/gi,"").replace(/[\w:\-]+/gi,function(o){p.push({specified:1,nodeName:o})});return p}return q.attributes},destroy:function(p){var o=this;if(o.events){o.events.destroy()}o.win=o.doc=o.root=o.events=null;if(!p){m.removeUnload(o.destroy)}},createRng:function(){var o=this.doc;return o.createRange?o.createRange():new m.dom.Range(this)},nodeIndex:function(s,t){var o=0,q,r,p;if(s){for(q=s.nodeType,s=s.previousSibling,r=s;s;s=s.previousSibling){p=s.nodeType;if(t&&p==3){if(p==q||!s.nodeValue.length){continue}}o++;q=p}}return o},split:function(u,s,y){var z=this,o=z.createRng(),v,q,x;function p(A){var t,r=A.childNodes;if(A.nodeType==1&&A.getAttribute("_mce_type")=="bookmark"){return}for(t=r.length-1;t>=0;t--){p(r[t])}if(A.nodeType!=9){if(A.nodeType==3&&A.nodeValue.length>0){return}if(A.nodeType==1){r=A.childNodes;if(r.length==1&&r[0]&&r[0].nodeType==1&&r[0].getAttribute("_mce_type")=="bookmark"){A.parentNode.insertBefore(r[0],A)}if(r.length||/^(br|hr|input|img)$/i.test(A.nodeName)){return}}z.remove(A)}return A}if(u&&s){o.setStart(u.parentNode,z.nodeIndex(u));o.setEnd(s.parentNode,z.nodeIndex(s));v=o.extractContents();o=z.createRng();o.setStart(s.parentNode,z.nodeIndex(s)+1);o.setEnd(u.parentNode,z.nodeIndex(u)+1);q=o.extractContents();x=u.parentNode;x.insertBefore(p(v),u);if(y){x.replaceChild(y,s)}else{x.insertBefore(s,u)}x.insertBefore(p(q),u);z.remove(u);return y||s}},bind:function(s,o,r,q){var p=this;if(!p.events){p.events=new m.dom.EventUtils()}return p.events.add(s,o,r,q||this)},unbind:function(r,o,q){var p=this;if(!p.events){p.events=new m.dom.EventUtils()}return p.events.remove(r,o,q)},_findSib:function(r,o,p){var q=this,s=o;if(r){if(j(s,"string")){s=function(t){return q.is(t,o)}}for(r=r[p];r;r=r[p]){if(s(r)){return r}}}return null},_isRes:function(o){return/^(top|left|bottom|right|width|height)/i.test(o)||/;\s*(top|left|bottom|right|width|height)/i.test(o)}});m.DOM=new m.dom.DOMUtils(document,{process_html:0})})(tinymce);(function(a){function b(c){var N=this,e=c.doc,S=0,E=1,j=2,D=true,R=false,U="startOffset",h="startContainer",P="endContainer",z="endOffset",k=tinymce.extend,n=c.nodeIndex;k(N,{startContainer:e,startOffset:0,endContainer:e,endOffset:0,collapsed:D,commonAncestorContainer:e,START_TO_START:0,START_TO_END:1,END_TO_END:2,END_TO_START:3,setStart:q,setEnd:s,setStartBefore:g,setStartAfter:I,setEndBefore:J,setEndAfter:u,collapse:A,selectNode:x,selectNodeContents:F,compareBoundaryPoints:v,deleteContents:p,extractContents:H,cloneContents:d,insertNode:C,surroundContents:M,cloneRange:K});function q(V,t){B(D,V,t)}function s(V,t){B(R,V,t)}function g(t){q(t.parentNode,n(t))}function I(t){q(t.parentNode,n(t)+1)}function J(t){s(t.parentNode,n(t))}function u(t){s(t.parentNode,n(t)+1)}function A(t){if(t){N[P]=N[h];N[z]=N[U]}else{N[h]=N[P];N[U]=N[z]}N.collapsed=D}function x(t){g(t);u(t)}function F(t){q(t,0);s(t,t.nodeType===1?t.childNodes.length:t.nodeValue.length)}function v(W,X){var Z=N[h],Y=N[U],V=N[P],t=N[z];if(W===0){return G(Z,Y,Z,Y)}if(W===1){return G(Z,Y,V,t)}if(W===2){return G(V,t,V,t)}if(W===3){return G(V,t,Z,Y)}}function p(){m(j)}function H(){return m(S)}function d(){return m(E)}function C(Y){var V=this[h],t=this[U],X,W;if((V.nodeType===3||V.nodeType===4)&&V.nodeValue){if(!t){V.parentNode.insertBefore(Y,V)}else{if(t>=V.nodeValue.length){c.insertAfter(Y,V)}else{X=V.splitText(t);V.parentNode.insertBefore(Y,X)}}}else{if(V.childNodes.length>0){W=V.childNodes[t]}if(W){V.insertBefore(Y,W)}else{V.appendChild(Y)}}}function M(V){var t=N.extractContents();N.insertNode(V);V.appendChild(t);N.selectNode(V)}function K(){return k(new b(c),{startContainer:N[h],startOffset:N[U],endContainer:N[P],endOffset:N[z],collapsed:N.collapsed,commonAncestorContainer:N.commonAncestorContainer})}function O(t,V){var W;if(t.nodeType==3){return t}if(V<0){return t}W=t.firstChild;while(W&&V>0){--V;W=W.nextSibling}if(W){return W}return t}function l(){return(N[h]==N[P]&&N[U]==N[z])}function G(X,Z,V,Y){var aa,W,t,ab,ad,ac;if(X==V){if(Z==Y){return 0}if(Z0){N.collapse(V)}}else{N.collapse(V)}N.collapsed=l();N.commonAncestorContainer=c.findCommonAncestor(N[h],N[P])}function m(ab){var aa,X=0,ad=0,V,Z,W,Y,t,ac;if(N[h]==N[P]){return f(ab)}for(aa=N[P],V=aa.parentNode;V;aa=V,V=V.parentNode){if(V==N[h]){return r(aa,ab)}++X}for(aa=N[h],V=aa.parentNode;V;aa=V,V=V.parentNode){if(V==N[P]){return T(aa,ab)}++ad}Z=ad-X;W=N[h];while(Z>0){W=W.parentNode;Z--}Y=N[P];while(Z<0){Y=Y.parentNode;Z++}for(t=W.parentNode,ac=Y.parentNode;t!=ac;t=t.parentNode,ac=ac.parentNode){W=t;Y=ac}return o(W,Y,ab)}function f(Z){var ab,Y,X,aa,t,W,V;if(Z!=j){ab=e.createDocumentFragment()}if(N[U]==N[z]){return ab}if(N[h].nodeType==3){Y=N[h].nodeValue;X=Y.substring(N[U],N[z]);if(Z!=E){N[h].deleteData(N[U],N[z]-N[U]);N.collapse(D)}if(Z==j){return}ab.appendChild(e.createTextNode(X));return ab}aa=O(N[h],N[U]);t=N[z]-N[U];while(t>0){W=aa.nextSibling;V=y(aa,Z);if(ab){ab.appendChild(V)}--t;aa=W}if(Z!=E){N.collapse(D)}return ab}function r(ab,Y){var aa,Z,V,t,X,W;if(Y!=j){aa=e.createDocumentFragment()}Z=i(ab,Y);if(aa){aa.appendChild(Z)}V=n(ab);t=V-N[U];if(t<=0){if(Y!=E){N.setEndBefore(ab);N.collapse(R)}return aa}Z=ab.previousSibling;while(t>0){X=Z.previousSibling;W=y(Z,Y);if(aa){aa.insertBefore(W,aa.firstChild)}--t;Z=X}if(Y!=E){N.setEndBefore(ab);N.collapse(R)}return aa}function T(Z,Y){var ab,V,aa,t,X,W;if(Y!=j){ab=e.createDocumentFragment()}aa=Q(Z,Y);if(ab){ab.appendChild(aa)}V=n(Z);++V;t=N[z]-V;aa=Z.nextSibling;while(t>0){X=aa.nextSibling;W=y(aa,Y);if(ab){ab.appendChild(W)}--t;aa=X}if(Y!=E){N.setStartAfter(Z);N.collapse(D)}return ab}function o(Z,t,ac){var W,ae,Y,aa,ab,V,ad,X;if(ac!=j){ae=e.createDocumentFragment()}W=Q(Z,ac);if(ae){ae.appendChild(W)}Y=Z.parentNode;aa=n(Z);ab=n(t);++aa;V=ab-aa;ad=Z.nextSibling;while(V>0){X=ad.nextSibling;W=y(ad,ac);if(ae){ae.appendChild(W)}ad=X;--V}W=i(t,ac);if(ae){ae.appendChild(W)}if(ac!=E){N.setStartAfter(Z);N.collapse(D)}return ae}function i(aa,ab){var W=O(N[P],N[z]-1),ac,Z,Y,t,V,X=W!=N[P];if(W==aa){return L(W,X,R,ab)}ac=W.parentNode;Z=L(ac,R,R,ab);while(ac){while(W){Y=W.previousSibling;t=L(W,X,R,ab);if(ab!=j){Z.insertBefore(t,Z.firstChild)}X=D;W=Y}if(ac==aa){return Z}W=ac.previousSibling;ac=ac.parentNode;V=L(ac,R,R,ab);if(ab!=j){V.appendChild(Z)}Z=V}}function Q(aa,ab){var X=O(N[h],N[U]),Y=X!=N[h],ac,Z,W,t,V;if(X==aa){return L(X,Y,D,ab)}ac=X.parentNode;Z=L(ac,R,D,ab);while(ac){while(X){W=X.nextSibling;t=L(X,Y,D,ab);if(ab!=j){Z.appendChild(t)}Y=D;X=W}if(ac==aa){return Z}X=ac.nextSibling;ac=ac.parentNode;V=L(ac,R,D,ab);if(ab!=j){V.appendChild(Z)}Z=V}}function L(t,Y,ab,ac){var X,W,Z,V,aa;if(Y){return y(t,ac)}if(t.nodeType==3){X=t.nodeValue;if(ab){V=N[U];W=X.substring(V);Z=X.substring(0,V)}else{V=N[z];W=X.substring(0,V);Z=X.substring(V)}if(ac!=E){t.nodeValue=Z}if(ac==j){return}aa=t.cloneNode(R);aa.nodeValue=W;return aa}if(ac==j){return}return t.cloneNode(R)}function y(V,t){if(t!=j){return t==E?V.cloneNode(D):V}V.parentNode.removeChild(V)}}a.Range=b})(tinymce.dom);(function(){function a(g){var i=this,j="\uFEFF",e,h,d=g.dom,c=true,f=false;function b(){var n=g.getRng(),k=d.createRng(),m,o;m=n.item?n.item(0):n.parentElement();if(m.ownerDocument!=d.doc){return k}if(n.item||!m.hasChildNodes()){k.setStart(m.parentNode,d.nodeIndex(m));k.setEnd(k.startContainer,k.startOffset+1);return k}o=g.isCollapsed();function l(s){var u,q,t,p,A=0,x,y,z,r,v;r=n.duplicate();r.collapse(s);u=d.create("a");z=r.parentElement();if(!z.hasChildNodes()){k[s?"setStart":"setEnd"](z,0);return}z.appendChild(u);r.moveToElementText(u);v=n.compareEndPoints(s?"StartToStart":"EndToEnd",r);if(v>0){k[s?"setStartAfter":"setEndAfter"](z);d.remove(u);return}p=tinymce.grep(z.childNodes);x=p.length-1;while(A<=x){y=Math.floor((A+x)/2);z.insertBefore(u,p[y]);r.moveToElementText(u);v=n.compareEndPoints(s?"StartToStart":"EndToEnd",r);if(v>0){A=y+1}else{if(v<0){x=y-1}else{found=true;break}}}q=v>0||y==0?u.nextSibling:u.previousSibling;if(q.nodeType==1){d.remove(u);t=d.nodeIndex(q);q=q.parentNode;if(!s||y>0){t++}}else{if(v>0||y==0){r.setEndPoint(s?"StartToStart":"EndToEnd",n);t=r.text.length}else{r.setEndPoint(s?"StartToStart":"EndToEnd",n);t=q.nodeValue.length-r.text.length}d.remove(u)}k[s?"setStart":"setEnd"](q,t)}l(true);if(!o){l()}return k}this.addRange=function(k){var p,n,m,r,u,s,t=g.dom.doc,o=t.body;function l(B){var x,A,v,z,y;v=d.create("a");x=B?m:u;A=B?r:s;z=p.duplicate();if(x==t){x=o;A=0}if(x.nodeType==3){x.parentNode.insertBefore(v,x);z.moveToElementText(v);z.moveStart("character",A);d.remove(v);p.setEndPoint(B?"StartToStart":"EndToEnd",z)}else{y=x.childNodes;if(y.length){if(A>=y.length){d.insertAfter(v,y[y.length-1])}else{x.insertBefore(v,y[A])}z.moveToElementText(v)}else{v=t.createTextNode(j);x.appendChild(v);z.moveToElementText(v.parentNode);z.collapse(c)}p.setEndPoint(B?"StartToStart":"EndToEnd",z);d.remove(v)}}this.destroy();m=k.startContainer;r=k.startOffset;u=k.endContainer;s=k.endOffset;p=o.createTextRange();if(m==u&&m.nodeType==1&&r==s-1){if(r==s-1){try{n=o.createControlRange();n.addElement(m.childNodes[r]);n.select();n.scrollIntoView();return}catch(q){}}}l(true);l();p.select();p.scrollIntoView()};this.getRangeAt=function(){if(!e||!tinymce.dom.RangeUtils.compareRanges(h,g.getRng())){e=b();h=g.getRng()}try{e.startContainer.nextSibling}catch(k){e=b();h=null}return e};this.destroy=function(){h=e=null};if(g.dom.boxModel){(function(){var q=d.doc,l=q.body,n,o;q.documentElement.unselectable=c;function p(r,u){var s=l.createTextRange();try{s.moveToPoint(r,u)}catch(t){s=null}return s}function m(s){var r;if(s.button){r=p(s.x,s.y);if(r){if(r.compareEndPoints("StartToStart",o)>0){r.setEndPoint("StartToStart",o)}else{r.setEndPoint("EndToEnd",o)}r.select()}}else{k()}}function k(){d.unbind(q,"mouseup",k);d.unbind(q,"mousemove",m);n=0}d.bind(q,"mousedown",function(r){if(r.target.nodeName==="HTML"){if(n){k()}n=1;o=p(r.x,r.y);if(o){d.bind(q,"mouseup",k);d.bind(q,"mousemove",m);o.select()}}})})()}}tinymce.dom.TridentSelection=a})();(function(d){var f=d.each,c=d.DOM,b=d.isIE,e=d.isWebKit,a;d.create("tinymce.dom.EventUtils",{EventUtils:function(){this.inits=[];this.events=[]},add:function(m,p,l,j){var g,h=this,i=h.events,k;if(p instanceof Array){k=[];f(p,function(o){k.push(h.add(m,o,l,j))});return k}if(m&&m.hasOwnProperty&&m instanceof Array){k=[];f(m,function(n){n=c.get(n);k.push(h.add(n,p,l,j))});return k}m=c.get(m);if(!m){return}g=function(n){if(h.disabled){return}n=n||window.event;if(n&&b){if(!n.target){n.target=n.srcElement}d.extend(n,h._stoppers)}if(!j){return l(n)}return l.call(j,n)};if(p=="unload"){d.unloads.unshift({func:g});return g}if(p=="init"){if(h.domLoaded){g()}else{h.inits.push(g)}return g}i.push({obj:m,name:p,func:l,cfunc:g,scope:j});h._add(m,p,g);return l},remove:function(l,m,k){var h=this,g=h.events,i=false,j;if(l&&l.hasOwnProperty&&l instanceof Array){j=[];f(l,function(n){n=c.get(n);j.push(h.remove(n,m,k))});return j}l=c.get(l);f(g,function(o,n){if(o.obj==l&&o.name==m&&(!k||(o.func==k||o.cfunc==k))){g.splice(n,1);h._remove(l,m,o.cfunc);i=true;return false}});return i},clear:function(l){var j=this,g=j.events,h,k;if(l){l=c.get(l);for(h=g.length-1;h>=0;h--){k=g[h];if(k.obj===l){j._remove(k.obj,k.name,k.cfunc);k.obj=k.cfunc=null;g.splice(h,1)}}}},cancel:function(g){if(!g){return false}this.stop(g);return this.prevent(g)},stop:function(g){if(g.stopPropagation){g.stopPropagation()}else{g.cancelBubble=true}return false},prevent:function(g){if(g.preventDefault){g.preventDefault()}else{g.returnValue=false}return false},destroy:function(){var g=this;f(g.events,function(j,h){g._remove(j.obj,j.name,j.cfunc);j.obj=j.cfunc=null});g.events=[];g=null},_add:function(h,i,g){if(h.attachEvent){h.attachEvent("on"+i,g)}else{if(h.addEventListener){h.addEventListener(i,g,false)}else{h["on"+i]=g}}},_remove:function(i,j,h){if(i){try{if(i.detachEvent){i.detachEvent("on"+j,h)}else{if(i.removeEventListener){i.removeEventListener(j,h,false)}else{i["on"+j]=null}}}catch(g){}}},_pageInit:function(h){var g=this;if(g.domLoaded){return}g.domLoaded=true;f(g.inits,function(i){i()});g.inits=[]},_wait:function(i){var g=this,h=i.document;if(i.tinyMCE_GZ&&tinyMCE_GZ.loaded){g.domLoaded=1;return}if(h.attachEvent){h.attachEvent("onreadystatechange",function(){if(h.readyState==="complete"){h.detachEvent("onreadystatechange",arguments.callee);g._pageInit(i)}});if(h.documentElement.doScroll&&i==i.top){(function(){if(g.domLoaded){return}try{h.documentElement.doScroll("left")}catch(j){setTimeout(arguments.callee,0);return}g._pageInit(i)})()}}else{if(h.addEventListener){g._add(i,"DOMContentLoaded",function(){g._pageInit(i)})}}g._add(i,"load",function(){g._pageInit(i)})},_stoppers:{preventDefault:function(){this.returnValue=false},stopPropagation:function(){this.cancelBubble=true}}});a=d.dom.Event=new d.dom.EventUtils();a._wait(window);d.addUnload(function(){a.destroy()})})(tinymce);(function(a){a.dom.Element=function(f,d){var b=this,e,c;b.settings=d=d||{};b.id=f;b.dom=e=d.dom||a.DOM;if(!a.isIE){c=e.get(b.id)}a.each(("getPos,getRect,getParent,add,setStyle,getStyle,setStyles,setAttrib,setAttribs,getAttrib,addClass,removeClass,hasClass,getOuterHTML,setOuterHTML,remove,show,hide,isHidden,setHTML,get").split(/,/),function(g){b[g]=function(){var h=[f],j;for(j=0;j_';if(j.startContainer==k&&j.endContainer==k){k.body.innerHTML=i}else{j.deleteContents();if(k.body.childNodes.length==0){k.body.innerHTML=i}else{j.insertNode(j.createContextualFragment(i))}}l=f.dom.get("__caret");j=k.createRange();j.setStartBefore(l);j.setEndBefore(l);f.setRng(j);f.dom.remove("__caret")}else{if(j.item){k.execCommand("Delete",false,null);j=f.getRng()}j.pasteHTML(i)}f.onSetContent.dispatch(f,g)},getStart:function(){var g=this.getRng(),h,f,j,i;if(g.duplicate||g.item){if(g.item){return g.item(0)}j=g.duplicate();j.collapse(1);h=j.parentElement();f=i=g.parentElement();while(i=i.parentNode){if(i==h){h=f;break}}if(h&&h.nodeName=="BODY"){return h.firstChild||h}return h}else{h=g.startContainer;if(h.nodeType==1&&h.hasChildNodes()){h=h.childNodes[Math.min(h.childNodes.length-1,g.startOffset)]}if(h&&h.nodeType==3){return h.parentNode}return h}},getEnd:function(){var g=this,h=g.getRng(),i,f;if(h.duplicate||h.item){if(h.item){return h.item(0)}h=h.duplicate();h.collapse(0);i=h.parentElement();if(i&&i.nodeName=="BODY"){return i.lastChild||i}return i}else{i=h.endContainer;f=h.endOffset;if(i.nodeType==1&&i.hasChildNodes()){i=i.childNodes[f>0?f-1:f]}if(i&&i.nodeType==3){return i.parentNode}return i}},getBookmark:function(q,r){var u=this,m=u.dom,g,j,i,n,h,o,p,l="\uFEFF",s;function f(v,x){var t=0;d(m.select(v),function(z,y){if(z==x){t=y}});return t}if(q==2){function k(){var v=u.getRng(true),t=m.getRoot(),x={};function y(B,G){var A=B[G?"startContainer":"endContainer"],F=B[G?"startOffset":"endOffset"],z=[],C,E,D=0;if(A.nodeType==3){if(r){for(C=A.previousSibling;C&&C.nodeType==3;C=C.previousSibling){F+=C.nodeValue.length}}z.push(F)}else{E=A.childNodes;if(F>=E.length&&E.length){D=1;F=Math.max(0,E.length-1)}z.push(u.dom.nodeIndex(E[F],r)+D)}for(;A&&A!=t;A=A.parentNode){z.push(u.dom.nodeIndex(A,r))}return z}x.start=y(v,true);if(!u.isCollapsed()){x.end=y(v)}return x}return k()}if(q){return{rng:u.getRng()}}g=u.getRng();i=m.uniqueId();n=tinyMCE.activeEditor.selection.isCollapsed();s="overflow:hidden;line-height:0px";if(g.duplicate||g.item){if(!g.item){j=g.duplicate();g.collapse();g.pasteHTML(''+l+"");if(!n){j.collapse(false);j.pasteHTML(''+l+"")}}else{o=g.item(0);h=o.nodeName;return{name:h,index:f(h,o)}}}else{o=u.getNode();h=o.nodeName;if(h=="IMG"){return{name:h,index:f(h,o)}}j=g.cloneRange();if(!n){j.collapse(false);j.insertNode(m.create("span",{_mce_type:"bookmark",id:i+"_end",style:s},l))}g.collapse(true);g.insertNode(m.create("span",{_mce_type:"bookmark",id:i+"_start",style:s},l))}u.moveToBookmark({id:i,keep:1});return{id:i}},moveToBookmark:function(n){var r=this,l=r.dom,i,h,f,q,j,s,o,p;if(r.tridentSel){r.tridentSel.destroy()}if(n){if(n.start){f=l.createRng();q=l.getRoot();function g(z){var t=n[z?"start":"end"],v,x,y,u;if(t){for(x=q,v=t.length-1;v>=1;v--){u=x.childNodes;if(u.length){x=u[t[v]]}}if(z){f.setStart(x,t[0])}else{f.setEnd(x,t[0])}}}g(true);g();r.setRng(f)}else{if(n.id){function k(A){var u=l.get(n.id+"_"+A),z,t,x,y,v=n.keep;if(u){z=u.parentNode;if(A=="start"){if(!v){t=l.nodeIndex(u)}else{z=u.firstChild;t=1}j=s=z;o=p=t}else{if(!v){t=l.nodeIndex(u)}else{z=u.firstChild;t=1}s=z;p=t}if(!v){y=u.previousSibling;x=u.nextSibling;d(c.grep(u.childNodes),function(B){if(B.nodeType==3){B.nodeValue=B.nodeValue.replace(/\uFEFF/g,"")}});while(u=l.get(n.id+"_"+A)){l.remove(u,1)}if(y&&x&&y.nodeType==x.nodeType&&y.nodeType==3){t=y.nodeValue.length;y.appendData(x.nodeValue);l.remove(x);if(A=="start"){j=s=y;o=p=t}else{s=y;p=t}}}}}function m(t){if(!a&&l.isBlock(t)&&!t.innerHTML){t.innerHTML='
'}return t}k("start");k("end");f=l.createRng();f.setStart(m(j),o);f.setEnd(m(s),p);r.setRng(f)}else{if(n.name){r.select(l.select(n.name)[n.index])}else{if(n.rng){r.setRng(n.rng)}}}}}},select:function(k,j){var i=this,l=i.dom,g=l.createRng(),f;f=l.nodeIndex(k);g.setStart(k.parentNode,f);g.setEnd(k.parentNode,f+1);if(j){function h(m,o){var n=new c.dom.TreeWalker(m,m);do{if(m.nodeType==3&&c.trim(m.nodeValue).length!=0){if(o){g.setStart(m,0)}else{g.setEnd(m,m.nodeValue.length)}return}if(m.nodeName=="BR"){if(o){g.setStartBefore(m)}else{g.setEndBefore(m)}return}}while(m=(o?n.next():n.prev()))}h(k,1);h(k)}i.setRng(g);return k},isCollapsed:function(){var f=this,h=f.getRng(),g=f.getSel();if(!h||h.item){return false}if(h.compareEndPoints){return h.compareEndPoints("StartToEnd",h)===0}return !g||h.collapsed},collapse:function(f){var g=this,h=g.getRng(),i;if(h.item){i=h.item(0);h=this.win.document.body.createTextRange();h.moveToElementText(i)}h.collapse(!!f);g.setRng(h)},getSel:function(){var g=this,f=this.win;return f.getSelection?f.getSelection():f.document.selection},getRng:function(j){var g=this,h,i;if(j&&g.tridentSel){return g.tridentSel.getRangeAt(0)}try{if(h=g.getSel()){i=h.rangeCount>0?h.getRangeAt(0):(h.createRange?h.createRange():g.win.document.createRange())}}catch(f){}if(!i){i=g.win.document.createRange?g.win.document.createRange():g.win.document.body.createTextRange()}if(g.selectedRange&&g.explicitRange){if(i.compareBoundaryPoints(i.START_TO_START,g.selectedRange)===0&&i.compareBoundaryPoints(i.END_TO_END,g.selectedRange)===0){i=g.explicitRange}else{g.selectedRange=null;g.explicitRange=null}}return i},setRng:function(i){var h,g=this;if(!g.tridentSel){h=g.getSel();if(h){g.explicitRange=i;h.removeAllRanges();h.addRange(i);g.selectedRange=h.getRangeAt(0)}}else{if(i.cloneRange){g.tridentSel.addRange(i);return}try{i.select()}catch(f){}}},setNode:function(g){var f=this;f.setContent(f.dom.getOuterHTML(g));return g},getNode:function(){var g=this,f=g.getRng(),h=g.getSel(),i;if(f.setStart){if(!f){return g.dom.getRoot()}i=f.commonAncestorContainer;if(!f.collapsed){if(f.startContainer==f.endContainer){if(f.startOffset-f.endOffset<2){if(f.startContainer.hasChildNodes()){i=f.startContainer.childNodes[f.startOffset]}}}if(c.isWebKit&&h.anchorNode&&h.anchorNode.nodeType==1){return h.anchorNode.childNodes[h.anchorOffset]}}if(i&&i.nodeType==3){return i.parentNode}return i}return f.item?f.item(0):f.parentElement()},getSelectedBlocks:function(g,f){var i=this,j=i.dom,m,h,l,k=[];m=j.getParent(g||i.getStart(),j.isBlock);h=j.getParent(f||i.getEnd(),j.isBlock);if(m){k.push(m)}if(m&&h&&m!=h){l=m;while((l=l.nextSibling)&&l!=h){if(j.isBlock(l)){k.push(l)}}}if(h&&m!=h){k.push(h)}return k},destroy:function(g){var f=this;f.win=null;if(f.tridentSel){f.tridentSel.destroy()}if(!g){c.removeUnload(f.destroy)}}})})(tinymce);(function(a){a.create("tinymce.dom.XMLWriter",{node:null,XMLWriter:function(c){function b(){var e=document.implementation;if(!e||!e.createDocument){try{return new ActiveXObject("MSXML2.DOMDocument")}catch(d){}try{return new ActiveXObject("Microsoft.XmlDom")}catch(d){}}else{return e.createDocument("","",null)}}this.doc=b();this.valid=a.isOpera||a.isWebKit;this.reset()},reset:function(){var b=this,c=b.doc;if(c.firstChild){c.removeChild(c.firstChild)}b.node=c.appendChild(c.createElement("html"))},writeStartElement:function(c){var b=this;b.node=b.node.appendChild(b.doc.createElement(c))},writeAttribute:function(c,b){if(this.valid){b=b.replace(/>/g,"%MCGT%")}this.node.setAttribute(c,b)},writeEndElement:function(){this.node=this.node.parentNode},writeFullEndElement:function(){var b=this,c=b.node;c.appendChild(b.doc.createTextNode(""));b.node=c.parentNode},writeText:function(b){if(this.valid){b=b.replace(/>/g,"%MCGT%")}this.node.appendChild(this.doc.createTextNode(b))},writeCDATA:function(b){this.node.appendChild(this.doc.createCDATASection(b))},writeComment:function(b){if(a.isIE){b=b.replace(/^\-|\-$/g," ")}this.node.appendChild(this.doc.createComment(b.replace(/\-\-/g," ")))},getContent:function(){var b;b=this.doc.xml||new XMLSerializer().serializeToString(this.doc);b=b.replace(/<\?[^?]+\?>||<\/html>||]+>/g,"");b=b.replace(/ ?\/>/g," />");if(this.valid){b=b.replace(/\%MCGT%/g,">")}return b}})})(tinymce);(function(a){a.create("tinymce.dom.StringWriter",{str:null,tags:null,count:0,settings:null,indent:null,StringWriter:function(b){this.settings=a.extend({indent_char:" ",indentation:0},b);this.reset()},reset:function(){this.indent="";this.str="";this.tags=[];this.count=0},writeStartElement:function(b){this._writeAttributesEnd();this.writeRaw("<"+b);this.tags.push(b);this.inAttr=true;this.count++;this.elementCount=this.count},writeAttribute:function(d,b){var c=this;c.writeRaw(" "+c.encode(d)+'="'+c.encode(b)+'"')},writeEndElement:function(){var b;if(this.tags.length>0){b=this.tags.pop();if(this._writeAttributesEnd(1)){this.writeRaw("")}if(this.settings.indentation>0){this.writeRaw("\n")}}},writeFullEndElement:function(){if(this.tags.length>0){this._writeAttributesEnd();this.writeRaw("");if(this.settings.indentation>0){this.writeRaw("\n")}}},writeText:function(b){this._writeAttributesEnd();this.writeRaw(this.encode(b));this.count++},writeCDATA:function(b){this._writeAttributesEnd();this.writeRaw("");this.count++},writeComment:function(b){this._writeAttributesEnd();this.writeRaw("");this.count++},writeRaw:function(b){this.str+=b},encode:function(b){return b.replace(/[<>&"]/g,function(c){switch(c){case"<":return"<";case">":return">";case"&":return"&";case'"':return"""}return c})},getContent:function(){return this.str},_writeAttributesEnd:function(b){if(!this.inAttr){return}this.inAttr=false;if(b&&this.elementCount==this.count){this.writeRaw(" />");return false}this.writeRaw(">");return true}})})(tinymce);(function(e){var g=e.extend,f=e.each,b=e.util.Dispatcher,d=e.isIE,a=e.isGecko;function c(h){return h.replace(/([?+*])/g,".$1")}e.create("tinymce.dom.Serializer",{Serializer:function(j){var i=this;i.key=0;i.onPreProcess=new b(i);i.onPostProcess=new b(i);try{i.writer=new e.dom.XMLWriter()}catch(h){i.writer=new e.dom.StringWriter()}i.settings=j=g({dom:e.DOM,valid_nodes:0,node_filter:0,attr_filter:0,invalid_attrs:/^(_mce_|_moz_|sizset|sizcache)/,closed:/^(br|hr|input|meta|img|link|param|area)$/,entity_encoding:"named",entities:"160,nbsp,161,iexcl,162,cent,163,pound,164,curren,165,yen,166,brvbar,167,sect,168,uml,169,copy,170,ordf,171,laquo,172,not,173,shy,174,reg,175,macr,176,deg,177,plusmn,178,sup2,179,sup3,180,acute,181,micro,182,para,183,middot,184,cedil,185,sup1,186,ordm,187,raquo,188,frac14,189,frac12,190,frac34,191,iquest,192,Agrave,193,Aacute,194,Acirc,195,Atilde,196,Auml,197,Aring,198,AElig,199,Ccedil,200,Egrave,201,Eacute,202,Ecirc,203,Euml,204,Igrave,205,Iacute,206,Icirc,207,Iuml,208,ETH,209,Ntilde,210,Ograve,211,Oacute,212,Ocirc,213,Otilde,214,Ouml,215,times,216,Oslash,217,Ugrave,218,Uacute,219,Ucirc,220,Uuml,221,Yacute,222,THORN,223,szlig,224,agrave,225,aacute,226,acirc,227,atilde,228,auml,229,aring,230,aelig,231,ccedil,232,egrave,233,eacute,234,ecirc,235,euml,236,igrave,237,iacute,238,icirc,239,iuml,240,eth,241,ntilde,242,ograve,243,oacute,244,ocirc,245,otilde,246,ouml,247,divide,248,oslash,249,ugrave,250,uacute,251,ucirc,252,uuml,253,yacute,254,thorn,255,yuml,402,fnof,913,Alpha,914,Beta,915,Gamma,916,Delta,917,Epsilon,918,Zeta,919,Eta,920,Theta,921,Iota,922,Kappa,923,Lambda,924,Mu,925,Nu,926,Xi,927,Omicron,928,Pi,929,Rho,931,Sigma,932,Tau,933,Upsilon,934,Phi,935,Chi,936,Psi,937,Omega,945,alpha,946,beta,947,gamma,948,delta,949,epsilon,950,zeta,951,eta,952,theta,953,iota,954,kappa,955,lambda,956,mu,957,nu,958,xi,959,omicron,960,pi,961,rho,962,sigmaf,963,sigma,964,tau,965,upsilon,966,phi,967,chi,968,psi,969,omega,977,thetasym,978,upsih,982,piv,8226,bull,8230,hellip,8242,prime,8243,Prime,8254,oline,8260,frasl,8472,weierp,8465,image,8476,real,8482,trade,8501,alefsym,8592,larr,8593,uarr,8594,rarr,8595,darr,8596,harr,8629,crarr,8656,lArr,8657,uArr,8658,rArr,8659,dArr,8660,hArr,8704,forall,8706,part,8707,exist,8709,empty,8711,nabla,8712,isin,8713,notin,8715,ni,8719,prod,8721,sum,8722,minus,8727,lowast,8730,radic,8733,prop,8734,infin,8736,ang,8743,and,8744,or,8745,cap,8746,cup,8747,int,8756,there4,8764,sim,8773,cong,8776,asymp,8800,ne,8801,equiv,8804,le,8805,ge,8834,sub,8835,sup,8836,nsub,8838,sube,8839,supe,8853,oplus,8855,otimes,8869,perp,8901,sdot,8968,lceil,8969,rceil,8970,lfloor,8971,rfloor,9001,lang,9002,rang,9674,loz,9824,spades,9827,clubs,9829,hearts,9830,diams,338,OElig,339,oelig,352,Scaron,353,scaron,376,Yuml,710,circ,732,tilde,8194,ensp,8195,emsp,8201,thinsp,8204,zwnj,8205,zwj,8206,lrm,8207,rlm,8211,ndash,8212,mdash,8216,lsquo,8217,rsquo,8218,sbquo,8220,ldquo,8221,rdquo,8222,bdquo,8224,dagger,8225,Dagger,8240,permil,8249,lsaquo,8250,rsaquo,8364,euro",valid_elements:"*[*]",extended_valid_elements:0,invalid_elements:0,fix_table_elements:1,fix_list_elements:true,fix_content_duplication:true,convert_fonts_to_spans:false,font_size_classes:0,apply_source_formatting:0,indent_mode:"simple",indent_char:"\t",indent_levels:1,remove_linebreaks:1,remove_redundant_brs:1,element_format:"xhtml"},j);i.dom=j.dom;i.schema=j.schema;if(j.entity_encoding=="named"&&!j.entities){j.entity_encoding="raw"}if(j.remove_redundant_brs){i.onPostProcess.add(function(k,l){l.content=l.content.replace(/(
\s*)+<\/(p|h[1-6]|div|li)>/gi,function(n,m,o){if(/^
\s*<\//.test(n)){return""}return n})})}if(j.element_format=="html"){i.onPostProcess.add(function(k,l){l.content=l.content.replace(/<([^>]+) \/>/g,"<$1>")})}if(j.fix_list_elements){i.onPreProcess.add(function(v,s){var l,z,y=["ol","ul"],u,t,q,k=/^(OL|UL)$/,A;function m(r,x){var o=x.split(","),p;while((r=r.previousSibling)!=null){for(p=0;p=1767){f(i.dom.select("p table",l.node).reverse(),function(p){var o=i.dom.getParent(p.parentNode,"table,p");if(o.nodeName!="TABLE"){try{i.dom.split(o,p)}catch(m){}}})}})}},setEntities:function(o){var n=this,j,m,h={},k;if(n.entityLookup){return}j=o.split(",");for(m=0;m1){f(q[1].split("|"),function(u){var p={},t;k=k||[];u=u.replace(/::/g,"~");u=/^([!\-])?([\w*.?~_\-]+|)([=:<])?(.+)?$/.exec(u);u[2]=u[2].replace(/~/g,":");if(u[1]=="!"){r=r||[];r.push(u[2])}if(u[1]=="-"){for(t=0;t=1767)){p=j.createHTMLDocument("");f(r.nodeName=="BODY"?r.childNodes:[r],function(h){p.body.appendChild(p.importNode(h,true))});if(r.nodeName!="BODY"){r=p.body.firstChild}else{r=p.body}i=k.dom.doc;k.dom.doc=p}k.key=""+(parseInt(k.key)+1);if(!q.no_events){q.node=r;k.onPreProcess.dispatch(k,q)}k.writer.reset();k._info=q;k._serializeNode(r,q.getInner);q.content=k.writer.getContent();if(i){k.dom.doc=i}if(!q.no_events){k.onPostProcess.dispatch(k,q)}k._postProcess(q);q.node=null;return e.trim(q.content)},_postProcess:function(n){var i=this,k=i.settings,j=n.content,m=[],l;if(n.format=="html"){l=i._protect({content:j,patterns:[{pattern:/(]*>)(.*?)(<\/script>)/g},{pattern:/(]*>)(.*?)(<\/noscript>)/g},{pattern:/(]*>)(.*?)(<\/style>)/g},{pattern:/(]*>)(.*?)(<\/pre>)/g,encode:1},{pattern:/()/g}]});j=l.content;if(k.entity_encoding!=="raw"){j=i._encode(j)}if(!n.set){j=j.replace(/

\s+<\/p>|]+)>\s+<\/p>/g,k.entity_encoding=="numeric"?" 

":" 

");if(k.remove_linebreaks){j=j.replace(/\r?\n|\r/g," ");j=j.replace(/(<[^>]+>)\s+/g,"$1 ");j=j.replace(/\s+(<\/[^>]+>)/g," $1");j=j.replace(/<(p|h[1-6]|blockquote|hr|div|table|tbody|tr|td|body|head|html|title|meta|style|pre|script|link|object) ([^>]+)>\s+/g,"<$1 $2>");j=j.replace(/<(p|h[1-6]|blockquote|hr|div|table|tbody|tr|td|body|head|html|title|meta|style|pre|script|link|object)>\s+/g,"<$1>");j=j.replace(/\s+<\/(p|h[1-6]|blockquote|hr|div|table|tbody|tr|td|body|head|html|title|meta|style|pre|script|link|object)>/g,"")}if(k.apply_source_formatting&&k.indent_mode=="simple"){j=j.replace(/<(\/?)(ul|hr|table|meta|link|tbody|tr|object|body|head|html|map)(|[^>]+)>\s*/g,"\n<$1$2$3>\n");j=j.replace(/\s*<(p|h[1-6]|blockquote|div|title|style|pre|script|td|li|area)(|[^>]+)>/g,"\n<$1$2>");j=j.replace(/<\/(p|h[1-6]|blockquote|div|title|style|pre|script|td|li)>\s*/g,"\n");j=j.replace(/\n\n/g,"\n")}}j=i._unprotect(j,l);j=j.replace(//g,"");if(k.entity_encoding=="raw"){j=j.replace(/

 <\/p>|]+)> <\/p>/g,"\u00a0

")}j=j.replace(/]+|)>([\s\S]*?)<\/noscript>/g,function(h,p,o){return""+i.dom.decode(o.replace(//g,""))+""})}n.content=j},_serializeNode:function(E,J){var A=this,B=A.settings,y=A.writer,q,j,u,G,F,I,C,h,z,k,r,D,p,m,H,o,x;if(!B.node_filter||B.node_filter(E)){switch(E.nodeType){case 1:if(E.hasAttribute?E.hasAttribute("_mce_bogus"):E.getAttribute("_mce_bogus")){return}p=H=false;q=E.hasChildNodes();k=E.getAttribute("_mce_name")||E.nodeName.toLowerCase();o=E.getAttribute("_mce_type");if(o){if(!A._info.cleanup){p=true;return}else{H=1}}if(d){x=E.scopeName;if(x&&x!=="HTML"&&x!=="html"){k=x+":"+k}}if(k.indexOf("mce:")===0){k=k.substring(4)}if(!H){if(!A.validElementsRE||!A.validElementsRE.test(k)||(A.invalidElementsRE&&A.invalidElementsRE.test(k))||J){p=true;break}}if(d){if(B.fix_content_duplication){if(E._mce_serialized==A.key){return}E._mce_serialized=A.key}if(k.charAt(0)=="/"){k=k.substring(1)}}else{if(a){if(E.nodeName==="BR"&&E.getAttribute("type")=="_moz"){return}}}if(B.validate_children){if(A.elementName&&!A.schema.isValid(A.elementName,k)){p=true;break}A.elementName=k}r=A.findRule(k);if(!r){p=true;break}k=r.name||k;m=B.closed.test(k);if((!q&&r.noEmpty)||(d&&!k)){p=true;break}if(r.requiredAttribs){I=r.requiredAttribs;for(G=I.length-1;G>=0;G--){if(this.dom.getAttrib(E,I[G])!==""){break}}if(G==-1){p=true;break}}y.writeStartElement(k);if(r.attribs){for(G=0,C=r.attribs,F=C.length;G-1;G--){h=C[G];if(h.specified){I=h.nodeName.toLowerCase();if(B.invalid_attrs.test(I)||!r.validAttribsRE.test(I)){continue}D=A.findAttribRule(r,I);z=A._getAttrib(E,D,I);if(z!==null){y.writeAttribute(I,z)}}}}if(o&&H){y.writeAttribute("_mce_type",o)}if(k==="script"&&e.trim(E.innerHTML)){y.writeText("// ");y.writeCDATA(E.innerHTML.replace(/|<\[CDATA\[|\]\]>/g,""));q=false;break}if(r.padd){if(q&&(u=E.firstChild)&&u.nodeType===1&&E.childNodes.length===1){if(u.hasAttribute?u.hasAttribute("_mce_bogus"):u.getAttribute("_mce_bogus")){y.writeText("\u00a0")}}else{if(!q){y.writeText("\u00a0")}}}break;case 3:if(B.validate_children&&A.elementName&&!A.schema.isValid(A.elementName,"#text")){return}return y.writeText(E.nodeValue);case 4:return y.writeCDATA(E.nodeValue);case 8:return y.writeComment(E.nodeValue)}}else{if(E.nodeType==1){q=E.hasChildNodes()}}if(q&&!m){u=E.firstChild;while(u){A._serializeNode(u);A.elementName=k;u=u.nextSibling}}if(!p){if(!m){y.writeFullEndElement()}else{y.writeEndElement()}}},_protect:function(j){var i=this;j.items=j.items||[];function h(l){return l.replace(/[\r\n\\]/g,function(m){if(m==="\n"){return"\\n"}else{if(m==="\\"){return"\\\\"}}return"\\r"})}function k(l){return l.replace(/\\[\\rn]/g,function(m){if(m==="\\n"){return"\n"}else{if(m==="\\\\"){return"\\"}}return"\r"})}f(j.patterns,function(l){j.content=k(h(j.content).replace(l.pattern,function(n,o,m,p){m=k(m);if(l.encode){m=i._encode(m)}j.items.push(m);return o+""+p}))});return j},_unprotect:function(i,j){i=i.replace(/\"))}if(a&&j.ListBox){if(a.Button||a.SplitButton){e+=b.createHTML("td",{"class":"mceToolbarEnd"},b.createHTML("span",null,""))}}if(b.stdMode){e+='
'+j.renderHTML()+""+j.renderHTML()+"